diff --git a/mitm-redirect.py b/mitm-redirect.py index aec05ef..cf79072 100644 --- a/mitm-redirect.py +++ b/mitm-redirect.py @@ -52,7 +52,9 @@ methods = [ 'GetMMOServerInfoWithZone', 'GetActiveChallenges', 'GetAchievementsByUserID', - 'PurchaseItems' + 'PurchaseItems', + 'AcceptMission', + 'GetUserMissionState' ] def routable(path): diff --git a/src/Controllers/Common/ContentController.cs b/src/Controllers/Common/ContentController.cs index c9c5bce..ac9eec0 100644 --- a/src/Controllers/Common/ContentController.cs +++ b/src/Controllers/Common/ContentController.cs @@ -458,44 +458,83 @@ public class ContentController : Controller { [Produces("application/xml")] [Route("V2/ContentWebService.asmx/GetUserUpcomingMissionState")] public IActionResult GetUserUpcomingMissionState([FromForm] string apiToken, [FromForm] string userId) { - Session? session = ctx.Sessions.FirstOrDefault(s => s.ApiToken == apiToken); - UserMissionStateResult result = new UserMissionStateResult(); + Viking? viking = ctx.Vikings.FirstOrDefault(x => x.Id == userId); + if (viking is null) + return Ok("error"); + + UserMissionStateResult result = new UserMissionStateResult { Missions = new List() }; + foreach (var mission in viking.MissionStates.Where(x => x.MissionStatus == MissionStatus.Upcoming)) + result.Missions.Add(missionService.GetMissionWithProgress(mission.MissionId, viking.Id)); - if (session is null) - return Ok(result); - - result.UserID = Guid.Parse(session.VikingId); - return Ok(result); // TODO: placeholder, returns no upcoming missions + result.UserID = Guid.Parse(viking.Id); + return Ok(result); } [HttpPost] [Produces("application/xml")] [Route("V2/ContentWebService.asmx/GetUserActiveMissionState")] public IActionResult GetUserActiveMissionState([FromForm] string apiToken, [FromForm] string userId) { - Session? session = ctx.Sessions.FirstOrDefault(s => s.ApiToken == apiToken); - if (session is null) + Viking? viking = ctx.Vikings.FirstOrDefault(x => x.Id == userId); + if (viking is null) return Ok("error"); + UserMissionStateResult result = new UserMissionStateResult { Missions = new List() }; - Mission tutorial = missionService.GetMissionWithProgress(999, userId); - - result.Missions.Add(tutorial); - - result.UserID = Guid.Parse(session.VikingId); - return Ok(result); // TODO: placeholder, returns the tutorial + foreach (var mission in viking.MissionStates.Where(x => x.MissionStatus == MissionStatus.Active)) + result.Missions.Add(missionService.GetMissionWithProgress(mission.MissionId, viking.Id)); + + result.UserID = Guid.Parse(viking.Id); + return Ok(result); } [HttpPost] [Produces("application/xml")] [Route("V2/ContentWebService.asmx/GetUserCompletedMissionState")] public IActionResult GetUserCompletedMissionState([FromForm] string apiToken, [FromForm] string userId) { - Session? session = ctx.Sessions.FirstOrDefault(s => s.ApiToken == apiToken); - UserMissionStateResult result = new UserMissionStateResult(); + Viking? viking = ctx.Vikings.FirstOrDefault(x => x.Id == userId); + if (viking is null) + return Ok("error"); - if (session is null) - return Ok(result); + UserMissionStateResult result = new UserMissionStateResult { Missions = new List() }; + foreach (var mission in viking.MissionStates.Where(x => x.MissionStatus == MissionStatus.Completed)) + result.Missions.Add(missionService.GetMissionWithProgress(mission.MissionId, viking.Id)); - result.UserID = Guid.Parse(session.VikingId); - return Ok(result); // TODO: placeholder, returns no completed missions + result.UserID = Guid.Parse(viking.Id); + return Ok(result); + } + + [HttpPost] + [Produces("application/xml")] + [Route("ContentWebService.asmx/AcceptMission")] + public IActionResult AcceptMission([FromForm] string userId, [FromForm] int missionId) { + Viking? viking = ctx.Vikings.FirstOrDefault(x => x.Id == userId); + if (viking is null) + return Ok(false); + + MissionState? missionState = viking.MissionStates.FirstOrDefault(x => x.MissionId == missionId); + if (missionState is null || missionState.MissionStatus != MissionStatus.Upcoming) + return Ok(false); + + missionState.MissionStatus = MissionStatus.Active; + ctx.SaveChanges(); + return Ok(true); + } + + [HttpPost] + [Produces("application/xml")] + [Route("V2/ContentWebService.asmx/GetUserMissionState")] + public IActionResult GetUserMissionState([FromForm] string userId, [FromForm] string filter) { + MissionRequestFilterV2 filterV2 = XmlUtil.DeserializeXml(filter); + Viking? viking = ctx.Vikings.FirstOrDefault(x => x.Id == userId); + if (viking is null) + return Ok("error"); + + UserMissionStateResult result = new UserMissionStateResult { Missions = new List() }; + foreach (var m in filterV2.MissionPair) + if (m.MissionID != null) + result.Missions.Add(missionService.GetMissionWithProgress((int)m.MissionID, viking.Id)); + + result.UserID = Guid.Parse(viking.Id); + return Ok(result); } [HttpPost] diff --git a/src/Controllers/Common/RegistrationController.cs b/src/Controllers/Common/RegistrationController.cs index 9f72455..e988462 100644 --- a/src/Controllers/Common/RegistrationController.cs +++ b/src/Controllers/Common/RegistrationController.cs @@ -12,10 +12,12 @@ public class RegistrationController : Controller { private readonly DBContext ctx; private ItemService itemService; + private MissionService missionService; - public RegistrationController(DBContext ctx, ItemService itemService) { + public RegistrationController(DBContext ctx, ItemService itemService, MissionService missionService) { this.ctx = ctx; this.itemService = itemService; + this.missionService = missionService; } [HttpPost] @@ -90,6 +92,9 @@ public class RegistrationController : Controller { User = user, Inventory = inv }; + + missionService.SetUpMissions(v); + ctx.Vikings.Add(v); ctx.SaveChanges(); diff --git a/src/Model/DBContext.cs b/src/Model/DBContext.cs index 14ffacf..f66b6f6 100644 --- a/src/Model/DBContext.cs +++ b/src/Model/DBContext.cs @@ -37,6 +37,9 @@ public class DBContext : DbContext { builder.Entity().HasMany(u => u.Sessions) .WithOne(e => e.Viking); + builder.Entity().HasMany(v => v.MissionStates) + .WithOne(e => e.Viking); + builder.Entity().HasOne(s => s.User) .WithMany(e => e.Vikings) .HasForeignKey(e => e.UserId); @@ -106,6 +109,10 @@ public class DBContext : DbContext { .HasOne(e => e.Inventory) .WithMany(e => e.InventoryItems) .HasForeignKey(e => e.InventoryId); + + builder.Entity().HasOne(m => m.Viking) + .WithMany(e => e.MissionStates) + .HasForeignKey(e => e.VikingId); } } diff --git a/src/Model/MissionState.cs b/src/Model/MissionState.cs new file mode 100644 index 0000000..517494f --- /dev/null +++ b/src/Model/MissionState.cs @@ -0,0 +1,20 @@ +using System.ComponentModel.DataAnnotations; + +namespace sodoff.Model; + +public class MissionState { + [Key] + public int Id { get; set; } + + public int MissionId { get; set; } + + public string VikingId { get; set; } = null!; + + public virtual Viking? Viking { get; set; } + + public MissionStatus MissionStatus { get; set; } +} + +public enum MissionStatus { + Upcoming,Active,Completed +} \ No newline at end of file diff --git a/src/Model/Viking.cs b/src/Model/Viking.cs index 6ccfebb..39e1b98 100644 --- a/src/Model/Viking.cs +++ b/src/Model/Viking.cs @@ -19,6 +19,7 @@ public class Viking { public virtual User User { get; set; } = null!; public virtual ICollection Dragons { get; set; } = null!; public virtual ICollection Images { get; set; } = null!; + public virtual ICollection MissionStates { get; set; } = null!; public virtual Dragon? SelectedDragon { get; set; } public int InventoryId { get; set; } diff --git a/src/Resources/defaultmissionlist.xml b/src/Resources/defaultmissionlist.xml new file mode 100644 index 0000000..bcd5efe --- /dev/null +++ b/src/Resources/defaultmissionlist.xml @@ -0,0 +1,761 @@ + + + + 999 + 1035 + 1036 + 1037 + 1046 + 1047 + 1048 + 1185 + 1186 + 1187 + 1188 + 1189 + 1191 + 1192 + 1193 + 1194 + 1195 + 1196 + 1197 + 1198 + 1199 + 1200 + 1201 + 1202 + 1203 + 1204 + 1205 + 1206 + 1207 + 1208 + 1209 + 1210 + 1211 + 1212 + 1213 + 1214 + 1215 + 1216 + 1217 + 1218 + 1219 + 1220 + 1221 + 1222 + 1223 + 1224 + 1225 + 1226 + 1227 + 1228 + 1229 + 1230 + 1231 + 1232 + 1233 + 1234 + 1235 + 1236 + 1237 + 1238 + 1239 + 1240 + 1241 + 1242 + 1243 + 1244 + 1245 + 1250 + 1251 + 1252 + 1253 + 1254 + 1255 + 1256 + 1257 + 1258 + 1259 + 1260 + 1261 + 1262 + 1263 + 1264 + 1265 + 1266 + 1267 + 1268 + 1269 + 1270 + 1271 + 1272 + 1273 + 1274 + 1275 + 1276 + 1277 + 1278 + 1279 + 1280 + 1281 + 1282 + 1283 + 1284 + 1285 + 1286 + 1287 + 1288 + 1289 + 1290 + 1291 + 1292 + 1293 + 1294 + 1295 + 1307 + 1308 + 1309 + 1310 + 1311 + 1312 + 1313 + 1314 + 1315 + 1316 + 1321 + 1322 + 1323 + 1324 + 1325 + 1326 + 1327 + 1328 + 1329 + 1330 + 1345 + 1346 + 1347 + 1348 + 1349 + 1350 + 1351 + 1352 + 1353 + 1354 + 1689 + 1690 + 1691 + 1692 + 1693 + 1694 + 1695 + 1696 + 1697 + 1698 + 1699 + 1700 + 1701 + 1702 + 1703 + 1704 + 1705 + 1706 + 1707 + 1708 + 1709 + 1710 + 1711 + 1712 + 1713 + 1714 + 1715 + 1716 + 1717 + 1718 + 1719 + 1720 + 1721 + 1722 + 1723 + 1724 + 1725 + 1726 + 1727 + 1728 + 1729 + 1730 + 2176 + 2287 + 2303 + 2304 + 2309 + 2392 + 2393 + 2394 + 2395 + 2396 + 2397 + 2398 + 2399 + 2400 + 2401 + 2402 + 2403 + 2404 + 2405 + 2406 + 2407 + 2421 + 2422 + 2424 + 2425 + 2426 + 2427 + 2428 + 2429 + 2430 + 2431 + 2432 + 2433 + 2434 + 2435 + 2436 + 2437 + 2438 + 2439 + 2457 + 2458 + 2510 + 2511 + 2512 + 2513 + 2514 + 2515 + 2516 + 2517 + 2518 + 2519 + 2520 + 2521 + 2562 + 2563 + 2564 + 2565 + 2566 + 2567 + 2568 + 2569 + 2570 + 2571 + 2572 + 2573 + 2578 + 2579 + 2580 + 2581 + 2582 + 2583 + 2584 + 2585 + 2586 + 2587 + 2588 + 2606 + 2607 + 2631 + 2632 + 2633 + 2634 + 2635 + 2636 + 2637 + 2638 + 2639 + 2640 + 2645 + 2646 + 2649 + 2650 + 2652 + 2653 + 2655 + 2656 + 2661 + 2662 + 2663 + 2664 + 2665 + 2666 + 2667 + 2668 + 2669 + 2670 + 2673 + 2674 + 2675 + 2676 + 2677 + 2678 + 2679 + 2680 + 2681 + 2682 + 2683 + 2684 + 2685 + 2686 + 2687 + 2786 + 2787 + 2790 + 2806 + 2807 + 2808 + 2809 + 2810 + 2811 + 2812 + 2813 + 2814 + 2815 + 2816 + 2817 + 2818 + 2819 + 2843 + 2844 + 2845 + 2878 + 2879 + 2894 + 2895 + 2931 + 2932 + 2946 + 2947 + 2972 + 2973 + 3022 + 3023 + 3036 + 3037 + 3038 + 3052 + 3053 + 3069 + 3071 + 3072 + 3073 + 3074 + 3075 + 3076 + 3077 + 3078 + 3079 + 3080 + 3099 + 3100 + 3113 + 3114 + 3115 + 3116 + 3117 + 3118 + 3119 + 3120 + 3121 + 3122 + 3123 + 3124 + 3127 + 3128 + 3129 + 3130 + 3131 + 3132 + 3133 + 3134 + 3135 + 3136 + 3148 + 3149 + + + 1003 + 1014 + 1015 + 1016 + 1017 + 1027 + 1028 + 1029 + 1031 + 1033 + 1038 + 1044 + 1053 + 1054 + 1055 + 1057 + 1058 + 1062 + 1067 + 1074 + 1085 + 1089 + 1090 + 1091 + 1093 + 1095 + 1096 + 1097 + 1099 + 1101 + 1102 + 1106 + 1108 + 1110 + 1111 + 1114 + 1120 + 1121 + 1128 + 1134 + 1140 + 1143 + 1144 + 1150 + 1153 + 1155 + 1159 + 1163 + 1164 + 1166 + 1167 + 1168 + 1169 + 1171 + 1173 + 1179 + 1247 + 1296 + 1304 + 1305 + 1317 + 1318 + 1331 + 1333 + 1335 + 1338 + 1343 + 1344 + 1357 + 1361 + 1362 + 1390 + 1508 + 1529 + 1530 + 1575 + 1579 + 1605 + 1606 + 1607 + 1608 + 1611 + 1612 + 1613 + 1614 + 1615 + 1617 + 1618 + 1619 + 1620 + 1622 + 1623 + 1624 + 1625 + 1626 + 1627 + 1628 + 1629 + 1630 + 1632 + 1633 + 1634 + 1636 + 1638 + 1640 + 1641 + 1642 + 1646 + 1648 + 1652 + 1655 + 1656 + 1657 + 1658 + 1660 + 1661 + 1663 + 1666 + 1667 + 1669 + 1671 + 1672 + 1673 + 1674 + 1675 + 1676 + 1678 + 1681 + 1683 + 1736 + 1749 + 1769 + 1771 + 1777 + 1781 + 1787 + 1788 + 1813 + 1815 + 1818 + 1822 + 1828 + 1961 + 1967 + 1969 + 1970 + 1971 + 1972 + 1973 + 1974 + 1978 + 2175 + 2178 + 2180 + 2182 + 2195 + 2196 + 2199 + 2206 + 2207 + 2208 + 2212 + 2213 + 2215 + 2217 + 2218 + 2219 + 2223 + 2225 + 2226 + 2228 + 2229 + 2232 + 2233 + 2235 + 2284 + 2288 + 2300 + 2302 + 2307 + 2308 + 2311 + 2314 + 2315 + 2318 + 2319 + 2320 + 2324 + 2328 + 2329 + 2330 + 2331 + 2332 + 2333 + 2335 + 2337 + 2338 + 2339 + 2344 + 2346 + 2347 + 2353 + 2354 + 2357 + 2363 + 2372 + 2389 + 2408 + 2415 + 2416 + 2423 + 2444 + 2459 + 2472 + 2474 + 2475 + 2476 + 2477 + 2478 + 2479 + 2481 + 2482 + 2483 + 2485 + 2486 + 2493 + 2494 + 2496 + 2498 + 2499 + 2500 + 2503 + 2506 + 2522 + 2526 + 2528 + 2529 + 2532 + 2533 + 2536 + 2538 + 2542 + 2548 + 2551 + 2554 + 2556 + 2557 + 2574 + 2589 + 2590 + 2591 + 2592 + 2593 + 2594 + 2596 + 2597 + 2598 + 2603 + 2604 + 2605 + 2608 + 2613 + 2614 + 2622 + 2626 + 2641 + 2643 + 2659 + 2671 + 2688 + 2689 + 2690 + 2691 + 2692 + 2693 + 2694 + 2695 + 2697 + 2699 + 2700 + 2705 + 2707 + 2708 + 2711 + 2714 + 2717 + 2718 + 2719 + 2723 + 2730 + 2731 + 2776 + 2781 + 2782 + 2783 + 2836 + 2837 + 2838 + 2839 + 2874 + 2875 + 2876 + 2884 + 2887 + 2889 + 2892 + 2893 + 2897 + 2898 + 2899 + 2937 + 2956 + 2957 + 2958 + 2959 + 2961 + 2962 + 2963 + 2966 + 2968 + 2969 + 2974 + 2983 + 2984 + 2985 + 2986 + 2988 + 2989 + 2990 + 2992 + 2993 + 2996 + 3013 + 3015 + 3018 + 3024 + 3025 + 3031 + 3032 + 3034 + 3035 + 3039 + 3041 + 3043 + 3054 + 3055 + 3056 + 3057 + 3067 + 3068 + 3081 + 3091 + 3093 + 3095 + 3101 + 3102 + 3103 + 3104 + 3108 + 3111 + 3112 + 3125 + 3126 + 3137 + 3141 + 3145 + 3150 + 3158 + 3167 + 3171 + 3172 + 3173 + 3174 + 3175 + + \ No newline at end of file diff --git a/src/Resources/missions.xml b/src/Resources/missions.xml index 559b9f5..3ad251c 100644 --- a/src/Resources/missions.xml +++ b/src/Resources/missions.xml @@ -1,481 +1,133310 @@ - + - - false - 999 - Quest 1 - 51 - 3 -

- <Data><Setup><Scene>HubFTUEDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpFTUE2020T15.unity3d/PfGrpFTUE2020T15</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>New Student</Text><ID>922059</ID></Title></Data> - false - 0 - - - 2 - False - false - - - 1 - False - false - - - all - true - 4 - 1 - - 1 - 999 - 5930 - 0 - - - 1 - 999 - 5931 - 0 - - - 1 - 999 - 5932 - 0 - - - 2 - 999 - 2880 - 0 - - - 2 - 999 - 2881 - 0 - - - 1 - 999 - 5935 - 0 - - - 1 - 999 - 5936 - 0 - - - 1 - 999 - 5937 - 0 - - - 1 - 999 - 5938 - 0 - - - 2 - 999 - 2882 - 0 - - - 1 - 999 - 5940 - 0 - - - 1 - 999 - 5941 - 0 - - - 1 - 999 - 5942 - 0 - - - 2 - 999 - 2883 - 0 - - - 1 - 999 - 5944 - 0 - - - 1 - 999 - 6619 - 0 - - - - 8 - 201320 - 0 - - false - 2880 - FTUE2020-04 - 51 - 3 -

999

- <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>{{Input}} on cage</Text><ID>939800</ID></Title></Data> - false - 0 - - - 2 - False - false - - - 1 - False - false - - - all - true - 4 - 1 - - 1 - 2880 - 5933 - 0 - - - - 8 - 0 - 0 - - 5933 - FTUE2020-04: Click cage - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Be careful. Even baby dragons can be dangerous when frightened. Step forward and {{input}} on the cage door to open it. After that, just trust your instincts!@@Hey, don't worry, you got this.</Text><ID>939805</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpFTUE2020T04CS.unity3d/PfGrpFTUE2020T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Type</Key><Value>DragonSelect</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFTUECage</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiFTUEDragonSelection.unity3d/PfUiFTUEDragonSelection</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the Dragon Cage</Text><ID>939804</ID></Title><Desc><Text>{{Input}} on the Dragon Cage</Text><ID>939804</ID></Desc><AutoComplete><Pair><Key>RaisedPetStage</Key><Value>BABY</Value></Pair></AutoComplete></Data> - 0 - - - - false - 2881 - FTUE2020-05 - 51 - 3 -

999

- <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Look for a way out of the cave</Text><ID>939801</ID></Title></Data> - false - 0 - - - 2 - False - false - - - 1 - False - false - - - all - true - 4 - 1 - - 1 - 2881 - 5934 - 0 - - - - 8 - 206555 - 0 - - 5934 - FTUE2020-05: Look for a way out - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoa, that was unexpected. Who would have thought you two would bond so quickly?@@You’re a natural at this! Well, mission accomplished!@@Now, what do you say we find a way out of here?</Text><ID>939807</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This must be the heaviest part of the cave-in. With all these boulders piled up, this might be a dead end for us.@@{{dragon name}} is only a Tiny Tooth, so their dragon fire isn't quite enough to shatter that rock. But they are very close, and we can help them to grow.</Text><ID>939808</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveIn</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for a way out of the Cave</Text><ID>939801</ID></Title><Desc><Text>Look for a way out of the Cave</Text><ID>939801</ID></Desc></Data> - 0 - - - 1 -

6

- - 1 - 8399 - 10996 - 206555 - true - 1 - 1 - - 0 - - 0 - 0 -
-
- - false - 2882 - FTUE2020-10 - 51 - 3 -

999

- <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Light fire</Text><ID>939802</ID></Title></Data> - false - 0 - - - 2 - False - false - - - 1 - False - false - - - all - true - 4 - 1 - - 1 - 2882 - 5939 - 0 - - - - 8 - 206242 - 0 - - 5939 - FTUE2020-10: Light fire - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There’s a good spot for a signal fire. Would you ask {{dragon name}} to shoot it?</Text><ID>939810</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That’s not going to be enough; the fire is just too small...</Text><ID>939811</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FireSpot</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonLitFirePit</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Fire Pit to Light a Signal Fire</Text><ID>942392</ID></Title><Desc><Text>{{Input}} on the Fire Pit to Light a Signal Fire</Text><ID>942392</ID></Desc></Data> - 0 - -
- - false - 2883 - FTUE2020-14 - 51 - 3 -

999

- <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Follow Hiccup</Text><ID>939803</ID></Title></Data> - false - 0 - - - 2 - False - false - - - 1 - False - false - - - all - true - 4 - 1 - - 1 - 2883 - 5943 - 0 - - - - 8 - 207960 - 0 - - 5943 - FTUE2020-14: Follow Hiccup - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWToothlessAlphaHiccupRiderPortal</Asset><Location>PfMarker_HiccupAndToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that you've got the hang of this, follow me and Toothless! Come on, I want to show you something cool!</Text><ID>939813</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_LoadSchool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Hiccup and Toothless</Text><ID>942393</ID></Title><Desc><Text>Follow Hiccup and Toothless</Text><ID>942393</ID></Desc></Data> - 0 - - - 1 -

6

- - 1 - 10897 - 20882 - 207960 - true - 1 - 1 - - 0 - - 0 - 0 -
-
- - 5930 - FTUE2020-01: Talk to Hiccup - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, are you all right, {{Name}}? That cave collapse was no joke. Give me a hand, will you? Use the movement controls to walk here and {{input}} on me.</Text><ID>939815</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm glad you're okay. I guess our investigation about potential Dragon Hunters lurking in these caves paid off, it seems they had a camp right under our feet this entire time.</Text><ID>939816</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Walk forward and {{input}} on Hiccup</Text><ID>929442</ID></Title></Data> - 0 - - - 5931 - FTUE2020-02: Find axe - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’d like to meet up with Toothless again, but there are a few cages here that might have dragons in them.@@We can’t just leave them. I’ll start opening this other one, do you think you could handle the one on your right?@@That lock looks rusted, though... Maybe there’s an axe somewhere around here...</Text><ID>939818</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWAxe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Axe in the Cave</Text><ID>939817</ID></Title><Desc><Text>Find the Axe in the Cave</Text><ID>939817</ID></Desc></Data> - 0 - - - 5932 - FTUE2020-03: Chop padlock - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect! That axe looks strong enough. I'm sure it can chop the padlock off the dragon cage without a problem!</Text><ID>939820</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right, that did the trick!</Text><ID>939821</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>ChoppableCage</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonCageChop</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the Padlock on the Dragon Cage</Text><ID>939819</ID></Title><Desc><Text>Chop the Padlock on the Dragon Cage</Text><ID>939819</ID></Desc></Data> - 0 - - - 5935 - FTUE2020-06: Age Up - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupCaveIn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This will allow us to take a dragon straight to Broad Wing Stage! I'll show you how.</Text><ID>939823</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>AgeUp</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Age Up {{dragon name}}</Text><ID>942394</ID></Title><Desc><Text>Age Up {{dragon name}}</Text><ID>942394</ID></Desc><AutoComplete><Pair><Key>RaisedPetStage</Key><Value>ADULT</Value></Pair></AutoComplete></Data> - 0 - - - 5936 - FTUE2020-07: Shoot - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupCaveIn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right, let's try this now! Look for a weak spot in the rocks, then have {{dragon name}} shoot some fireballs!@@{{Input}} on the cave-in and select the [c][3eebff]Fire[/c][ffffff] button.</Text><ID>939825</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfCaveInTarget</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfCaveInTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Cave-In</Text><ID>942395</ID></Title><Desc><Text>{{Input}} on the Cave-In</Text><ID>942395</ID></Desc></Data> - 0 - - - 5937 - FTUE2020-08: Collect Box - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupCaveIn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That was perfect!</Text><ID>939828</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait... What's that? Is that a chest?</Text><ID>939829</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A box of dragon eggs...@@Those Dragon Hunters are getting bolder than we expected.</Text><ID>941113</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWOpenArcticChest</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOpenArcticChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the Chest</Text><ID>939827</ID></Title><Desc><Text>Pick up the Chest</Text><ID>939827</ID></Desc></Data> - 0 - - - 5938 - FTUE2020-09: Exit cave - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupChest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, one problem at a time. {{Name}}, can you follow the path of the cave and figure out a way to set up a signal? @@My friends should be nearby, they'll be able to help us out!</Text><ID>939831</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveExit</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Leave the Cave</Text><ID>939830</ID></Title><Desc><Text>Leave the Cave</Text><ID>939830</ID></Desc></Data> - 0 - - - 5940 - FTUE2020-11: Collect Leaves - <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ll get some more wood stacked; can you grab some green leaves to help make this fire more smokey?</Text><ID>939833</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpFTUE2020T11CS.unity3d/PfGrpFTUE2020T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There you are! Glad to see you're safe. @@Oh? I don’t think we’ve met, have we?@@{{Name}}? It's great to meet you, I’m Astrid. Seems that Hiccup's gotten himself in over his head again, huh? @@He's lucky he has good people like you around to help him out. And that’s one incredible dragon you’ve found, wow!</Text><ID>941114</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectFTUELeaf</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect Green Leaves</Text><ID>942396</ID></Title><Desc><Text>Collect Green Leaves</Text><ID>942396</ID></Desc></Data> - 0 - - - 5941 - FTUE2020-12: Mount - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}} bonded with {{dragon name}} right away, you should’ve seen it, Astrid. I bet they’ll be flying together in no time. Speaking of which...@@{{Name}} let’s do a quick flying lesson. I’ll show you the ropes!@@First, {{input}} on the [c][3eebff]Mount[/c][ffffff] button to climb aboard your dragon.</Text><ID>939835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount {{dragon name}}</Text><ID>939834</ID></Title><Desc><Text>Mount {{dragon name}}</Text><ID>939834</ID></Desc><AutoComplete><Pair><Key>Mounted</Key><Value>true</Value></Pair></AutoComplete></Data> - 0 - - - 5942 - FTUE2020-13: Fly through rings - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Alright! {{dragon name}} is ready to go. Now, you just have to learn how to fly! Why don't you get used to the controls and soar through these rings?@@{{Input}} on the [c][3eebff]Jump[/c][ffffff] button [c][3eebff]twice[/c][ffffff] to get up into the air and we can go from there.</Text><ID>939837</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're a natural!</Text><ID>905008</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWToothlessAlphaGuide</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRing</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Fly through the Rings</Text><ID>938870</ID></Title><Desc><Text>Fly through the Rings</Text><ID>938870</ID></Desc></Data> - 0 - - - 5944 - FTUE2020-15: Deliver Headmaster - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Welcome to the School of Dragons! I have a feeling you'll fit right in.@@Can you give the box of dragon eggs that you found to the Headmaster of the School? You can't miss him – he's the stout one with all the hair!</Text><ID>939840</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpFTUE2020T14CS.unity3d/PfGrpFTUE2020T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>You come highly recommended from the Chieftain of Berk himself. Welcome, {{Name}}. So, are you ready to learn how to become the Ultimate Dragon Trainer?</Text><ID>939841</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Deliver the Dragon Eggs to the Headmaster</Text><ID>942397</ID></Title><Desc><Text>Deliver the Dragon Eggs to the Headmaster</Text><ID>942397</ID></Desc></Data> - 0 - - - 6619 - FTUE2020-16: Explain Branch Quest - <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Now {{Name}}, you can learn about the many things we have to offer here at the School through our [c][3eebff]Branch Quests[/c][ffffff]</Text><ID>941799</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Feel free to also explore the campus, you might even encounter other students. @@We are happy to have you here with us!</Text><ID>941800</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>CompleteTutorial</Value></Pair><Pair><Key>ItemName</Key><Value>BranchUiTutorial</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check out the Branch Quests</Text><ID>941798</ID></Title><Desc><Text>Check out the Branch Quests</Text><ID>941798</ID></Desc></Data> - 0 - - - 5 -

1

- - 1 - 3 - 0 - 201320 - true - 5 - 5 - - 0 - - 0 - 0 -
- - 100 -

2

- - 1 - 23 - 0 - 201320 - true - 100 - 100 - - 0 - - 0 - 0 -
- - 50 -

8

- - 1 - 609 - 0 - 201320 - true - 50 - 50 - - 0 - - 0 - 0 -
- - 50 -

12

- - 1 - 913 - 0 - 201320 - true - 50 - 50 - - 0 - - 0 - 0 -
-
-
\ No newline at end of file + + 1689 + New Farming 127 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1689 + 1707 + 0 + + + + 1 + 202933 + 0 + + 1707 + 12 Turtle Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turtle Eggs</Text><ID>926418</ID></Title><Desc><Text>Bucket is going through a turtle egg sandwich phase.</Text><ID>926419</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202933 + true + 96 + 96 + + 0 + + + + 368 +

2

+ 0 + + 1 + 2133 + 202933 + true + 368 + 368 + + 0 + +
+ false +
+ + 1003 + Quest_Lab #3 + 5 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Home Heating</Text><ID>920542</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1017 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1003 + 245 + 0 + + + 2 + 1003 + 1004 + 0 + + + 1 + 1003 + 250 + 0 + + + 2 + 1003 + 1009 + 0 + + + 1 + 1003 + 255 + 0 + + + + 2 + 201330 + 0 + + 1004 + Quest_Lab_Research #3.2 + 5 +

1003

+ <Data><Offer><Type>Popup</Type><ID>920540</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You want to know which rock can hold the most heat? Sounds like a fun challenge! Check your Field Guide for info on energy, density, and thermal conductivity.@@ We should start by finding several types of rocks. You'll find them at the Wilderness. Find gypsum, marble, limestone and lava rock and bring them back to me at The Lab.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collecting Rocks</Text><ID>920539</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1004 + 246 + 0 + + + 1 + 1004 + 247 + 0 + + + 1 + 1004 + 248 + 0 + + + 1 + 1004 + 249 + 0 + + + + 2 + 0 + 0 + + 246 + Task 3.2.1 Collect gypsum + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQExp3T03_2_1.unity3d/PfGrpQExp3T03_2_1</Asset><Recursive>true</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Gypsum is a sedimentary rock. It's pretty flexible, but it will break if you bend it too much.</Text><ID>920885</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockGypsum</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect gypsum</Text><ID>920883</ID></Title><Desc><Text>Find gypsum in the Wilderness.</Text><ID>936677</ID></Desc></Data> + 0 + false + + + 247 + Task 3.2.2 Collect marble + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQExp3T03_2_2.unity3d/PfGrpQExp3T03_2_2</Asset><Recursive>true</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Marble is a metamorphic rock used for keeping bread warm at dinner time. </Text><ID>920888</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockMarble</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect marble</Text><ID>920886</ID></Title><Desc><Text>Find marble in the Wilderness.</Text><ID>936678</ID></Desc></Data> + 0 + false + + + 248 + Task 3.2.3 Collect limestone + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQExp3T03_2_3.unity3d/PfGrpQExp3T03_2_3</Asset><Recursive>true</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Limestone is a sedimentary stone made from shells of billions of tiny sea creatures. Sometimes it's used as chalk.</Text><ID>920891</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockLimestone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect limestone</Text><ID>920889</ID></Title><Desc><Text>Find limestone in the Wilderness.</Text><ID>936679</ID></Desc></Data> + 0 + false + + + 249 + Task 3.2.4 Collect lava rock + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQExp3T03_2_4.unity3d/PfGrpQExp3T03_2_4</Asset><Recursive>true</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You found a lava rock! Look at all the holes. It's an igneous rock that's formed when lava from a volcano bubbles and cools. </Text><ID>920894</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockLava</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect lava rock</Text><ID>920892</ID></Title><Desc><Text>Find pumice in the Wilderness.</Text><ID>936680</ID></Desc></Data> + 0 + false + + false + + + 1009 + Quest_Lab_Experiment #3.3 + 5 +

1003

+ <Data><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1009 + 251 + 0 + + + 1 + 1009 + 252 + 0 + + + 1 + 1009 + 253 + 0 + + + 1 + 1009 + 254 + 0 + + + + 2 + 0 + 0 + + 251 + Task 3.3.1 Heat up the gypsum + <Data><Type>Action</Type><Title><Text>Heat up the gypsum</Text><ID>904083</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>HeatGypsum</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 252 + Task 3.3.2 Heat up the marble + <Data><Type>Action</Type><Title><Text>Heat up the marble</Text><ID>904085</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>HeatMarble</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 253 + Task 3.3.3 Heat up the limestone + <Data><Type>Action</Type><Title><Text>Heat up the limestone</Text><ID>904087</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>HeatLimestone</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 254 + Task 3.3.4 Heat up the lava + <Data><Type>Action</Type><Title><Text>Heat up the lava</Text><ID>904089</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>HeatLava</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + false +
+ + 245 + Task 3.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><ID>920897</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>My sheep have to stand out there in the cold wind all night. I feel really sorry for them. I want to bring them inside my house and keep them warm! I saw Toothless heat up a rock with dragon fire and sleep on it.@@ I can't breath fire, but I bet I can find some rocks and heat them up. Can you talk to Heather the Alchemist and find the perfect rock to use? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920898</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey, student! You want to use my lab to test some theories? That's great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather</Text><ID>920895</ID></Title><Desc><Text>Meet Heather by The Lab.</Text><ID>920896</ID></Desc></Data> + 0 + false + + + 250 + Task 3.2.5 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>920901</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now you're ready to come back to The Lab. Bring the materials you collected, and we'll use the information to make a hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920902</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Let's go into The Lab and do our experiment!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis03.unity3d/PfUiHypothesis03</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Speak to the Alchemist and answer the question.</Text><ID>920900</ID></Desc></Data> + 0 + false + + + 255 + Task 3.4 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Based on your results your hypothesis was {{result}}. The marble radiated the most heat and held the heat the longest. I bet Bucket will be really happy! Go tell him now.</Text><ID>920905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Marble, huh? I think I know where to mine some. Thanks, friend. You're a great Viking.</Text><ID>920906</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Conclusion</Key><Value>Your hypothesis was:@@ [c][3eebff]{{hypothesis}}[/c][ffffff]@@ Looking at your results you can see that you proved your hypothesis to be [c][3eebff]{{result}}.[/c][ffffff]</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket at the Lookout</Text><ID>920903</ID></Title><Desc><Text>Return to Bucket.</Text><ID>929763</ID></Desc></Data> + 0 + false + + + 20 +

2

+ 0 + + 1 + 20 + 201330 + true + 20 + 20 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 201330 + true + 200 + 200 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 201330 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201330 + true + 200 + 200 + + 0 + +
+ false +
+ + 1014 + Quest 8 + 6 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_QBaby8T08_1_NPCGobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_BucketPaints</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Wilderness Training</Text><ID>920432</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1014 + 269 + 0 + + + 1 + 1014 + 266 + 0 + + + 1 + 1014 + 267 + 0 + + + 1 + 1014 + 285 + 0 + + + 1 + 1014 + 286 + 0 + + + 1 + 1014 + 287 + 0 + + + 1 + 1014 + 3452 + 0 + + + 1 + 1014 + 268 + 0 + + + 1 + 1014 + 367 + 0 + + + + 3 + 201328 + 204809 + + 266 + Task 8.3 Get 6 logs from the small trees + <Data><Type>Collect</Type><Title><Text>Get 6 logs from the small trees</Text><ID>904467</ID></Title><Desc><Text>Find the small trees and {{input}} on the axe. Collect 6 pieces of wood in the Wilderness.</Text><ID>904468</ID></Desc><Objective><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904469</ID><NPC>PfDWGobber</NPC><Text>It's time to put your back into it! You can use your axe to cut down small trees and turn them into logs. You'll need six logs to make your hut.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWGobber</NPC><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset></Offer><End><Type>Popup</Type><ID>904470</ID><NPC>PfDWGobber</NPC><Text>Great form!</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWGobber</NPC><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset></End></Data> + 0 + false + + + 267 + Task 8.4 Find 5 stones around the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQBaby8T08_4.unity3d/PfGrpQBaby8T08_4</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>921790</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Now go find five stones in the area and bring them to me. They need to be a specific size and shape! You'll use them for your shelter.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921791</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Took your time on that one! Well done, though.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBuildingStones</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 5 stones around the Wilderness</Text><ID>921788</ID></Title><Desc><Text>Collect five stones in the Wilderness.</Text><ID>921789</ID></Desc></Data> + 0 + false + + + 268 + Task 10.2 Light the fire pit by Gobber in camp + <Data><Offer><Type>Popup</Type><ID>921794</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>{{dragon name}} is ready to help out, I bet! Dragons are pretty good at lighting fires. {{Input}} on this fire pit and get him to start the campfire. You might need to get close so your baby dragon can breathe fire!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921795</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Even small dragons like yours can make a beautiful flame! Well done!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonLitFirePit_Wilderness01_02</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonLitFirePit_Wilderness01_02</Value></Pair></Objective><Type>Action</Type><Title><Text>Light the fire pit by Gobber in camp</Text><ID>921792</ID></Title><Desc><Text>{{Input}} on the fire pit at camp and breathe fire with your dragon in the Wilderness.</Text><ID>921793</ID></Desc></Data> + 0 + false + + + 269 + Task 8.1 Meet Gobber in the Wilderness + <Data><Type>Meet</Type><Title><Text>Meet Gobber in the Wilderness </Text><ID>904479</ID></Title><Desc><Text>Meet Gobber in the Wilderness. The entrance is in the northwest of the school, by the lake.</Text><ID>904480</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904481</ID><NPC>PfDWHeadmaster</NPC><Text>Are you ready for your next lesson, {{Name}}? You'll learn how to live out in the wild with just you and your dragon, or as I like to call it, "lesson: no toilet paper!" @@ The first step is to go find Gobber in the Wilderness. There’s a hidden pathway here at the school. Good luck!</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DOQuest8.unity3d/DlgHeyralQ8T1Offer</Asset></Offer><End><Type>Popup</Type><ID>904482</ID><NPC>PfDWGobber</NPC><Text>Welcome to the [c][3eebff]Wilderness![/c][ffffff] It's time to test your survival skills. I hope you're ready for a challenge!</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWGobber</NPC><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset></End></Data> + 0 + false + + + 285 + Task 9.1 Find the fishing spot + <Data><Type>Visit</Type><Title><Text>Find the fishing spot</Text><ID>904483</ID></Title><Desc><Text>Find the fishing spot in the Wilderness.</Text><ID>904484</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Wilderness_WaterArea</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Wilderness_WaterArea</Location></Setup><Offer><Type>Popup</Type><ID>904485</ID><NPC>PfDWGobber</NPC><Text>To survive in the wild, you need to find a source of water and food. There's a good fishing spot not far from here that will give you both. Mulch is already there. Get over there!</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWGobber</NPC><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset></Offer><End><Type>Popup</Type><ID>904486</ID><NPC>PfDWGobber</NPC><Text>You found it!</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWGobber</NPC><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos04</Asset></End></Data> + 0 + false + + + 286 + Task 9.2 Catch one brown trout at the fishing spot + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I love eating fresh fish. Catch one brown trout for dinner!</Text><ID>904489</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>My stomach's already rumbling!</Text><ID>904490</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Wilderness_WaterArea</Value></Pair><Pair><Key>Name</Key><Value>PfFishBrownTroutDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch one brown trout at the fishing spot</Text><ID>904487</ID></Title><Desc><Text>Catch one brown trout fish in the fishing spot in the Wilderness.</Text><ID>932718</ID></Desc></Data> + 0 + false + + + 287 + Task 10.1 Find a rune stone + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQBaby10T10_1.unity3d/PfGrpQBaby10T10_1</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You're going to need to be as sharp as a sword to survive in the wilderness. This next lesson will test your eyesight. @@ Rune Stones are our key to the past and our ancestors wrote on them to keep a record. They're hidden all around this area. Find one.</Text><ID>904493</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You got one! Well done! </Text><ID>904494</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find a rune stone</Text><ID>904491</ID></Title><Desc><Text>Find a Rune Stone in the Wilderness.</Text><ID>937060</ID></Desc></Data> + 0 + false + + + 367 + Task 10.3 Talk to Gobber in camp + <Data><Offer><Type>Popup</Type><ID>921501</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Excellent job, {{greeting}}. Please come back to me!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921502</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You've breezed through this lesson with flying colors, {{Name}}. You're on your way to becoming an ultimate dragon trainer!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos05</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in camp</Text><ID>921499</ID></Title><Desc><Text>Return to Gobber at the camp in the Wilderness.</Text><ID>921500</ID></Desc></Data> + 0 + false + + + 3452 + Task 10.1-2 Give the stuff to Gobber + <Data><Offer><Type>Popup</Type><ID>929547</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Okay! Great job, Viking. Come back to me and give me the things you've collected. I'll be able to set up a nice little camp here with the wood and the stones. And I'm looking forward to eating smoked trout!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>904656</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Good job!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGoodJob</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7970</Value></Pair><Pair><Key>ItemDescription</Key><Value>Building Stone</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7139</Value></Pair><Pair><Key>ItemDescription</Key><Value>Brown Trout</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Gobber and give him the items</Text><ID>929545</ID></Title><Desc><Text>Return to Gobber and give him everything you have gathered.</Text><ID>929546</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 201328 + true + 100 + 100 + + 0 + + + + 25 +

1

+ 0 + + 1 + 32 + 201328 + true + 25 + 25 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 201328 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201328 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 7966 + + 1 + 5413 + 204809 + true + 1 + 1 + + 0 + +
+ false +
+ + 1015 + Quest_Edu #1 + 11 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Bodies of Water</Text><ID>13642</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1171 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1015 + 270 + 0 + + + 1 + 1015 + 271 + 0 + + + 1 + 1015 + 272 + 0 + + + 1 + 1015 + 273 + 0 + + + + 1 + 201117 + 0 + + 270 + Task 1.1 Visit the lake at School + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dragon training can be really hectic, so the sound of running water relaxes me. @@ I love how the light hits the water. I think it's the most beautiful thing at the School of Dragons. You should go check out all the bodies of water here. Start by finding the signal by the lake.</Text><ID>904513</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is the main fishing lake at the school. Rivers feed into it, and that's why there are so many different types of fish here.</Text><ID>904514</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridSchoolofDragons</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_School_WaterArea</Value></Pair><Pair><Key>Range</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the lake at school</Text><ID>904511</ID></Title><Desc><Text>Visit the lake in the school.</Text><ID>936358</ID></Desc></Data> + 0 + false + + + 271 + Task 1.2 Find the river + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_School_River</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>920664</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Find where the river flows out of the lake. It's a really interesting place!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920665</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great! You found it! See how the freshwater drains into the ocean? All the bodies of water work together. Isn't it wonderful?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_School_River</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the river that feeds into the ocean</Text><ID>920662</ID></Title><Desc><Text>Find where the river drains from the lake.</Text><ID>920663</ID></Desc></Data> + 0 + false + + + 272 + Task 1.3 Find the waterfall + <Data><Type>Visit</Type><Title><Text>Find the waterfall that drains into the ocean</Text><ID>904519</ID></Title><Desc><Text>Find the waterfall that runs into the ocean.</Text><ID>904520</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_School_Ocean</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair></Objective><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_School_Ocean</Location></Setup><Offer><Type>Popup</Type><ID>904521</ID><NPC>PfDWAstrid</NPC><Text>Walk down the wooden stairs to the signal and check out the waterfall at the ocean.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWAstrid</NPC><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset></Offer><End><Type>Popup</Type><ID>904522</ID><NPC>PfDWAstrid</NPC><Text>The ocean is always salty, and there are so many different types of animals that live in it!</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWAstrid</NPC><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset></End></Data> + 0 + false + + + 273 + Task 1.4 Meet Astrid + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We should have swimming races one of these days! For now, though, just come back and talk to me.</Text><ID>904525</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're going to be a well rounded student in no time. Remember, a good Viking needs to use their brain just as much as their brawn.</Text><ID>904526</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Astrid near the store in school</Text><ID>904523</ID></Title><Desc><Text>Meet Astrid near the store in school.</Text><ID>922760</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201117 + true + 10 + 10 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201117 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201117 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201117 + true + 200 + 200 + + 0 + +
+ false +
+ + 1016 + Quest_Story #4 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>All the Right Moves</Text><ID>920434</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1054 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1016 + 413 + 0 + + + 1 + 1016 + 414 + 0 + + + 1 + 1016 + 415 + 0 + + + 1 + 1016 + 416 + 0 + + + 1 + 1016 + 417 + 0 + + + + 1 + 201114 + 0 + + 413 + Task 4.1 Play Fireball Frenzy + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey there! Now that you and {{dragon name}} can glide, do you think you can keep up with me? Start with Fireball Frenzy. Stormfly and I are pretty good at these courses. Let's see how you compare.</Text><ID>904529</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You and {{dragon name}} are getting really close to my scores! Wow!</Text><ID>904530</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Fireball Frenzy</Text><ID>922490</ID></Title><Desc><Text>Complete a course in Fireball Frenzy.</Text><ID>922810</ID></Desc></Data> + 0 + false + + + 414 + Task 4.2 Play a level in Flight Club + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay, hot stuff! Show me your skills in Flight Club. Head over to the training tower and complete a lesson.</Text><ID>904533</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow, how are you doing this well? I wonder if there's something fishy going on, and it's not just your dragon's breath.</Text><ID>904534</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolPortal</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair></Objective><Type>Game</Type><Title><Text>Play a level in Flight Club</Text><ID>904531</ID></Title><Desc><Text>Complete a Flight Club lesson.</Text><ID>922811</ID></Desc></Data> + 0 + false + + + 415 + Task 4.3 Visit Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There has to be something you're bad at. Let's see how you and your dragon do at hoarding sheep. Meet me at the Lookout, and the games will begin!</Text><ID>904537</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm glad you came! I would've hated it if you chickened out! </Text><ID>904538</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Lookout</Text><ID>930712</ID></Title><Desc><Text>Go to the Lookout.</Text><ID>930713</ID></Desc></Data> + 0 + false + + + 416 + Task 4.4 Collect sheep in Berk + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQTeenAst04T04.unity3d/PfGrpQTeenAst04T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We've released sheep all over here. Stormfly and I timed a run earlier, and I bet you can't grab them faster than us. Ready, set, go!</Text><ID>904541</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Really? You caught ten already? I have to admit, you're pretty amazing.</Text><ID>904542</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWildernessWhiteSheep</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab all the sheep!</Text><ID>904539</ID></Title><Desc><Text>Grab all the sheep.</Text><ID>936398</ID></Desc></Data> + 0 + false + + + 417 + Task 4.5 Take the sheep to Stoick in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're going to look silly walking around with all those sheep. Please take them to Phlegma, the Botanist!</Text><ID>904545</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I see Astrid has been running you through the gauntlet! Good, good. She's always been a bit competitive, and the fact that you performed so well will drive her to new heights. Great job.</Text><ID>904546</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8031</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Sheep</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>8031</ItemID><Quantity>10</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Take the sheep to Phlegma, the Botanist</Text><ID>904543</ID></Title><Desc><Text>Bring the sheep to Phlegma at the Lookout.</Text><ID>936399</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201114 + true + 10 + 10 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201114 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201114 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201114 + true + 50 + 50 + + 0 + +
+ false +
+ + 1017 + Quest_Lab #2 + 3 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Chocolate in a Bottle</Text><ID>920575</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1038 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1017 + 274 + 0 + + + 2 + 1017 + 1018 + 0 + + + 1 + 1017 + 279 + 0 + + + 2 + 1017 + 1024 + 0 + + + 1 + 1017 + 284 + 0 + + + + 2 + 201332 + 0 + + 1018 + Quest_Lab_Research #2.2 + 3 +

1017

+ <Data><Offer><Type>Popup</Type><ID>920573</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Chocolate seems to get Gobber into a lot of trouble! We'll figure out how to get it out. Check your Field Guide for more information about how things change from liquids to solids. @@ We'll need to find some chocolate to run some tests. Ask Fishlegs if he has any spare!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Material</Text><ID>920593</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1018 + 1019 + 0 + + + 2 + 1018 + 1020 + 0 + + + + 2 + 0 + 0 + + 1019 + Quest_Lab #2.2.1 + 3 +

1018

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward /><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1019 + 275 + 0 + + + + 2 + 201087 + 0 + + 275 + Task 2.2.1 Collect chocolate from Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! I love eating my chocolate after Meatlug breathes fire on it. It melts all over the place! @@ Here, you can have my last piece of chocolate. You should ask the kids around school for more.</Text><ID>904105</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect chocolate from Fishlegs</Text><ID>904103</ID></Title><Desc><Text>Get chocolate from Fishlegs at the Lookout.</Text><ID>922786</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7969 + + 1 + 720 + 201087 + true + 1 + 1 + + 0 + +
+ false +
+ + 1020 + Quest_Lab #2.2.2 + 3 +

1018

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 2 + 1020 + 1021 + 0 + + + 2 + 1020 + 1022 + 0 + + + 2 + 1020 + 1023 + 0 + + + + 2 + 0 + 0 + + 1021 + Quest_Lab #2.2.2.1 + 3 +

1020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1021 + 276 + 0 + + + + 2 + 201088 + 0 + + 276 + Task 2.2.2.1 Collect Chocolate from Wartihog + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>You need chocolate for Gobber? Sure! Don't eat it cold or you'll hurt your teeth. It's rock solid!</Text><ID>904108</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidA</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect chocolate from Wartihog at the Lookout</Text><ID>904106</ID></Title><Desc><Text>Get chocolate from Wartihog at the Lookout.</Text><ID>922926</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7969 + + 1 + 721 + 201088 + true + 1 + 1 + + 0 + +
+ false +
+ + 1022 + Quest_Lab #2.2.2.2 + 3 +

1020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1022 + 277 + 0 + + + + 2 + 201089 + 0 + + 277 + Task 2.2.2.2 Collect Chocolate from Clueless + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Huh? Chocolate? I think I have some around somewhere. You can have it. It's a little sticky, since it’s been in my warm pocket all day.</Text><ID>904111</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect chocolate from Clueless at the Lookout</Text><ID>904109</ID></Title><Desc><Text>Get chocolate from Clueless at the Lookout.</Text><ID>922927</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7969 + + 1 + 722 + 201089 + true + 1 + 1 + + 0 + +
+ false +
+ + 1023 + Quest_Lab #2.2.2.3 + 3 +

1020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1023 + 278 + 0 + + + + 2 + 201090 + 0 + + 278 + Task 2.2.2.3 Collect Chocolate from Speedifist + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidC</NPC><Text>You can have this chunk. Chocolate tastes so good! It just melts in your mouth.</Text><ID>904114</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidC</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect chocolate from Speedifist at the Training Grounds</Text><ID>904112</ID></Title><Desc><Text>Get chocolate from Speedifist at the Training Grounds.</Text><ID>922928</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7969 + + 1 + 723 + 201090 + true + 1 + 1 + + 0 + +
+ false +
+ false +
+ false + + + 1024 + Quest_Lab_Experiment #2.3 + 3 +

1017

+ <Data><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1024 + 280 + 0 + + + 1 + 1024 + 281 + 0 + + + 1 + 1024 + 282 + 0 + + + 1 + 1024 + 283 + 0 + + + + 2 + 0 + 0 + + 280 + Task 2.3.1 Heat up the chocolate + <Data><Type>Action</Type><Title><Text>Heat up the chocolate</Text><ID>904115</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>HeatChocolate</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 281 + Task 2.3.2 Cool the chocolate + <Data><Type>Action</Type><Title><Text>Cool the chocolate</Text><ID>904117</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>CoolChocolate</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 282 + Task 2.3.3 Add water + <Data><Type>Action</Type><Title><Text>Add water</Text><ID>904119</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>WaterChocolate</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 283 + Task 2.3.4 Mix water and chocolate + <Data><Type>Action</Type><Title><Text>Mix water and chocolate</Text><ID>904121</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>MixWaterChocolate</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + false +
+ + 274 + Task 2.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><ID>920948</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Help! My chocolate is stuck in the bottle. I poured it in these bottles a few months back, and now I can't seem to get them back out. @@ Maybe Heather can help. She's got her head on straight. Can you talk to her?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920949</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hi! What can I do for you?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather by The Lab</Text><ID>920946</ID></Title><Desc><Text>Meet Heather by The Lab at the School of Dragons.</Text><ID>920947</ID></Desc></Data> + 0 + false + + + 279 + Task 2.2.5 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>920952</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Bring the materials you've collected to The Lab. We'll use the information you gathered to make a hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920953</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Nice! Okay, let's get on with the experiment! Enter The Lab and {{input}} on the apparatus to get started.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis02.unity3d/PfUiHypothesis02</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Speak to Heather and answer the question.</Text><ID>920951</ID></Desc></Data> + 0 + false + + + 284 + Task 2.4 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You proved your hypothesis to be {{result}}. Raising or lowering temperature can change the state of chocolate, and the effects are reversible! I bet Gobber will be excited to find out. </Text><ID>920956</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Time for me to get my delicious treat out of my bottle! This is a good day!</Text><ID>920957</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Conclusion</Key><Value>Your hypothesis was:@@ [c][3eebff]{{hypothesis}}[/c][ffffff]@@ Looking at your results you can see that you proved your hypothesis to be [c][3eebff]{{result}}.[/c][ffffff]</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Speak to Gobber at New Berk.</Text><ID>936390</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201332 + true + 25 + 25 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 201332 + true + 250 + 250 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 201332 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201332 + true + 200 + 200 + + 0 + +
+ false +
+ + 1027 + Quest 7 Your Fishing Lesson + 8 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Pop Quiz! Fishing</Text><ID>920505</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1038 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1027 + 640 + 0 + + + + 3 + 201323 + 201209 + + 640 + Task 7.0 Buy bait to fish + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Hey there {{Name}}! I hope you've been keeping up with your fishing. It's time for your first pop quiz! +Have you used up all your bait yet? You need to buy some more! I think Phlegma taught you how to use the store, so this should be a breeze. I'll give you a few coins. {{Input}} on the store and purchase the minnow!</Text><ID>922056</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Great job, Viking! You've got your head on straight. +Different types of bait are good at catching different types of fish. You should try it out and see what you can reel in!</Text><ID>922057</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>StoreID</Key><Value>94</Value></Pair><Pair><Key>CategoryID</Key><Value>407</Value></Pair><Pair><Key>ItemID</Key><Value>8722</Value></Pair><Pair><Key>ItemDescription</Key><Value>Minnow</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Buy</Type><Title><Text>Buy minnow from the bait store</Text><ID>922054</ID></Title><Desc><Text>Buy minnow from the bait store. {{Input}} on the store icon at the top of the screen.</Text><ID>929544</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201323 + true + 25 + 25 + + 0 + + + + 25 +

1

+ 0 + + 1 + 32 + 201323 + true + 25 + 25 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201323 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201323 + true + 50 + 50 + + 0 + +
+ + 10 +

2

+ 0 + + 1 + 8 + 201209 + true + 10 + 10 + + 0 + +
+ false +
+ + 1028 + Quest 12 + 7 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Learn to Farm</Text><ID>920619</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1033 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1028 + 290 + 0 + + + 1 + 1028 + 698 + 0 + + + + 2 + 201325 + 0 + + 290 + Task12.1 Enter the Farm in the school + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hello, {{Name}}! I'm Phlegma the Fierce, the Botanist of the school. I'm the expert on the living world and I make sure our dragons have enough to eat. I'll show you how to farm your own crops and raise animals. The entrance to your farm is next to my greenhouse. Go inside!</Text><ID>921138</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Farm</Text><ID>921136</ID></Title><Desc><Text>Enter the Farm. The entrance is next to the greenhouse.</Text><ID>929501</ID></Desc></Data> + 0 + false + + + 698 + Task 12.2 Deliver Wool + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Once you get the hang of it, you can keep farming to unlock more cool plants and animals! Keep on going until you unlock the sheep, then give me a spool of wool to prove your farm is going well!</Text><ID>921610</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great job, {{Name}}! I'm proud of your progress. +You'll become an Ultimate Dragon Trainer in no time!</Text><ID>921611</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Harvest 1 spool of wool and give to Phlegma</Text><ID>921608</ID></Title><Desc><Text>Harvest 1 spool of wool from your sheep and give it to Phlegma. You'll need to keep farming to unlock the sheep!</Text><ID>932716</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201325 + true + 50 + 50 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 201325 + true + 50 + 50 + + 0 + +
+ + 25 +

8

+ 0 + + 1 + 659 + 201325 + true + 25 + 25 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201325 + true + 50 + 50 + + 0 + +
+ false +
+ + 1029 + Quest 13 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>History of Viking Contraptions</Text><ID>920409</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1102 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1029 + 291 + 0 + + + 2 + 1029 + 1030 + 0 + + + 1 + 1029 + 293 + 0 + + + 1 + 1029 + 391 + 0 + + + 2 + 1029 + 1075 + 0 + + + 2 + 1029 + 1076 + 0 + + + 1 + 1029 + 394 + 0 + + + 2 + 1029 + 1077 + 0 + + + 2 + 1029 + 1078 + 0 + + + 1 + 1029 + 398 + 0 + + + + 1 + 201102 + 0 + + 1030 + Quest 13.2 + 6 +

1029

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Astrid's Comb</Text><ID>920404</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1030 + 292 + 0 + + + + 1 + 201005 + 0 + + 292 + Task 13.2 Talk to Astrid for her comb + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Astrid has a braid so I'm sure she'll have one you could use. You should ask her for a comb so we can show it in the classroom.</Text><ID>904137</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You need my comb for the new class? Sure! Vikings have been making combs for years, but this one is special. My great-grandma gave it to me! @@ It's carved out of red deer antler, so it's really strong. </Text><ID>904138</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about her comb</Text><ID>904135</ID></Title><Desc><Text>Talk to Astrid at the school to get her comb.</Text><ID>929502</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8268 + + 1 + 643 + 201005 + true + 1 + 1 + + 0 + +
+ false + + + 1075 + Quest 13.5 + 6 +

1029

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Find Fishlegs and get the Longship</Text><ID>920405</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1075 + 392 + 0 + + + + 1 + 201006 + 0 + + 392 + Task 13.5 Find Fishlegs for a model longship + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Our longships are our pride and joy! They're speedy, stealthy and can run by manpower or sail. Perhaps Fishlegs will part with one of his models?</Text><ID>904141</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A longship! Before I give it to you, did you know that a longship is classified by the number of oarsmen on board? And there’s only one coxswain who coordinates the power and rhythm of all the oarsmen. Fascinating! </Text><ID>904142</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Fishlegs for a model longship</Text><ID>904139</ID></Title><Desc><Text>Collect the longship model from Fishlegs.</Text><ID>936332</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8269 + + 1 + 644 + 201006 + true + 1 + 1 + + 0 + +
+ false +
+ + 1076 + Quest 13.6 + 6 +

1029

+ <Data><Title><Text>Get the Compass from Mulch</Text><ID>904143</ID></Title><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1076 + 393 + 0 + + + + 1 + 201007 + 0 + + 393 + Task 13.6 Get the compass from Mulch + <Data><Type>Meet</Type><Title><Text>Get the compass from Mulch</Text><ID>904143</ID></Title><Desc><Text>Collect the magnetic compass from Mulch by the lake at the school.</Text><ID>904144</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904145</ID><NPC>PfDWFishlegs</NPC><Text>A ship at sea is hard to navigate without knowing where you're going. Vikings invented one of the first magnetic compasses that guides you along on a stormy day. Before sailors had compasses, they had to use the sun to see where they were! @@ Mulch has an extra one you can have! Go talk to him.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWFishlegs</NPC><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset></Offer><End><Type>Popup</Type><ID>904146</ID><NPC>PfDWMulch</NPC><Text>You can't have a ship without a compass, and you can't have Vikings without ships. So this is essential, {{Name}}!</Text><Asset>PfUiMissionActionDBDO</Asset></End></Data> + 0 + false + + + 1 +

6

+ 8270 + + 1 + 645 + 201007 + true + 1 + 1 + + 0 + +
+ false +
+ + 1077 + Quest 13.8 + 6 +

1029

+ <Data><Title><Text>Go talk to Gobber in the Hatchery</Text><ID>920407</ID></Title><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1077 + 395 + 0 + + + + 1 + 201008 + 0 + + 395 + Task 13.8 Go talk to Gobber in the Hatchery + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>We need something that means more to the people of Berk. Will you talk to Gobber in the Hatchery?</Text><ID>904149</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'm proud to be a Viking! I was wondering when you were finally going to get to me. I'm the blacksmith, so of course you'll need to talk to me! @@My proudest invention was crafting a metal prosthetic foot for Hiccup. His other foot is constantly growing, so I need to make him new prosthetics. I have the first one he ever had, after the battle with the Red Death. You can have it!</Text><ID>904150</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberIdle03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Title><Desc><Text>Talk to Gobber in the Hatchery to get an invention.</Text><ID>936333</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8271 + + 1 + 646 + 201008 + true + 1 + 1 + + 0 + +
+ false +
+ + 1078 + Quest 13.9 + 6 +

1029

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Go talk to Hiccup by the Flight Club tower</Text><ID>920408</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1078 + 397 + 0 + + + + 1 + 201009 + 0 + + 397 + Task 13.9 Go talk to Hiccup by Flight Club + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>The next invention that deserves to be on display is from my trainee, Hiccup. He's over by the Flight Club training tower.</Text><ID>904153</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We've changed so much recently. Everyone's proud of my quirky little inventions! I'm so honored. @@ This thing means the world to me. It's the first tail fin I ever created for Toothless. That is, it's the first one that didn't get destroyed. You can have it.</Text><ID>904154</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup02</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Flight Club at the Training Grounds</Text><ID>904151</ID></Title><Desc><Text>Go see Hiccup by the Flight Club training tower.</Text><ID>929621</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8273 + + 1 + 647 + 201009 + true + 1 + 1 + + 0 + +
+ false +
+ + 291 + Task 13.1 Talk to Eret on the beach + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_BeachFishing</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I need your help to get this new lesson ready. It's all about Viking contraptions, so we need to gather inventions to display in the classroom. @@ You're in luck! Eret is visiting the school to learn more about dragons and I’m sure he's come across all kinds of Viking inventions on his travels. If you hurry, you can catch him before he heads back to the Training Grounds. He's on the beach getting some fresh air!</Text><ID>904157</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ahoy there, {{Name}}! I'm Eret, son of Eret, the finest dragon wrangler alive. Vikings all across the archipelago and beyond have made so many great inventions over the years! @@ I'd be happy to share a few that I’ve come across. +For example, the Vikings invented the comb!</Text><ID>904158</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret on the beach</Text><ID>904155</ID></Title><Desc><Text>Talk to Eret on the beach.</Text><ID>929506</ID></Desc></Data> + 0 + false + + + 293 + Task 13.3 Bring the comb back to the Headmaster + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Comb back…I mean, come back to me with the comb.</Text><ID>904161</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>You did a great job, {{Name}}. I have a lead on another contraption here at the school. Time to lace up your running shoes.</Text><ID>904162</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>8268</Value></Pair><Pair><Key>ItemDescription</Key><Value>Comb</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the comb back to the Headmaster</Text><ID>904159</ID></Title><Desc><Text>Deliver the comb to the Headmaster at the school.</Text><ID>929507</ID></Desc></Data> + 0 + false + + + 391 + Task 13.4 Go see Mulch by the lake + <Data><Type>Meet</Type><Title><Text>Go see Mulch by the lake</Text><ID>904163</ID></Title><Desc><Text>Go talk to Mulch by the lake behind The Lab.</Text><ID>904164</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904165</ID><NPC>PfDWHeadmaster</NPC><Text>We can't forget one of our best inventions, the sailing ship. Vikings are the masters of the sea! Go see Mulch by the lake to get a ship. </Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract01</Asset></Offer><End><Type>Popup</Type><ID>904166</ID><NPC>PfDWMulch</NPC><Text>A ship! Are you crazy? Do you know how big those are? It will never fit into a classroom! @@ Oh, I know what he means. He wants a replica of a ship.</Text><Asset>PfUiMissionActionDBDO</Asset></End></Data> + 0 + false + + + 394 + Task 13.7 Deliver the items to Headmaster + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I'm glad everyone is willing to help out. Come back to me with Fishlegs and Mulch's items.</Text><ID>904169</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>These are perfect for the display, but I feel like something's still missing! </Text><ID>904170</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>8269</Value></Pair><Pair><Key>ItemDescription</Key><Value>Longship</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>8270</Value></Pair><Pair><Key>ItemDescription</Key><Value>Magnetic Compass</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>8269</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8270</ItemID><Quantity>1</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Deliver the items to Headmaster</Text><ID>904167</ID></Title><Desc><Text>Bring the items to the Headmaster at the school.</Text><ID>936334</ID></Desc></Data> + 0 + false + + + 398 + Task 13.10 Go back to the Headmaster + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Please bring me Hiccup and Gobber's contraptions.</Text><ID>904173</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>These are the best inventions we have to put on display. They mean so much to us. Thank you for gathering all these items, {{Name}}. You did well.</Text><ID>904174</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>8271</Value></Pair><Pair><Key>ItemDescription</Key><Value>Hiccup's Old Foot</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>8273</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothless's Old Tail</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>8268</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8269</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8270</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8271</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8273</ItemID><Quantity>1</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Go back to the Headmaster</Text><ID>904171</ID></Title><Desc><Text>Bring the items to the Headmaster.</Text><ID>932717</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201102 + true + 10 + 10 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201102 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201102 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201102 + true + 50 + 50 + + 0 + +
+ false +
+ + 1031 + Quest 14 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>History of the School</Text><ID>920421</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1029 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1031 + 1079 + 0 + + + 2 + 1031 + 1080 + 0 + + + 2 + 1031 + 1081 + 0 + + + 2 + 1031 + 1082 + 0 + + + 2 + 1031 + 1083 + 0 + + + 2 + 1031 + 1084 + 0 + + + 1 + 1031 + 405 + 0 + + + + 1 + 201103 + 0 + + 1079 + Quest 14.1 + 6 +

1031

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Wartihog at the school</Text><ID>904266</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1079 + 294 + 0 + + + + 1 + 201106 + 0 + + 294 + Task 14.1 Talk to Wartihog at the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWKidA.unity3d/PfDWKidA</Asset><Location>PfMarker_KidA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Terrible Terrors love paper. They've torn up the School of Dragons history book! Again! We need your help rewriting the missing pages for the book. @@ You should start with Wartihog. He was just in the morning class and has notes.</Text><ID>904268</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Sure, you can look at my notes from the class. Just remember this next time I forget my homework. @@After defeating the Red Death, the Vikings and dragons forged an alliance! Living together in harmony wasn’t working out so well in Berk, so the School of Dragons was created.</Text><ID>904269</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidA</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Wartihog at the school</Text><ID>904266</ID></Title><Desc><Text>Talk to Wartihog in front of the school.</Text><ID>922672</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 727 + 201106 + true + 1 + 1 + + 0 + +
+ false + + + 1080 + Quest 14.2 + 6 +

1031

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Clueless</Text><ID>921074</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1080 + 295 + 0 + + + + 1 + 201107 + 0 + + 295 + Task 14.2 Talk to Clueless by The Lab + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWKidB.unity3d/PfDWKidB</Asset><Location>PfMarker_KidB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Clueless was also in class taking notes. Go see him for another page. He is behind The Lab.</Text><ID>904272</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Huh? Was I writing notes? Well, I have this piece of paper in my hand. 'The location of the School of Dragons was chosen because the island was a caldera.' A caldera is an old volcano that collapses inwards and leaves a ring of mountains. @@ It's the perfect protection for the students and dragons from possible enemies, and we can train in peace on this island. </Text><ID>904273</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Clueless by The Lab</Text><ID>904270</ID></Title><Desc><Text>Talk to Clueless behind The Lab in the school.</Text><ID>936335</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 728 + 201107 + true + 1 + 1 + + 0 + +
+ false +
+ + 1081 + Quest 14.3 + 6 +

1031

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Speedifist by the Great Hall</Text><ID>920417</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1081 + 296 + 0 + + + + 1 + 201108 + 0 + + 296 + Task 14.3 Talk to Speedifist by Thunder Run Racing + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWKidC.unity3d/PfDWKidC</Asset><Location>PfMarker_KidC</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Speedifist was a little late to class, but he took notes too. He told me he was standing by Thunder Run Racing tower!</Text><ID>904276</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidC</NPC><Text>I wasn't late; I just like to make a fashionable entrance. Here are my notes. @@ Many of these buildings were already here when Hiccup first found the island! Vikings used to live on this island, years before the School of Dragons began.</Text><ID>904277</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidC</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Speedifist</Text><ID>904274</ID></Title><Desc><Text>Talk to Speedifist at the school.</Text><ID>922674</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 729 + 201108 + true + 1 + 1 + + 0 + +
+ false +
+ + 1082 + Quest 14.4 + 6 +

1031

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Fishlegs by the boat dock to Berk</Text><ID>920418</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1082 + 297 + 0 + + + + 1 + 201109 + 0 + + 297 + Task 14.4 Talk to Fishlegs + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>We're still missing a few pages. Go talk to Fishlegs. He's always been one of my best students.</Text><ID>904280</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>School of Dragons History is one of my favorite subjects. I've read the book five times now. Here is my favorite fact! 'The ancient Vikings who lived here before were proud warriors who knew a lot about dragons. They left markings on the columns and created the statues.' @@ We've learned a lot from them. Sometimes I just stare at what the Vikings left, and I wonder if they loved their dragons as much as I love Meatlug!</Text><ID>904281</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle05</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 730 + 201109 + true + 1 + 1 + + 0 + +
+ false +
+ + 1083 + Quest 14.5 + 6 +

1031

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Astrid in the school</Text><ID>905330</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1083 + 298 + 0 + + + + 1 + 201110 + 0 + + 298 + Task 14.5 Talk to Astrid + <Data><Type>Meet</Type><Title><Text>Talk to Astrid near the store at school</Text><ID>904282</ID></Title><Desc><Text>Talk to Astrid near the store in school.</Text><ID>904283</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904284</ID><NPC>PfDWFishlegs</NPC><Text>Astrid is a really good student because she's really competitive. Go talk to her!</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWFishlegs</NPC><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset></Offer><End><Type>Popup</Type><ID>904285</ID><NPC>PfDWAstrid</NPC><Text>Wow! I haven't taken that class in a long time. Here is something I remember. @@Once Hiccup found the island, Stoick called on only the most competent Vikings to become the teachers for the new school.</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWAstrid</NPC><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset></End></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 731 + 201110 + true + 1 + 1 + + 0 + +
+ false +
+ + 1084 + Quest 14.6 + 6 +

1031

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Snotlout byFireball Frenzy</Text><ID>920420</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1084 + 404 + 0 + + + + 1 + 201111 + 0 + + 404 + Task 14.6 Talk to Snotlout + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Snotlout might be helpful, but I don't think Snotlout has ever been helpful to anyone. He’s at the school.</Text><ID>904288</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I don't read words, so why are you asking me about books? Oh, Astrid sent you? I'll help you out if you talk to her about how cool I am. 'Our new Headmaster was one of the strongest Viking warriors before he became a teacher.'</Text><ID>904289</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout at the Training Grounds</Text><ID>904286</ID></Title><Desc><Text>Talk to Snotlout at the Training Grounds.</Text><ID>926796</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 732 + 201111 + true + 1 + 1 + + 0 + +
+ false +
+ + 405 + Task 14.7 Deliver the pages to the Headmaster + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Bring those pages back to me, {{Name}}.</Text><ID>904292</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Amazing work! This book is our legacy, and it means the world to me. Great job.</Text><ID>904293</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>8011</Value></Pair><Pair><Key>ItemDescription</Key><Value>Paper</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>8011</ItemID><Quantity>6</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Deliver the pages to the Headmaster</Text><ID>904290</ID></Title><Desc><Text>Return the pages to the Headmaster at the school.</Text><ID>936338</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201103 + true + 10 + 10 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201103 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201103 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201103 + true + 50 + 50 + + 0 + +
+ false +
+ + 1033 + Quest 16 + 6 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Before you begin to train your dragon, you'll need to know where they come from. Our Viking ancestors, starting with Gobber's great-great-great grandfather Bork the Bold, have documented the dragon classes on special rune stones. Go find all seven of the stones to learn about dragon history.</Text><ID>920439</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Well done, {{Name}}! Now you know more about your dragon and where it comes from. Hiccup created a new dragon class called a Tracker class, but we don't have a runestone for it yet. There's so much more to learn about dragons! +</Text><ID>920440</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>History of Dragons</Text><ID>920438</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1031 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1033 + 309 + 0 + + + 1 + 1033 + 384 + 0 + + + 1 + 1033 + 385 + 0 + + + 1 + 1033 + 386 + 0 + + + 1 + 1033 + 387 + 0 + + + 1 + 1033 + 388 + 0 + + + 1 + 1033 + 389 + 0 + + + + 1 + 201327 + 0 + + 309 + Task 16.1 Find the Tidal Class Rune Stone + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_1.unity3d/PfGrpQBaby16T16_1</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Tidal Class dragons live in or near the water. The Thunder Drum and the Scauldron are Tidal Class dragons. @@ To remember these, heed this warning: "The Tidal Tides Drown Swimmers."</Text><ID>904573</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneTidal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Tidal Class Rune Stone</Text><ID>904571</ID></Title><Desc><Text>Find the Tidal Class Rune Stone around the school. It’s a blue water rock with a wave like symbol on it.</Text><ID>941115</ID></Desc></Data> + 0 + false + + + 384 + Task 16.2 Find the Boulder Class Rune Stone + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_2.unity3d/PfGrpQBaby16T16_2</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Boulder Class dragons are tough earth dragons. They sometimes eat rocks. The Whispering Death and the Gronckle are Boulder Class dragons. @@ Just remember, "Boulders Weigh Down Gobber."</Text><ID>904576</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGenPraise01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneBoulder</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Boulder Class Rune Stone</Text><ID>904574</ID></Title><Desc><Text>Find the Boulder Class Rune Stone around the school. It’s a gray rock with a symbol like rock in a circle on it.</Text><ID>941116</ID></Desc></Data> + 0 + false + + + 385 + Task 16.3 Find the Tracker Class Rune Stone + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_3.unity3d/PfGrpQBaby16T16_3</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Tracker Class dragons can find anything, even if they are miles away from their target. The Deadly Nadder and the Rumblehorn are Tracker Class dragons. </Text><ID>904579</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGenPraise02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneTracker</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Tracker Class Rune Stone</Text><ID>904577</ID></Title><Desc><Text>Find the Tracker Class Rune Stone around the school. It’s a red and black rock with a symbol like compass on it.</Text><ID>941117</ID></Desc></Data> + 0 + false + + + 386 + Task 16.4 Find the Mystery Class Rune Stone + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_4.unity3d/PfGrpQBaby16T16_4</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>We don't know much about Mystery Class dragons, but we hope to find out more about them. The Changewing, the Smothering Smokebreath and the Boneknapper are Mystery Class dragons. @@ Remember this saying: "Mysteries Can Simply Stump Brains!"</Text><ID>904582</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGoodJob</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneMystery</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Mystery Class Rune Stone</Text><ID>904580</ID></Title><Desc><Text>Find the Mystery Class Rune Stone around the school. It’s a smoky rock with a question mark like pattern on it.</Text><ID>941118</ID></Desc></Data> + 0 + false + + + 387 + Task 16.5 Find the Sharp Class Rune Stone + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_5.unity3d/PfGrpQBaby16T16_5</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Sharp Class dragons are vain and prideful. They also have sharp body parts, like spines. The Deadly Nadder and the Timberjack are Sharp Class dragons. @@ Remember this by saying "Sharp Dragons Need Thorns."</Text><ID>904585</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGreat</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneSharp</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Sharp Class Rune Stone at the Training Grounds</Text><ID>904583</ID></Title><Desc><Text>Find the Sharp Class Rune Stone at the Training Grounds. It’s an ice rock with a round symbol with spikes on it.</Text><ID>941119</ID></Desc></Data> + 0 + false + + + 388 + Task 16.6 Find the Stoker Class Rune Stone + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_6.unity3d/PfGrpQBaby16T16_6</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Stoker Class dragons are hotheads and great fire breathers. The Monstrous Nightmare, Fireworm, Typhoomerang and the Terrible Terror are all Stoker Class dragons. @@ An easy way to remember this is "Stokers Must Never Fall Through Thick Trees." </Text><ID>904588</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralPos03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneStoker</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Stoker Class Rune Stone at the Training Grounds</Text><ID>904586</ID></Title><Desc><Text>Find the Stoker Class Rune Stone around the school. It’s a gold rock with a firy ball symbol on it.</Text><ID>941120</ID></Desc></Data> + 0 + false + + + 389 + Task 16.7 Find the Strike Class Rune Stone + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQBaby16T16_7.unity3d/PfGrpQBaby16T16_7</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Strike Class dragons are really fast, smart and have powerful jaws. The Skrill and the Night Fury are Strike Class dragons. @@ Remember it with this phrase. "Strike Should Nimbly Fly."</Text><ID>904591</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralPos02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRuneStoneStriker</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Strike Class Rune Stone at the Training Grounds</Text><ID>904589</ID></Title><Desc><Text>Find the Strike Class Rune Stone at the Training Grounds. It’s a purple and pink rock with a symbol like Night Fury tail on it.</Text><ID>941121</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201327 + true + 25 + 25 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201327 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201327 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201327 + true + 50 + 50 + + 0 + +
+ false +
+ + 1035 + Quest_Repeat_2 + 9 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Salmon Season</Text><ID>920441</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1035 + 311 + 0 + + + + 1 + 200629 + 0 + + 311 + Task 2.1 Catch 10 Salmon + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7144</Value></Pair><Pair><Key>ItemDescription</Key><Value>Salmon</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 10 Salmon</Text><ID>921551</ID></Title><Desc><Text>Catch 10 Salmon at any fishing spot.</Text><ID>921552</ID></Desc></Data> + 0 + false + + + 140 +

2

+ 0 + + 1 + 682 + 200629 + true + 140 + 140 + + 0 + + + false +
+ + 1036 + Quest_Repeat_3 + 9 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Fish And Chips</Text><ID>920442</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1036 + 312 + 0 + + + + 1 + 201098 + 0 + + 312 + Task 3.1 Catch 10 Halibut + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7141</Value></Pair><Pair><Key>ItemDescription</Key><Value>Halibut</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 10 Halibut</Text><ID>921553</ID></Title><Desc><Text>Catch 10 Halibut at any saltwater fishing spot.</Text><ID>921554</ID></Desc></Data> + 0 + false + + + 130 +

2

+ 0 + + 1 + 527 + 201098 + true + 130 + 130 + + 0 + + + false +
+ + 1037 + Quest_Repeat_7 + 9 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Jellied Eels</Text><ID>920443</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1037 + 313 + 0 + + + + 1 + 201145 + 0 + + 313 + Task 7.1 Catch 10 Eels + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7140</Value></Pair><Pair><Key>ItemDescription</Key><Value>Eel</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 10 Eels</Text><ID>921561</ID></Title><Desc><Text>Catch 10 Eels at any fishing spot.</Text><ID>921562</ID></Desc></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 201145 + true + 150 + 150 + + 0 + + + false +
+ + 1038 + Quest_Lab #1 + 5 +

+ <Data><Setup><Scene>BerkDocksDO</Scene><Asset>PfDragonCageSingetailHanging</Asset><Location>PfMarker_AdultDragonOnGround</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Relight the Torches</Text><ID>920611</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1038 + 314 + 0 + + + 1 + 1038 + 315 + 0 + + + 2 + 1038 + 1039 + 0 + + + 1 + 1038 + 382 + 0 + + + 1 + 1038 + 319 + 0 + + + 1 + 1038 + 327 + 0 + + + 2 + 1038 + 1040 + 0 + + + 1 + 1038 + 323 + 0 + + + 1 + 1038 + 324 + 0 + + + + 6 + 201335 + 0 + + 1039 + Quest_Lab_Research #1.2 + 5 +

1038

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We'll need to figure out some chemical reactions to change fire color! Our next task is to do a little research. [c][3eebff]Research[/c][ffffff] is the step in the scientific method where you find out information that's already known about the problem you're testing.@@You can research things by talking to others about their experiences with the items we need to test. A list of the materials we need for our experiment will be found in your Quest Log. You'll need to get these rocks from Astrid, Fishlegs and Snotlout here at the school.</Text><ID>920608</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T2E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Start your research</Text><ID>920607</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 2 + 1039 + 1042 + 0 + + + 2 + 1039 + 1041 + 0 + + + 2 + 1039 + 1043 + 0 + + + + 6 + 0 + 0 + + 1041 + Quest_Lab #1.2.1 + 5 +

1039

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1041 + 316 + 0 + + + + 6 + 200617 + 0 + + 316 + Task 1.2.1 Collect rock salt from Astrid + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I found this rock salt when the lake dried up last year. It must have formed when the water evaporated. Why don't you use it for your experiment?</Text><ID>904030</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect rock salt from Astrid </Text><ID>904028</ID></Title><Desc><Text>Get the rock salt from Astrid. She is standing near the store at the school.</Text><ID>922659</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7981 + + 1 + 606 + 200617 + true + 1 + 1 + + 0 + +
+ false +
+ + 1042 + Quest_Lab #1.2.2 + 5 +

1039

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1042 + 317 + 0 + + + + 6 + 200618 + 0 + + 317 + Task 1.2.2 Collect tolbachite from Fishlegs + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Bucket_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Fishlegs Ingerman at your service. I was so excited when Meatlug and I found this tolbachite by the volcano! It was kind of scary with steam and gas everywhere. You can have my last piece!</Text><ID>904033</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect tolbachite from Fishlegs</Text><ID>904031</ID></Title><Desc><Text>Get tolbachite from Fishlegs at the School by the lake.</Text><ID>932713</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7984 + + 1 + 607 + 200618 + true + 1 + 1 + + 0 + +
+ false +
+ + 1043 + Quest_Lab #1.2.3 + 5 +

1039

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1043 + 318 + 0 + + + + 6 + 200619 + 0 + + 318 + Task 1.2.3 Collect sylvite from Snotlout + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>'Sup? I'm Snotlout, master of awesome. Hookfang and I found this sylvite at our secret training island! Cool, huh? It's really rare but I'll let you have it for your experiment. Just remember, you couldn't have done this without me!</Text><ID>904036</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect sylvite from Snotlout</Text><ID>904034</ID></Title><Desc><Text>Get sylvite from Snotlout by the school.</Text><ID>929424</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8002 + + 1 + 608 + 200619 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 1040 + Quest_Lab_Experiment #1.3 + 5 +

1038

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's go inside [c][3eebff]The Lab[/c][ffffff].</Text><ID>920610</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1040 + 320 + 0 + + + 1 + 1040 + 321 + 0 + + + 1 + 1040 + 322 + 0 + + + + 6 + 0 + 0 + + 320 + Task 1.3.1 Burn the rock salt + <Data><Type>Action</Type><Title><Text>Burn the rock salt</Text><ID>904037</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnRockSalt</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 321 + Task 1.3.2 Burn the tolbachite + <Data><Type>Action</Type><Title><Text>Burn the tolbachite</Text><ID>904039</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnTolbachite</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 322 + Task 1.3.3 Burn the sylvite + <Data><Type>Action</Type><Title><Text>Burn the sylvite</Text><ID>904041</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnSylvite</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + false +
+ + 314 + Task 1.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>We usually have blue landing fires so the dragons know where to land. What makes blue fire? I have no idea. Can you find out for me?@@Heather should be able to help you figure it out. You should talk to her by her laboratory.</Text><ID>921983</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It's really great to meet you. Did you know blue flames are really, really hot? I think there are other ways to make our flames blue too. Let's find out together! @@We can use the [c][3eebff]scientific method[/c][ffffff], just like Hiccup! We'll use 5 steps of the scientific method: [c][3eebff]problem, research, hypothesis, procedure,[/c][ffffff] and [c][3eebff]result.[/c][ffffff]</Text><ID>921984</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T1End</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather by the Lab</Text><ID>920946</ID></Title><Desc><Text>Talk to Heather at the Lab in the School of Dragons.</Text><ID>936389</ID></Desc></Data> + 0 + false + + + 315 + Task 1.2 Talk to the Alchemist to take the test + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The [c][3eebff]problem[/c][ffffff] is the scientific question that will be tested in the experiment.</Text><ID>921033</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T2Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuiz01.unity3d/PfUiQuiz01</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather to take the test</Text><ID>921031</ID></Title><Desc><Text>Talk to Heather in front of The Lab and answer the test.</Text><ID>922301</ID></Desc></Data> + 0 + false + + + 319 + Task 1.2.5 Take the hypothesis quiz + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now that we have done our research and collected facts about our testing materials, we need to form our [c][3eebff]hypothesis[/c][ffffff]. The hypothesis is an educated guess about how you think your experiment will turn out.</Text><ID>921036</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T2E5A</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuiz02.unity3d/PfUiQuiz02</Value></Pair></Objective><Type>Meet</Type><Title><Text>Take the hypothesis quiz</Text><ID>921034</ID></Title><Desc><Text>Talk to Heather at The Lab and find the hypothesis from the answers.</Text><ID>922302</ID></Desc></Data> + 0 + false + + + 323 + Task 1.3.4 Talk to the Alchemist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great work! You proved your hypothesis to be {{result}}. Your [c][3eebff]results[/c][ffffff] are the outcome of your experiment. You'll use them to analyze, or figure out, the conclusion at the end of each experiment.</Text><ID>921039</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T3E4</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuiz03.unity3d/PfUiQuiz03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>8002</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>7981</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>7984</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Heather to take the final test</Text><ID>921037</ID></Title><Desc><Text>Find the correct steps of the scientific method from the answers.</Text><ID>935406</ID></Desc></Data> + 0 + false + + + 324 + Task 1.4 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That was really fun! Come to me any time you want to do an experiment. You should go back to Bucket and let him know what you found out.</Text><ID>921808</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T4Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I understand! Now I need to find some tolbachite to relight the blue fires. Thanks, {{Name}}! You've been a great help. I would give you the very bucket on my head, but I need it.</Text><ID>921809</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Conclusion</Key><Value>Your hypothesis was:@@ [c][3eebff]{{hypothesis}}[/c][ffffff]@@ Looking at your results you can see that you proved your hypothesis to be [c][3eebff]{{result}}.[/c][ffffff]</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket</Text><ID>923073</ID></Title><Desc><Text>Meet Bucket at the school.</Text><ID>929427</ID></Desc></Data> + 0 + false + + + 327 + Task 1.2.6 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The [c][3eebff]procedure[/c][ffffff] phase is where we test out our hypothesis to see if it's true or false. Let's choose the hypothesis that we'll test in the experiment.</Text><ID>921046</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T2E6A</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Okay, let's get on with the experiment. Toothless is really excited to help you out.</Text><ID>921047</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T2E6End</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis01.unity3d/PfUiHypothesis01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Talk to Heather at The Lab and choose your hypothesis.</Text><ID>929428</ID></Desc></Data> + 0 + false + + + 382 + Task 1.2.4 Take findings to the Alchemist + <Data><Offer><Type>Popup</Type><ID>921050</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well done. Come see me at The Lab and we'll have some fun!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T2E4End</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Take your findings to Heather at The Lab</Text><ID>921048</ID></Title><Desc><Text>Return to Heather in front of The Lab.</Text><ID>921049</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 201335 + true + 350 + 350 + + 0 + +
+ + 65 +

2

+ 0 + + 1 + 633 + 201335 + true + 65 + 65 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201335 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201335 + true + 200 + 200 + + 0 + +
+ false +
+ + 1044 + Quest 17 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Mature Dragon</Text><ID>920444</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 4 + 8,5 + 0 + true + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1044 + 326 + 0 + + + + 1 + 201094 + 0 + + 326 + Task 17.1 Enter the Hatchery + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, you're growing a close bond with your dragon! I think {{dragon name}} is ready to grow older. Go to the Hatchery and stand in front of the Dragon Hearth. That's the pool of lava! Your dragon will use that heat to shed skin and grow.@@ You'll be able to customize your dragon a little bit more. It's so exciting! You can go there whenever any of your dragons reach Rank 5.</Text><ID>904606</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfHatcheryINTLavaFlow</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Help your rank 5 dragon grow in the Hatchery</Text><ID>904604</ID></Title><Desc><Text>Enter the Hatchery with your rank 5 dragon, then approach the pool of lava in the middle of the cave.</Text><ID>929512</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201094 + true + 50 + 50 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 201094 + true + 50 + 50 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 201094 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201094 + true + 50 + 50 + + 0 + +
+ false +
+ + 1046 + Quest_Repeat_4 + 9 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Trout Fishing</Text><ID>920447</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1046 + 330 + 0 + + + + 1 + 201098 + 0 + + 330 + Task 4.1 Catch 10 Brown Trout + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7139</Value></Pair><Pair><Key>ItemDescription</Key><Value>Brown Trout</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 10 Brown Trout</Text><ID>921796</ID></Title><Desc><Text>Catch 10 Brown Trout at any freshwater fishing spot.</Text><ID>921797</ID></Desc></Data> + 0 + false + + + 130 +

2

+ 0 + + 1 + 527 + 201098 + true + 130 + 130 + + 0 + + + false +
+ + 1048 + Quest_Repeat_6 + 9 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Perching Perch</Text><ID>920449</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1048 + 332 + 0 + + + + 1 + 201097 + 0 + + 332 + Task 6.1 Catch 10 Perch + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7143</Value></Pair><Pair><Key>ItemDescription</Key><Value>Perch</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 10 Perch</Text><ID>921559</ID></Title><Desc><Text>Catch 10 Perch at any freshwater fishing spot.</Text><ID>921560</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 201097 + true + 100 + 100 + + 0 + + + false +
+ + 1053 + Quest_Story #1_1 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Master the Flames</Text><ID>920454</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1033 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1053 + 337 + 0 + + + 1 + 1053 + 338 + 0 + + + 1 + 1053 + 339 + 0 + + + + 1 + 201091 + 0 + + 337 + Task 1.1 Meet Snotlout + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>It looks like your dragons is ready to grow! Talk to Hiccup about the Dragon Hearth, if you haven't already. @@ You're ready for more dragon riding lessons! Talk to Snotlout. You'll find him near the Fireball Frenzy entrance at the Training Grounds.</Text><ID>904639</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Be prepared to be impressed, {{Name}}! Welcome to Fireball Frenzy!</Text><ID>904640</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Snotlout by Fireball Frenzy</Text><ID>904637</ID></Title><Desc><Text>Meet Snotlout in front of Fireball Frenzy at the Training Grounds. Follow the arrow up the stairs to the new area.</Text><ID>922806</ID></Desc></Data> + 0 + false + + + 338 + Task 1.2 Practice Shooting + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Gobber and Hiccup made this obstacle course, but no one is better than me. Go in and I'll give you some pointers!</Text><ID>904643</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestStory1.unity3d/DlgSnotloutStory1T2Offer</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Not bad, not bad at all. </Text><ID>904644</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestStory1.unity3d/DlgSnotloutStory1T2End</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair></Objective><Type>Game</Type><Title><Text>Practice shooting in Fireball Frenzy</Text><ID>904641</ID></Title><Desc><Text>Enter Fireball Frenzy.</Text><ID>922807</ID></Desc></Data> + 0 + false + + + 339 + Task 1.3 Return to the Headmaster + <Data><Type>Meet</Type><Title><Text>Return to the Headmaster</Text><ID>904657</ID></Title><Desc><Text>Go talk to the Headmaster in the school.</Text><ID>904646</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904647</ID><NPC>PfDWSnotlout</NPC><Text>You can come back and play Fireball Frenzy whenever you want. Right now, go back to the Headmaster. </Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWSnotlout</NPC><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset></Offer><End><Type>Popup</Type><ID>904648</ID><NPC>PfDWHeadmaster</NPC><Text>Snotlout tells me you did really well in Fireball Frenzy! That's good news.</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset></End></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201091 + true + 10 + 10 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201091 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201091 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201091 + true + 50 + 50 + + 0 + +
+ false +
+ + 1054 + Quest_Story #1_2 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Master the Air</Text><ID>920455</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1053 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1054 + 340 + 0 + + + 1 + 1054 + 341 + 0 + + + 1 + 1054 + 342 + 0 + + + + 1 + 201092 + 0 + + 340 + Task 1.1 Go to Flight School + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Your next lesson is to figure out how to take control of your dragon in the air. Talk to Hiccup and he'll help you figure it out.</Text><ID>904651</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Welcome to Flight Club!</Text><ID>904652</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupFlightIntro</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FlightSchoolDOExit</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Flight Club tower at the Training Grounds</Text><ID>904649</ID></Title><Desc><Text>Meet Hiccup by Flight Club at the Training Grounds.</Text><ID>929894</ID></Desc></Data> + 0 + false + + + 341 + Task 1.2 Practice Gliding + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The first rule of Flight Club is to trust your dragon completely. I'll teach you the steps and show you how to glide. Enter the training tower when you're ready!</Text><ID>904655</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job!</Text><ID>904656</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGoodJob</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolPortal</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair></Objective><Type>Game</Type><Title><Text>Practice gliding in Flight Club</Text><ID>904653</ID></Title><Desc><Text>Practice gliding in the Flight Club.</Text><ID>922809</ID></Desc></Data> + 0 + false + + + 342 + Task 1.3 Return to the Headmaster + <Data><Type>Meet</Type><Title><Text>Return to the Headmaster</Text><ID>904657</ID></Title><Desc><Text>Return to the Headmaster.</Text><ID>904658</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904659</ID><NPC>PfDWHiccup</NPC><Text>I think you're starting to get the hang of dragon training. Head back to the Headmaster.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHiccup</NPC><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset></Offer><End><Type>Popup</Type><ID>904660</ID><NPC>PfDWHeadmaster</NPC><Text>Hiccup told me about amazing progress in Flight Club. Good job!</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset></End></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201092 + true + 10 + 10 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201092 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201092 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201092 + true + 50 + 50 + + 0 + +
+ false +
+ + 1055 + Quest_Edu #4 + 7 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hello, Viking! My friend Brunnhild the Beauty wants a pink rose for her husband. It's tough to find pink roses in the wild, but I have a solution. +If you bring me a red rose and a white rose, I can cross pollinate them to grow pink roses. @@ I will use a [c][3eebff]Punnet square[/c][ffffff] to predict what traits the new roses will have. Read your Field Guide for more information. Can you go to the forest and find me a white rose and a red rose?</Text><ID>920537</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Flowers</Text><ID>920535</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1168 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1055 + 1056 + 0 + + + 1 + 1055 + 345 + 0 + + + + 2 + 201104 + 0 + + 1056 + Quest_Edu #4.1 + 7 +

1055

+ <Data><Title><Text>Flowers</Text><ID>920535</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1056 + 343 + 0 + + + 1 + 1056 + 344 + 0 + + + + 2 + 0 + 0 + + 343 + Task 4.1.1 Collect Red Flower + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu04T04_1_1.unity3d/PfGrpQEdu04T04_1_1</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The phenotype of this rose is red! The phenotype is the appearance the rose's traits take on.</Text><ID>904177</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFloraMayDO.unity3d/DlgFloraMayPos01</Asset><NPC>PfDWBotanist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFlowerRed</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the red flower in Wilderness</Text><ID>904175</ID></Title><Desc><Text>Find a red rose in the Wilderness.</Text><ID>939167</ID></Desc></Data> + 0 + false + + + 344 + Task 4.1.2 Collect White Flower + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu04T04_1_2.unity3d/PfGrpQEdu04T04_1_2</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You found a white rose! It looks like this phenotype is white.</Text><ID>904180</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFloraMayDO.unity3d/DlgFloraMayPos04</Asset><NPC>PfDWBotanist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFlowerWhite</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the white flower in Wilderness</Text><ID>904178</ID></Title><Desc><Text>Find a white rose in the Wilderness.</Text><ID>939168</ID></Desc></Data> + 0 + false + + false + + + 345 + Task 4.2 Return to Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bring those back to me.</Text><ID>920873</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>They're beautiful! If I breed these together I can make a wonderful pink rose. @@ Genetic traits like flower color are inherited from parents, so it's possible we can get a mix between a red and white phenotype. That would make pink!</Text><ID>920874</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7989</Value></Pair><Pair><Key>ItemDescription</Key><Value>Red Flower</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7990</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Flower</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take flowers to Phlegma</Text><ID>920871</ID></Title><Desc><Text>Come back to Phlegma.</Text><ID>939169</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201104 + true + 10 + 10 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201104 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201104 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201104 + true + 200 + 200 + + 0 + +
+ false +
+ + 1057 + Quest_Story #1_3 + 6 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HatcheryINT02DO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_QStory1_3T01_1_NPCGobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Missing Viking</Text><ID>920456</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1016 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1057 + 346 + 0 + + + 1 + 1057 + 347 + 0 + + + 1 + 1057 + 399 + 0 + + + 1 + 1057 + 400 + 0 + + + 1 + 1057 + 402 + 0 + + + 1 + 1057 + 403 + 0 + + + + 1 + 201329 + 0 + + 346 + Task 1.1 Get to the Wilderness + <Data><Type>Visit</Type><Title><Text>Get to the Wilderness</Text><ID>904661</ID></Title><Desc><Text>Meet the trapped Viking in the Wilderness. You will need to glide to the cave and shoot the debris blocking the way.</Text><ID>904662</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904663</ID><NPC>PfDWHeadmaster</NPC><Text>We have a situation developing, {{Name}}. A Viking's trapped in the Wilderness in the cave called the Dragon's Maw! It's up to you to save him. @@ You'll need to glide across the Wilderness to the cave.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer03</Asset></Offer><End><Type>Popup</Type><ID>904664</ID><NPC>PfDWHeadmaster</NPC><Text>You can't just run over there and get him. You'll need glide over there! But before you go, let me teach you a few things. </Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset></End></Data> + 0 + false + + + 347 + Task 1.2 Get to the highest point + <Data><Type>Visit</Type><Title><Text>Get to the highest point</Text><ID>904665</ID></Title><Desc><Text>Get to the highest point. Take the rock path to the left of the Taxi and find the lit torches.</Text><ID>904666</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Wilderness_GlideLaunch</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair></Objective><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Wilderness_GlideLaunch</Location></Setup><Offer><Type>Popup</Type><ID>904667</ID><NPC>PfDWHeadmaster</NPC><Text>The highest point is the best place to glide with your dragon. Take the rock path to the left to get to a higher peak. </Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset></Offer><End><Type>Popup</Type><ID>904668</ID><NPC>PfDWHeadmaster</NPC><Text>Great! This has a pretty good view of the landing platform in the middle of the Wilderness. </Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset></End></Data> + 0 + false + + + 399 + Task 1.3 Mount your dragon + <Data><Type>Action</Type><Title><Text>Mount your dragon</Text><ID>904669</ID></Title><Desc><Text>{{Input}} on your dragon and select the Mount button. </Text><ID>904670</ID></Desc><AutoComplete><Pair><Key>Mounted</Key><Value>true</Value></Pair></AutoComplete><Objective><Pair><Key>Name</Key><Value>MountDragon</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904671</ID><NPC>PfDWHeadmaster</NPC><Text>Before you go, let's make sure you're mounted properly on {{dragon name}}. We don't want you to fall off or hurt your dragon! @@ {{Input}} on your dragon now and then {{input}} the Mount Button.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract01</Asset></Offer><End><Type>Popup</Type><ID>904672</ID><NPC>PfDWHeadmaster</NPC><Text>Good positioning and grip! You've been cleared for launch.</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralPos01</Asset></End></Data> + 0 + false + + + 400 + Task 1.4 Glide to the middle platform + <Data><Type>Visit</Type><Title><Text>Glide to the middle platform to the Signal</Text><ID>904673</ID></Title><Desc><Text>Glide over to the landing circle in the middle of the Wilderness. </Text><ID>904674</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Wilderness_GlideLanding_StraightArrow</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair></Objective><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Wilderness_GlideLanding_StraightArrow</Location></Setup><Offer><Type>Popup</Type><ID>904675</ID><NPC>PfDWHeadmaster</NPC><Text>See that signal on the landing circle across the Wilderness? That is your target. Press the {{input jump}} twice to get off the ground and glide across!</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset></Offer><End><Type>Popup</Type><ID>904676</ID><NPC>PfDWHeadmaster</NPC><Text>I'm proud of you! That was a good glide. </Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGenPraise02</Asset></End></Data> + 0 + false + + + 402 + Task 1.5 Glide to the cave and blast the rocks + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>There are two caves across from the landing circle. The Viking is trapped in the cave with the fallen tree and rocks blocking the entrance. Glide over there! @@ Once you land, {{input}} on the Fire Button to destroy the rocks.</Text><ID>904679</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralEncourage03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Oh {{greeting}}, my hero! You've saved me! That was some great gliding! Keep going! Once you reach Dragon Bond Level 10, you can start to fly on your dragon!</Text><ID>904680</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestStory1.unity3d/DlgGobberStory13T1End</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfCaveBlockerA</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfCaveBlockerA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Glide over to the cave and blast the rocks</Text><ID>904677</ID></Title><Desc><Text>Glide to the cave from the landing circle and {{input}} on the Fire button.</Text><ID>927221</ID></Desc></Data> + 0 + false + + + 403 + Task 1.6 Return to the Headmaster + <Data><Type>Meet</Type><Title><Text>Return to the Headmaster</Text><ID>904657</ID></Title><Desc><Text>Return to the Headmaster in the school.</Text><ID>904682</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904683</ID><NPC>PfDWGobber</NPC><Text>Okay, I'll come clean to you. This was just a test, and you passed with flying colors. Now you're ready for the next part of your training! Go back to Headmaster.</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWGobber</NPC><Asset>RS_DATA/DOQuestStory1.unity3d/DlgGobberStory13T2Offer</Asset></Offer><End><Type>Popup</Type><ID>904684</ID><NPC>PfDWHeadmaster</NPC><Text>I knew you would be able to handle it. Good job. Now I can entrust you with some more things.</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHeadmaster</NPC><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralPos04</Asset></End></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201329 + true + 10 + 10 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 201329 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201329 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201329 + true + 50 + 50 + + 0 + +
+ false +
+ + 1058 + Quest_Edu #10 + 7 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Watering Machine</Text><ID>920414</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1055 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1058 + 348 + 0 + + + 2 + 1058 + 1059 + 0 + + + 1 + 1058 + 352 + 0 + + + + 1 + 201105 + 0 + + 1059 + Quest_Edu #10.2 + 7 +

1058

+ <Data><Offer><Type>Popup</Type><ID>920413</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We can create a simple machine to help make Phlegma's work easier! We'll have to gather two key ingredients, a grooved wheel and leather straps, to make a pulley. @@ Also, we'll need some wood and Gobber's help. I marked them in your Journal!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1059 + 349 + 0 + + + 2 + 1059 + 1060 + 0 + + + 2 + 1059 + 1061 + 0 + + + + 1 + 0 + 0 + + 1060 + Quest_Edu #10.2.2 + 7 +

1059

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1060 + 350 + 0 + + + + 1 + 200630 + 0 + + 350 + Task 10.2.2 Collect 3 leather pieces + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Here, I hope you find it useful!</Text><ID>920633</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect 3 leather pieces from Phlegma</Text><ID>920631</ID></Title><Desc><Text>Collect 3 leather pieces from Phlegma.</Text><ID>922761</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 7999 + + 1 + 614 + 200630 + true + 3 + 3 + + 0 + +
+ false +
+ + 1061 + Quest_Edu #10.2.3 + 7 +

1059

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1061 + 351 + 0 + + + + 1 + 200631 + 0 + + 351 + Task 10.2.3 Collect wheel from Bucket + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I don't remember why I have a grooved wheel! You can take it. Mulch said you can use it to help guide the water to the greenhouse.</Text><ID>904190</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect wheel from Bucket</Text><ID>904188</ID></Title><Desc><Text>Collect a grooved wheel from Bucket at school.</Text><ID>904189</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8048 + + 1 + 615 + 200631 + true + 1 + 1 + + 0 + +
+ false +
+ + 349 + Task 10.2.1 Collect 20 wood logs + <Data><Type>Collect</Type><Title><Text>Collect 20 wood logs</Text><ID>904191</ID></Title><Desc><Text>Collect 20 wood logs from the small trees in the Wilderness.</Text><ID>904192</ID></Desc><Objective><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair></Objective><End><Type>Popup</Type><ID>904193</ID><NPC>PfDWBotanist</NPC><Text>Great. This must be the base of the machine!</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWBotanist</NPC><Asset>RS_DATA/DlgDWFloraMayDO.unity3d/DlgFloraMayPos04</Asset></End></Data> + 0 + false + + false + + + 348 + Task 10.1 Talk to Hiccup by Flight Club + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hi {{Name}}! I have a big problem. I am constantly watering plants and I have to lug pails back and forth. Is there something you can do to make my work easier? Maybe Hiccup has a good idea.</Text><ID>920636</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm. Interesting question, friend! I think a pulley system could be your solution!</Text><ID>920637</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup by Flight Club </Text><ID>905306</ID></Title><Desc><Text>Go see Hiccup by the Flight Club training tower.</Text><ID>929621</ID></Desc></Data> + 0 + false + + + 352 + Task 10.3 Deliver parts to Gobber by the Commons + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that we have all the parts, we'll need Gobber's help to put it all together! He is standing in front of the greenhouse at the Lookout.</Text><ID>904200</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>All right {{greeting}}, we created a [c][3eebff]simple pulley system[/c][ffffff] to solve our problem. See? We don't need anything complicated around here. Leave it to me!</Text><ID>904201</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7999</Value></Pair><Pair><Key>ItemDescription</Key><Value>Leather</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>8048</Value></Pair><Pair><Key>ItemDescription</Key><Value>Grooved Wheel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver parts to Gobber</Text><ID>904198</ID></Title><Desc><Text>Deliver the machine parts to Gobber in the school.</Text><ID>929622</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201105 + true + 10 + 10 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201105 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201105 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201105 + true + 200 + 200 + + 0 + +
+ false +
+ + 1062 + Quest_Lab #5 + 10 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dwindling Flames - Help!</Text><ID>920589</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1003 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1062 + 353 + 0 + + + 2 + 1062 + 1063 + 0 + + + 1 + 1062 + 358 + 0 + + + 2 + 1062 + 1066 + 0 + + + 1 + 1062 + 363 + 0 + + + + 2 + 201086 + 0 + + 1063 + Quest_Lab_Research #5.2 + 10 +

1062

+ <Data><Offer><Type>Popup</Type><ID>920587</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Lots of things are flammable and I think there's plenty of things to test in Berk! Let's gather some of the easier things to find. Fishlegs usually has lots of paper and Gobber uses coal in his smithy. You can find wood and oil in the Wilderness.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Material</Text><ID>920593</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1063 + 356 + 0 + + + 1 + 1063 + 357 + 0 + + + 2 + 1063 + 1064 + 0 + + + 2 + 1063 + 1065 + 0 + + + + 2 + 0 + 0 + + 1064 + Quest_Lab #5.2.1 + 10 +

1063

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1064 + 354 + 0 + + + + 2 + 200632 + 0 + + 354 + Task 5.2.1 Collect paper from Fishlegs in school + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Paper? Oh yeah! I have some. We usually don’t use it to make fire because it burns really fast. It's not worth the trouble, but you can try it. I hope it can make my poor baby happy!</Text><ID>904204</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect paper from Fishlegs at the Lookout</Text><ID>904202</ID></Title><Desc><Text>Collect paper from Fishlegs at the Lookout.</Text><ID>932722</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8011 + + 1 + 616 + 200632 + true + 1 + 1 + + 0 + +
+ false +
+ + 1065 + Quest_Lab #5.2.2 + 10 +

1063

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1065 + 355 + 0 + + + + 2 + 200633 + 0 + + 355 + Task 5.2.2 Collect coal from Gobber in Berk + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Coal is really important for a blacksmith since we use it to fuel the forge! I've got lots. You can have some!</Text><ID>904207</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber at the Hatchery</Text><ID>904205</ID></Title><Desc><Text>Find Gobber and get coal from him.</Text><ID>936391</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7982 + + 1 + 617 + 200633 + true + 1 + 1 + + 0 + +
+ false +
+ + 356 + Task 5.2.3 Gather wood from a tree in the Wilderne + <Data><End><Type>Popup</Type><ID>920972</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great work! You've gathered some firewood. We usually use this at our campfire, but we have to keep turning the logs to keep the flames going.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather wood from a tree in the Wilderness</Text><ID>920970</ID></Title><Desc><Text>Cut down a tree in the Wilderness and collect wood.</Text><ID>920971</ID></Desc></Data> + 0 + false + + + 357 + Task 5.2.4 Collect oil from the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQExp5T05_2_4.unity3d/PfGrpQExp5T05_2_4</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Nice, you found some! Burning oil smells a little strange because it constantly releases gas!</Text><ID>920975</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOil</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect oil from the Wilderness</Text><ID>920973</ID></Title><Desc><Text>Collect oil from the Wilderness.</Text><ID>936681</ID></Desc></Data> + 0 + false + + false + + + 1066 + Quest_Lab_Experiment #5.3 + 10 +

1062

+ <Data><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1066 + 359 + 0 + + + 1 + 1066 + 360 + 0 + + + 1 + 1066 + 361 + 0 + + + 1 + 1066 + 362 + 0 + + + + 2 + 0 + 0 + + 359 + Task 5.3.1 Set fire to paper + <Data><Type>Action</Type><Title><Text>Set fire to paper</Text><ID>904214</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnPaper</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 360 + Task 5.3.2 Set fire to wood + <Data><Type>Action</Type><Title><Text>Set fire to wood</Text><ID>904216</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnWood</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 361 + Task 5.3.3 Set fire to coal + <Data><Type>Action</Type><Title><Text>Set fire to coal</Text><ID>904218</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnCoal</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 362 + Task 5.3.4 Set fire to oil + <Data><Type>Action</Type><Title><Text>Set fire to oil</Text><ID>904220</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>BurnOil</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + false +
+ + 353 + Task 5.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><ID>920978</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh my gosh, I think Meatlug might be getting sick! She sits around a lot, and she wouldn’t even eat her favorite sedimentary rocks. Hiccup tells me I shouldn’t worry, but I want to help her any way I can! @@ I know my dragon would love it if I created a large, warm fire for her. Oh, oh – but I don’t know what I should use as fuel to keep the fire burning. Can you talk to Heather and find out? Hurry! I’m so worried!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920979</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I hope Meatlug is okay! Well, let's see if we can help. Let's get started!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather by her lab.</Text><ID>920977</ID></Desc></Data> + 0 + false + + + 358 + Task 5.2.5 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>920982</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now you're ready to come back to The Lab. Bring the materials you collected, and we'll use the information to form a hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920902</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Let's go into The Lab and do our experiment! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis05.unity3d/PfUiHypothesis05</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Choose a hypothesis then enter The Lab.</Text><ID>920981</ID></Desc></Data> + 0 + false + + + 363 + Task 5.4 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Based on your results, your hypothesis was proven {{result}}. Burning things is fun! Thanks for letting me be a part of that. Take what you learned back to Fishlegs!</Text><ID>920986</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, thank goodness! Now I need to find a place where I can keep things burning for a long time. Thank you so much for your help, {{Name}}. Meatlug is going to love it!</Text><ID>920987</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Conclusion</Key><Value>Your hypothesis was:@@ [c][3eebff]{{hypothesis}}[/c][ffffff]@@ Looking at your results you can see that you proved your hypothesis to be [c][3eebff]{{result}}.[/c][ffffff]</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>8011</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>7982</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Return to Fishlegs.</Text><ID>939181</ID></Desc></Data> + 0 + false + + + 20 +

2

+ 0 + + 1 + 20 + 201086 + true + 20 + 20 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201086 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201086 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201086 + true + 200 + 200 + + 0 + +
+ false +
+ + 1067 + Quest_Lab #9 + 3 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Shiny New Trophies</Text><ID>920583</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1062 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1067 + 368 + 0 + + + 2 + 1067 + 1068 + 0 + + + 1 + 1067 + 373 + 0 + + + 2 + 1067 + 1073 + 0 + + + 1 + 1067 + 378 + 0 + + + + 2 + 201085 + 0 + + 1068 + Quest_Lab_Research #9.2 + 3 +

1067

+ <Data><Offer><Type>Popup</Type><ID>920581</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That sounds like a fun experiment to test! Let's gather some different metals from our friends.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Material</Text><ID>920593</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 2 + 1068 + 1069 + 0 + + + 2 + 1068 + 1070 + 0 + + + 2 + 1068 + 1071 + 0 + + + 2 + 1068 + 1072 + 0 + + + + 2 + 0 + 0 + + 1069 + Quest_Lab #9.2.1 + 3 +

1068

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1069 + 369 + 0 + + + + 2 + 200634 + 0 + + 369 + Task 9.2.1 Collect iron from Hiccup + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I have a lot of iron to spare. I never know when I might need to fix some of my gadgets! You can have as much as you want.</Text><ID>904236</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGreat</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect iron from Hiccup</Text><ID>904234</ID></Title><Desc><Text>Talk to Hiccup and get Iron from him.</Text><ID>922794</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7997 + + 1 + 618 + 200634 + true + 1 + 1 + + 0 + +
+ false +
+ + 1070 + Quest_Lab #9.2.2 + 3 +

1068

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1070 + 370 + 0 + + + + 2 + 200635 + 0 + + 370 + Task 9.2.2 Collect gold from Fishlegs by the boat + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, oh! I know this nugget is real gold, because it felt soft when I bit it! You can have it for your experiment.</Text><ID>904239</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect gold from Fishlegs at the Lookout</Text><ID>904237</ID></Title><Desc><Text>Talk to Fishlegs at the Lookout and get gold from him.</Text><ID>922795</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7991 + + 1 + 619 + 200635 + true + 1 + 1 + + 0 + +
+ false +
+ + 1071 + Quest_Lab #9.2.3 + 3 +

1068

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1071 + 371 + 0 + + + + 2 + 200636 + 0 + + 371 + Task 9.2.3 Collect silver from Stoick by the Great + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I picked up these silver rocks from an old mate of mine back when I was dragon trapping. You can have some.</Text><ID>904242</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get silver from Eret at the Training Grounds</Text><ID>904240</ID></Title><Desc><Text>Get silver from Eret by the docks at the Training Grounds.</Text><ID>929767</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8022 + + 1 + 620 + 200636 + true + 1 + 1 + + 0 + +
+ false +
+ + 1072 + Quest_Lab #9.2.4 + 3 +

1068

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1072 + 372 + 0 + + + + 2 + 200637 + 0 + + 372 + Task 9.2.4 Collect tin from Gobber in Berk + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_MalaFF</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can have as much tin as you can carry, since it's really light! It's an alloy! Here you go.</Text><ID>904245</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect tin from Gobber at the Training Grounds</Text><ID>904243</ID></Title><Desc><Text>Talk to Gobber at the Training Grounds.</Text><ID>932723</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8026 + + 1 + 621 + 200637 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 1073 + Quest_Lab_Experiment #9.4 + 3 +

1067

+ <Data><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1073 + 374 + 0 + + + 1 + 1073 + 375 + 0 + + + 1 + 1073 + 376 + 0 + + + 1 + 1073 + 377 + 0 + + + + 2 + 0 + 0 + + 374 + Task 9.4.1 Heat up Iron + <Data><Type>Action</Type><Title><Text>Heat up iron</Text><ID>904246</ID></Title><Desc><Text>Enter The Lab behind the school to melt the iron.</Text><ID>904247</ID></Desc><Objective><Pair><Key>Name</Key><Value>MeltIron</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 375 + Task 9.4.2 Heat up Gold + <Data><Type>Action</Type><Title><Text>Heat up gold</Text><ID>904248</ID></Title><Desc><Text>Enter The Lab behind the school to melt the gold.</Text><ID>904249</ID></Desc><Objective><Pair><Key>Name</Key><Value>MeltGold</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 376 + Task 9.4.3 Heat up Silver + <Data><Type>Action</Type><Title><Text>Heat up silver</Text><ID>904250</ID></Title><Desc><Text>Enter The Lab behind the school to melt the silver.</Text><ID>904251</ID></Desc><Objective><Pair><Key>Name</Key><Value>MeltSilver</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 377 + Task 9.4.4 Heat up Tin + <Data><Type>Action</Type><Title><Text>Heat up tin</Text><ID>904252</ID></Title><Desc><Text>Enter The Lab behind the school to melt the tin.</Text><ID>904253</ID></Desc><Objective><Pair><Key>Name</Key><Value>MeltTin</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + false +
+ + 368 + Task 9.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Spitelout doesn't like the lead trophies I made for him. He says they're too heavy and keeps grunting "Oi! Oi! Oi!" at me! He wants me to start over again and make new ones. @@ I'm too tired to make another set of trophies today. Can you figure out the easiest metal to work with? I'll need the one with the [c][3eebff]lowest melting point.[/c][ffffff] Talk to the Alchemist by The Lab!</Text><ID>920960</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hi {{Name}}, it's great to see you again! Are you ready for another science adventure?</Text><ID>920961</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Alchemist by The Lab</Text><ID>920958</ID></Title><Desc><Text>Talk to the Alchemist by her lab at the school.</Text><ID>929768</ID></Desc></Data> + 0 + false + + + 373 + Task 9.3 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>920964</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now you're ready to come back to The Lab. Bring the materials you collected and we'll use the information to form a hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920965</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Now, let's get inside The Lab and have some fun.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis09.unity3d/PfUiHypothesis09</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Talk to the Alchemist and choose a hypothesis.</Text><ID>920963</ID></Desc></Data> + 0 + false + + + 378 + Task 9.5 Quest_Lab_Conclusion + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Based on your results, you proved your hypothesis to be {{result}}. Tin has the lowest melting point and would melt the quickest so Gobber can complete these trophies. </Text><ID>920968</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>So I had the metal I wanted all along, huh? Tin medallions will be a cinch to make! Thanks, {{greeting}}!</Text><ID>920969</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Conclusion</Key><Value>Your hypothesis was:@@ [c][3eebff]{{hypothesis}}[/c][ffffff]@@ Looking at your results you can see that you proved your hypothesis to be [c][3eebff]{{result}}.[/c][ffffff]</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>7997</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>7991</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8022</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8026</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Title><Desc><Text>Return to Gobber with your findings.</Text><ID>939183</ID></Desc></Data> + 0 + false + + + 20 +

2

+ 0 + + 1 + 20 + 201085 + true + 20 + 20 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201085 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201085 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201085 + true + 200 + 200 + + 0 + +
+ false +
+ + 1074 + Quest 18 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dragon Transformation</Text><ID>920457</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 4 + 8,10 + 0 + true + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1074 + 390 + 0 + + + + 1 + 201095 + 0 + + 390 + Task 18.1 Enter the Hatchery + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, your bond with your dragon is getting even closer! I think {{dragon name}} is ready to grow older. Go to the Hatchery and stand in front of the Dragon Hearth. Your dragon will use that heat to shed skin and grow. You can go back there whenever any of your dragons reach Rank 10!</Text><ID>904687</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfHatcheryINTLavaFlow</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Dragon Hearth in the Hatchery to evolve your dragon</Text><ID>904685</ID></Title><Desc><Text>Enter the Hatchery with your rank 10 dragon then approach the pool of lava in the middle of the cave.</Text><ID>929513</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201095 + true + 50 + 50 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 201095 + true + 50 + 50 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 201095 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201095 + true + 50 + 50 + + 0 + +
+ false +
+ + 1085 + Quest Teen 1 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Loom and Doom!</Text><ID>920546</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1121 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1085 + 406 + 0 + + + 1 + 1085 + 407 + 0 + + + 1 + 1085 + 408 + 0 + + + 2 + 1085 + 1086 + 0 + + + 2 + 1085 + 1087 + 0 + + + 2 + 1085 + 1088 + 0 + + + 1 + 1085 + 412 + 0 + + + + 2 + 201331 + 0 + + 1086 + Quest Teen 1.4 + 4 +

1085

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Tuffnut and get two weights</Text><ID>920543</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1086 + 409 + 0 + + + + 2 + 201113 + 0 + + 409 + Task 1.4 Talk to Tuffnut by his house in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Warp will not stay down on its own and needs to be weighted. We need to tie something to the bottom. @@ Ruffnut and Tuffnut were throwing things at each other earlier that looked like weights. Talk to Tuffnut at Dragon's Edge and get two weights from him. </Text><ID>904296</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hiccup said what? I need these weights to play 'rock to the face.' I love 'rock to the face'! +Fine. I guess I can find more rocks elsewhere.</Text><ID>904297</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutGenNoThanks</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Collect two weights from Tuffnut.</Text><ID>936349</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 8299 + + 1 + 734 + 201113 + true + 2 + 2 + + 0 + +
+ false + + + 1087 + Quest Teen 1.5 + 4 +

1085

+ <Data><Title><Text>Talk to Ruffnut and get two weights</Text><ID>920544</ID></Title><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1087 + 410 + 0 + + + + 2 + 201112 + 0 + + 410 + Task 1.5 Talk to Ruffnut by her house in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You have to take Ruffnut's weights too. She can't enjoy hers if I can't enjoy mine.</Text><ID>904300</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutInsult01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>They need my weights for the loom? Okay, you can have them. Tuffnut didn't want to give up his weights? What a goof.</Text><ID>904301</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Collect two weights from Ruffnut. </Text><ID>936350</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 8299 + + 1 + 733 + 201112 + true + 2 + 2 + + 0 + +
+ false +
+ + 1088 + Quest Teen 1.6 + 4 +

1085

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Get the frame from Phlegma</Text><ID>920907</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1088 + 411 + 0 + + + + 2 + 201012 + 0 + + 411 + Task 1.6 Get the frame from the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hello, student! I just completed the loom frame. Please come see me to get it. </Text><ID>920909</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This was a doozy, but it was fun!</Text><ID>920910</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get the frame from Phlegma</Text><ID>920907</ID></Title><Desc><Text>Collect the loom frame from Phlegma at the Lookout.</Text><ID>922716</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8272 + + 1 + 650 + 201012 + true + 1 + 1 + + 0 + +
+ false +
+ + 406 + Task 1.1 Chop wood for the loom frame + <Data><Type>Collect</Type><Title><Text>Chop wood for the loom frame</Text><ID>904306</ID></Title><Desc><Text>Chop the small trees in the Wilderness and get six logs.</Text><ID>904307</ID></Desc><Objective><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904308</ID><NPC>PfDWHiccup</NPC><Text>I know you're really busy, but I need to take you away from your lessons. The loom that we use to teach cloth weaving broke. @@ We can't hold class until we fix it! I'll need your help to get the parts together. I need wood for the frame. Can you go to the Wilderness and collect six logs?</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWHiccup</NPC><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset></Offer><End><Type>Popup</Type><ID>904309</ID><NPC>PfDWHiccup</NPC><Text>That's great! Those logs look sturdy and strong.</Text><Asset>PfUiMissionActionDBDO</Asset></End><End><Type>VO</Type><NPC>PfDWHiccup</NPC><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset></End></Data> + 0 + false + + + 407 + Task 1.2 Take the wood to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Take these wood pieces to Phlegma; she does woodworking as a hobby. She can make the frame from those logs.</Text><ID>920913</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>What a fun project! Give me some time and I can make a frame for you.</Text><ID>920914</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the wood to Phlegma</Text><ID>920911</ID></Title><Desc><Text>Bring the logs to Phlegma at the Lookout.</Text><ID>922717</ID></Desc></Data> + 0 + false + + + 408 + Task 1.3 Get the yarn by Thunder Run Racing + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQHiTeen01T03.unity3d/PfGrpQHiTeen01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>While Phlegma works on the frame, we'll need to find a bundle of lengthwise yarn called a [c][3eebff]Warp[/c][ffffff]. I think I saw some near the greenhouse. Go find it now.</Text><ID>920917</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Whew! I wasn't sure it would still be there. </Text><ID>920918</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRope</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the yarn by the greenhouse</Text><ID>920915</ID></Title><Desc><Text>Collect the yarn by the greenhouse in the Lookout.</Text><ID>922835</ID></Desc></Data> + 0 + false + + + 412 + Task 1.7 Take the loom parts to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This loom is going to be better than the original. Please bring all those parts to me! </Text><ID>904320</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job! Gobber can put it together so you can get back to some fun lessons.</Text><ID>904321</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8272</Value></Pair><Pair><Key>ItemDescription</Key><Value>Loom Frame</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8299</Value></Pair><Pair><Key>ItemDescription</Key><Value>Loom Stone</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8274</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rope</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the loom parts to Hiccup</Text><ID>904318</ID></Title><Desc><Text>Bring all the loom parts back to Hiccup by the Flight Club training tower.</Text><ID>929576</ID></Desc></Data> + 0 + false + + + 15 +

2

+ 0 + + 1 + 9 + 201331 + true + 15 + 15 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201331 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201331 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201331 + true + 50 + 50 + + 0 + +
+ false +
+ + 1089 + Quest_Edu 14: Food Chain + 8 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_BondingArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Learn about the Food Chain</Text><ID>920538</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1171 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1089 + 418 + 0 + + + 1 + 1089 + 419 + 0 + + + 1 + 1089 + 420 + 0 + + + 1 + 1089 + 421 + 0 + + + + 2 + 201324 + 0 + + 418 + Task 14.1 Talk to the Botanist + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_ArchaeologistSchool</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Now that you’re a fishing pro, I’m sure you’ll be coming around the waters here more often. You’ll come across many animals and plants, so you should be familiar with how the food chain works! Go talk to Phlegma.</Text><ID>920877</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You're interested in plants? Good!</Text><ID>920878</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Meet Phlegma at the school.</Text><ID>929641</ID></Desc></Data> + 0 + false + + + 419 + Task 14.2 Meet Ruffnut + <Data><Offer><Type>Popup</Type><ID>920881</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Most food chains start with plants. Well…technically, the sun. Sunlight is important for plants to make their own food for energy. That’s why my Greenhouse has a sunroof! @@ Talk to Ruffnut by the Hatchery to see if she knows about the algae plants in the lake!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920882</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hey!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutHello02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Ruffnut</Text><ID>920879</ID></Title><Desc><Text>Meet Ruffnut outside the Hatchery in school.</Text><ID>920880</ID></Desc></Data> + 0 + false + + + 420 + Task 14.3 Meet Mulch + <Data><Type>Meet</Type><Title><Text>Meet Mulch</Text><ID>904696</ID></Title><Desc><Text>Meet Mulch by the lake behind The Lab.</Text><ID>904697</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Offer><Type>Popup</Type><ID>904698</ID><NPC>PfDWRuffnut</NPC><Text>Of course I know about algae! It kind of stinks sometimes, but the mosquitoes love it. Yuck! The males are herbivores; they only eat plants. The females are omnivores; they feed off of plants and animals. @@ If you go to the lake, you’ll see the fish jumping! Mulch knows more about that!</Text><Asset>PfUiMissionActionDBDO</Asset></Offer><Offer><Type>VO</Type><NPC>PfDWRuffnut</NPC><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset></Offer><End><Type>Popup</Type><ID>904699</ID><NPC>PfDWMulch</NPC><Text>Nice to see you back, {{Name}}.</Text><Asset>PfUiMissionActionDBDO</Asset></End></Data> + 0 + false + + + 421 + Task 14.4 Catch a fish + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>The fish are really active out there today eating those mosquitoes. The funny thing is, fish also eat breadcrumbs and worms. That’s why we can use those things as bait. @@ Fish are omnivores because they eat both plants and animals. Now why don't you go catch a fish?</Text><ID>904702</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>There you go! Once you feed this fish to your dragon, this food chain will be complete! </Text><ID>904703</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>PfFish</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch a fish</Text><ID>922104</ID></Title><Desc><Text>Catch a fish for your dragon.</Text><ID>933197</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201324 + true + 10 + 10 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201324 + true + 100 + 100 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201324 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201324 + true + 200 + 200 + + 0 + +
+ false +
+ + 1090 + Quest_Teen Workout Warrior + 12 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Maximum Viking Power!</Text><ID>920458</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1110 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1090 + 3446 + 0 + + + 1 + 1090 + 3447 + 0 + + + 1 + 1090 + 422 + 0 + + + 1 + 1090 + 3448 + 0 + + + + 2 + 201118 + 0 + + 422 + WW3: Play Flight Club + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>An important part of training is flying through the sky with our dragons! We'll teach you how to get the most speed out of your dragons in Flight Club. Enter the building next to me to get started!</Text><ID>904706</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuest1.unity3d/DlgHiccupQHelpOffer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Whew! Did you feel the burn? </Text><ID>904707</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolPortal</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Attend a lesson in Flight Club</Text><ID>904704</ID></Title><Desc><Text>Complete a lesson in Flight Club.</Text><ID>929898</ID></Desc></Data> + 0 + false + + + 3446 + WW1: Fireball Frenzy + <Data><Offer><Type>Popup</Type><ID>929901</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Listen up, new kid. You might think you're the hottest dragon trainer to hit this side of the archipelago... but it doesn't matter until Snotlout gives his seal of approval. I need to see you and your dragon work as one in our obstacle course. Enter Fireball Frenzy next to me and show me what you got!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929902</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I love that!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Enter Fireball Frenzy</Text><ID>929899</ID></Title><Desc><Text>Enter Fireball Frenzy.</Text><ID>922807</ID></Desc></Data> + 0 + false + + + 3447 + WW2: Talk to Hiccup + <Data><Offer><Type>Popup</Type><ID>929905</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I mean... not bad for a newbie. +You're not in the clear yet! You need to show me that you can fly your dragon through some intense courses. Follow the quest arrow and talk to Hiccup!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929906</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Don't let Snotlout get inside your head, {{Name}}. This is kind of his weird way of showing affection.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup by Flight Club.</Text><ID>929904</ID></Desc></Data> + 0 + false + + + 3448 + WW4: Talk to Snotlout + <Data><Offer><Type>Popup</Type><ID>929909</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You aced it, pal! Your scores would satisfy even Astrid, so I'm sure Snotlout won't have any objections. Go back to Snotlout and tell him how you did.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929910</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Pretty great! Okay, okay... it looks like I won't have to take care of you after all. That's an impressive score, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201118 + true + 10 + 10 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201118 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201118 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201118 + true + 50 + 50 + + 0 + +
+ false +
+ + 1091 + Quest_Edu #6 + 13 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I can't prank a lot of people because they can see me coming. Fishlegs is always talking about this camouflage dragon that changes it's skin to blend in, and there's this other one that mimics a flower to lure in prey. @@ That gave me a great idea! I could blend in with my surroundings too! Gather the stuff I need to make it, will you? I'll need twigs, grass, and dirt from the Wilderness.</Text><ID>920424</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Hiding in Plain Sight</Text><ID>920423</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1057 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1091 + 1092 + 0 + + + 1 + 1091 + 429 + 0 + + + + 1 + 201120 + 0 + + 1092 + Quest_Edu #6.1 + 13 +

1091

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1092 + 426 + 0 + + + 1 + 1092 + 427 + 0 + + + 1 + 1092 + 428 + 0 + + + + 1 + 0 + 0 + + 426 + Task 6.1.1 Collect twigs in the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu6T01.unity3d/PfGrpQEdu6T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Oh, sweet! These twigs will help me blend into the Wilderness! Lots of animals look like things in their habitat to remain hidden from predators.</Text><ID>904324</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWTwigs</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect twigs in the Wilderness</Text><ID>904322</ID></Title><Desc><Text>Collect twigs in the Wilderness.</Text><ID>939170</ID></Desc></Data> + 0 + false + + + 427 + Task 6.1.2 Collect grass in the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu6T02.unity3d/PfGrpQEdu6T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Can you imagine the look on Snotlout's face when I pop out of the brush? He'll never see me coming! </Text><ID>904327</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWGrass</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect grass in the Wilderness</Text><ID>904325</ID></Title><Desc><Text>Collect grass in the Wilderness.</Text><ID>939171</ID></Desc></Data> + 0 + false + + + 428 + Task 6.1.3 Collect dirt in the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu6T03.unity3d/PfGrpQEdu6T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Since I can't actually change my skin color like some animals, this dirt will be perfect to put on and blend in to the dirty ground. It's all coming together!</Text><ID>904330</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestEdu6.unity3d/DlgRuffnutEdu6T1End</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDirt</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect dirt in the Wilderness</Text><ID>904328</ID></Title><Desc><Text>Collect dirt in the Wilderness.</Text><ID>939172</ID></Desc></Data> + 0 + false + + false + + + 429 + Task 6.2 Return to Ruffnut in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Come on, come on! I can't wait to get started! Give me the goods!</Text><ID>904333</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestEdu6.unity3d/DlgRuffnutEdu6T4Offer</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>This rocks so much! We'll be able to blend right in to the background by smearing this on us. I'm so excited!</Text><ID>904334</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestEdu6.unity3d/DlgRuffnutEdu6T4End</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8027</Value></Pair><Pair><Key>ItemDescription</Key><Value>Twigs</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>7992</Value></Pair><Pair><Key>ItemDescription</Key><Value>Grass</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>7985</Value></Pair><Pair><Key>ItemDescription</Key><Value>DirtPatch</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Ruffnut</Text><ID>905021</ID></Title><Desc><Text>Return to Ruffnut.</Text><ID>936370</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201120 + true + 10 + 10 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201120 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201120 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201120 + true + 200 + 200 + + 0 + +
+ false +
+ + 1093 + Quest_Edu_#15 + 10 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I could go on and on about dragons with my incredible dragon knowledge, but right now Meatlug needs to recharge her shots! Can you bring me three types of rocks please? 2 of each. Wait! No, 3 of each! @@ That should do it! She's a gourmand and she likes a variety of rocks for her diet. You'll find great ones at the Wilderness.</Text><ID>920427</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Gronckle Rocks</Text><ID>920426</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1111 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1093 + 1094 + 0 + + + 1 + 1093 + 433 + 0 + + + + 1 + 201116 + 0 + + 1094 + Quest_Edu_#15.1 + 10 +

1093

+ <Data><Title><Text>Collect the rocks</Text><ID>920425</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1094 + 430 + 0 + + + 1 + 1094 + 431 + 0 + + + 1 + 1094 + 432 + 0 + + + + 1 + 0 + 0 + + 430 + Task 15.1.1 Collect metamorphic rocks in Berk + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu15T01.unity3d/PfGrpQEdu15T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>When sedimentary and igneous rocks are exposed to extreme pressure or heat, they completely change! They become more compacted. These are called metamorphic rocks. @@ Meatlug's fireballs burn brighter when she eats them.</Text><ID>904337</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos04</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockMetamorphic</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect metamorphic rocks at the Wilderness</Text><ID>904335</ID></Title><Desc><Text>Collect 3 metamorphic rocks.</Text><ID>936373</ID></Desc></Data> + 0 + false + + + 431 + Task 15.1.2 Collect igneous rocks in Berk + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu15T02.unity3d/PfGrpQEdu15T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Igneous rocks are formed when melted rock cools and solidifies. When Meatlug's fireball blasts cool, they form igneous rocks!</Text><ID>904340</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockIgneous</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect igneous rocks in the Wilderness</Text><ID>904338</ID></Title><Desc><Text>Collect 3 igneous rocks.</Text><ID>936374</ID></Desc></Data> + 0 + false + + + 432 + Task 15.1.3 Collect sedimentary rocks in Berk + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu15T03.unity3d/PfGrpQEdu15T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sedimentary rocks are formed when fragments of rocks, minerals, or animal or plant material accumulate over time. Meatlug loves eating these rocks because they go down smooth!</Text><ID>904343</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSedimentary</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect sedimentary rocks in the Wilderness</Text><ID>904341</ID></Title><Desc><Text>Collect 3 sedimentary rocks.</Text><ID>936375</ID></Desc></Data> + 0 + false + + false + + + 433 + Task 15.2 Deliver rocks to Fishlegs by his house + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Bring all of those rocks back to me please!</Text><ID>904346</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, you never cease to amaze me! You rock! Get it? You "rock" because you just collected rocks! Oh, never mind. Thanks!</Text><ID>904347</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsGenPraise02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>8298</Value></Pair><Pair><Key>ItemDescription</Key><Value>Igneous Rock</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>8297</Value></Pair><Pair><Key>ItemDescription</Key><Value>Metamorphic Rock</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>8296</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sedimentary Rock</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver rocks to Fishlegs at the Lookout</Text><ID>904344</ID></Title><Desc><Text>Deliver all the rocks to Fishlegs.</Text><ID>936376</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201116 + true + 10 + 10 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201116 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201116 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201116 + true + 200 + 200 + + 0 + +
+ false +
+ + 1095 + Quest_Edu_#16 + 7 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_Botanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Highs and Lows</Text><ID>920459</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1097 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1095 + 434 + 0 + + + 1 + 1095 + 435 + 0 + + + 1 + 1095 + 436 + 0 + + + 1 + 1095 + 437 + 0 + + + 1 + 1095 + 438 + 0 + + + 1 + 1095 + 439 + 0 + + + 1 + 1095 + 440 + 0 + + + + 1 + 201115 + 0 + + 434 + Task 16.1 Collect the thermometer on the beach + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEdu16T01.unity3d/PfGrpQEdu16T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I love my new place here at the School of Dragons! It's such an exciting island. The [c][3eebff]climate[/c][ffffff], or the general weather, seems to be on the chilly side. @@ Let's see how the climate is measuring up today. I left a thermometer on the beach to measure the temperature. Please get it for me.</Text><ID>920668</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Perfect! The thermometer is working!</Text><ID>920669</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWThermometer</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the thermometer from the beach</Text><ID>920666</ID></Title><Desc><Text>Find the thermometer on the beach in the school.</Text><ID>939177</ID></Desc></Data> + 0 + false + + + 435 + Task 16.2 Deliver the thermometer + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Since oceans are always at sea level, the temperatures always seem to be warmer. Please bring the thermometer up to me.</Text><ID>920672</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>It's just as I expected. The weather is quite warm for this time of year. The climate is usually a bit colder.</Text><ID>920673</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8300</Value></Pair><Pair><Key>ItemDescription</Key><Value>Thermometer</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver thermometer to Phlegma</Text><ID>920670</ID></Title><Desc><Text>Deliver the thermometer to Phlegma at the school. </Text><ID>929646</ID></Desc></Data> + 0 + false + + + 436 + Task 16.3 Collect the thermometer + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEdu16T02.unity3d/PfGrpQEdu16T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We need to check the thermometer at a higher elevation. Higher elevations tend to have colder temperatures, so make sure you take a jacket! You might have to fly on your dragon to get it. Head up to the highest peak here at the school.</Text><ID>920676</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great job! It's a bit chillier up here!</Text><ID>920677</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWThermometer</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the thermometer from the highest peak</Text><ID>920674</ID></Title><Desc><Text>Collect the thermometer up at the highest elevation in the school.</Text><ID>939178</ID></Desc></Data> + 0 + false + + + 437 + Task 16.4 Deliver the thermometer + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>It's cooler up there because of its elevation. Temperature usually decreases by one degree Celsius for every 100 meters in altitude. +Bring that thermometer and its readings back to me so I can mark it down.</Text><ID>920680</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The further a location is from the equator, the cooler its climate will be. Berk is pretty far north of the equator. That's one reason why Berk is extremely cold with long winters and short warm summers!</Text><ID>920681</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8300</Value></Pair><Pair><Key>ItemDescription</Key><Value>Thermometer</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver thermometer to Phlegma</Text><ID>920670</ID></Title><Desc><Text>Deliver the thermometer to Phlegma at the school. </Text><ID>929646</ID></Desc></Data> + 0 + false + + + 438 + Task 16.5 Collect the thermometer + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQEdu16T03.unity3d/PfGrpQEdu16T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We need some comparison data. Go to the Training Grounds and find the thermometer from the beach.</Text><ID>920684</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great, you found the thermometer! Please read it to me.</Text><ID>920685</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWThermometer</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the thermometer on the beach at the Training Grounds</Text><ID>920682</ID></Title><Desc><Text>Collect the thermometer on the beach in the Training Grounds.</Text><ID>936378</ID></Desc></Data> + 0 + false + + + 439 + Task 16.6 Collect the thermometer + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQEdu16T04.unity3d/PfGrpQEdu16T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The beach here is at about the same temperature as the beach at school. They are both at sea level and they have a similar climate. @@ Now, there's one more thermometer out there. Get to the highest elevation at the Training Grounds!</Text><ID>920688</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Wow! There's some ice on it. It's really cold up here because the elevation is so high.</Text><ID>920689</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWThermometer</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the thermometer from the highest peak</Text><ID>920674</ID></Title><Desc><Text>Collect the thermometer up at the highest elevation.</Text><ID>936379</ID></Desc></Data> + 0 + false + + + 440 + Task 16.7 Deliver the thermometers + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bring those thermometers back to be me at school. I want my equipment back so I can do some more testing!</Text><ID>920692</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You're an amazing help to me and my plants. Knowing the climate here will help me predict the weather conditions and when and where to plant! Thank you, student!</Text><ID>920693</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8300</Value></Pair><Pair><Key>ItemDescription</Key><Value>Thermometer</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the thermometers to Phlegma</Text><ID>920690</ID></Title><Desc><Text>Deliver the two thermometers to Phlegma at the school. </Text><ID>936380</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201115 + true + 10 + 10 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201115 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201115 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201115 + true + 200 + 200 + + 0 + +
+ false +
+ + 1096 + Quest_Teen 2 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The very best friend!</Text><ID>920562</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1085 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1096 + 441 + 0 + + + 1 + 1096 + 442 + 0 + + + 1 + 1096 + 443 + 0 + + + 1 + 1096 + 444 + 0 + + + + 2 + 201119 + 0 + + 441 + Task 2.1 collect 15 flowers + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQTeenHic02T01.unity3d/PfGrpQTeenHic02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless is my best friend; the very first time I looked at him, I saw myself. I knew it would be just me and him forever. That's the bond you and your dragon need to make. You should trust {{dragon name}} as much as you do yourself. @@ How about some bonding exercises? Ride {{dragon name}} and collect the scented flowers around the school. Dragons love the smell!</Text><ID>904750</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupToothless01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That was amazing and some great team work! </Text><ID>904751</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>PfCollectDWFlower02</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Collect</Type><Title><Text>Work with your dragon to collect 12 flowers</Text><ID>904748</ID></Title><Desc><Text>Collect 12 scented flowers around the school.</Text><ID>922953</ID></Desc></Data> + 0 + false + + + 442 + Task 2.2 Play with your dragon + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now it's time to reward your dragon with food. {{Input}} on {{dragon name}} and give them a fish!</Text><ID>920940</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupDragonPlay</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that's one happy dragon!</Text><ID>920941</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAllRight</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>Peteat</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed your dragon</Text><ID>939855</ID></Title><Desc><Text>{{Input}} on your dragon and feed them.</Text><ID>941128</ID></Desc></Data> + 0 + false + + + 443 + Task 2.3 Play Fireball Frenzy + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's time to set things on fire! Go play Fireball Frenzy to let your dragon blow off a little steam! </Text><ID>904758</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Pretty good score, {{Name}}. That was some pretty impressive shooting! </Text><ID>904759</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Fireball Frenzy</Text><ID>922490</ID></Title><Desc><Text>Let your dragon have some fun in Fireball Frenzy.</Text><ID>922814</ID></Desc></Data> + 0 + false + + + 444 + Task 2.4 Deliver flowers to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We don't want those scented flowers to go to waste. Phlegma uses them to soothe upset dragons. Take these to her so she can help other dragons!</Text><ID>920944</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you for bringing me these flowers. We'll have some very delighted dragons! </Text><ID>920945</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8301</Value></Pair><Pair><Key>ItemDescription</Key><Value>Hibiscus</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver flowers to Phlegma</Text><ID>920942</ID></Title><Desc><Text>Bring the flowers to Phlegma at the Lookout.</Text><ID>936577</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201119 + true + 10 + 10 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201119 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201119 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201119 + true + 50 + 50 + + 0 + +
+ false +
+ + 1099 + Quest_Edu #11 + 8 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Batten down the hatches!</Text><ID>920429</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1167 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1099 + 1100 + 0 + + + 1 + 1099 + 451 + 0 + + + 1 + 1099 + 452 + 0 + + + 1 + 1099 + 453 + 0 + + + 1 + 1099 + 454 + 0 + + + 1 + 1099 + 455 + 0 + + + + 1 + 201322 + 0 + + 1100 + Quest_Edu #11.1 + 8 +

1099

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1100 + 450 + 0 + + + + 1 + 201024 + 0 + + 450 + Task11.2 Collect sandbags from Gobber + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>My poor friend Bucket is getting a tight bucket and you know what that means. Whenever something big is brewing up in the sky, his head hurts! We need to get ready for nasty weather. @@ We can't prevent natural disasters like big storms, but there are things we can do to reduce the damage. We’ll need some sandbags, wood logs, and food, quickly! Gobber has 20 sandbags. Could you go get them from him?</Text><ID>904366</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I knew we'd need these sandbags when my wooden leg started hurting! We can stack sandbags to stop water from flooding houses. It's a great way to prepare for floods.</Text><ID>904367</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Grab sandbags from Gobber</Text><ID>904364</ID></Title><Desc><Text>Collect 20 sandbags from Gobber in the Hatchery.</Text><ID>936359</ID></Desc></Data> + 0 + false + + + 20 +

6

+ 8020 + + 1 + 672 + 201024 + true + 20 + 20 + + 0 + +
+ false + + + 451 + Task11.3 Deliver sandbags to Stoick + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can lug these sandbags back to Mulch. I'm glad you're doing your part, {{Name}}!</Text><ID>904370</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Bucket and I will stack these around the School to prepare for the storm.</Text><ID>904371</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>8020</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sandbags</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the sandbags to Mulch</Text><ID>904368</ID></Title><Desc><Text>Deliver 20 sandbags to Mulch at the School..</Text><ID>936361</ID></Desc></Data> + 0 + false + + + 452 + Task11.4 Collect wood in the Wilderness + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>If you wouldn't mind, could you chop six pieces of wood in the Wilderness to board up the windows before the storm hits?</Text><ID>904374</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect wood in the Wilderness</Text><ID>904372</ID></Title><Desc><Text>Chop wood from small trees in the Wilderness.</Text><ID>929625</ID></Desc></Data> + 0 + false + + + 453 + Task11.5 Deliver wood to Gobber in Berk + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>We should really get this wood to Gobber so he can trim the wood into boards to fit the windows. Take them to him at the School, and please hurry!</Text><ID>904377</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I like the cut of your chop. These logs are nice and clean!</Text><ID>904378</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos05</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver wood to Gobber at the School</Text><ID>904375</ID></Title><Desc><Text>Deliver the wood to Gobber at the School.</Text><ID>936362</ID></Desc></Data> + 0 + false + + + 454 + Task11.6 Meet Mulch in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>It'll take me some time to cut them into nice boards. Why don't you go back to Mulch? I'm sure he could use more of your help.</Text><ID>904381</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Oh dear, Gobber needs some more time? Let's see... I seem to remember last time we had a blizzard we stockpiled a good supply of food. We should probably do the same in case the storm lasts a long time.</Text><ID>904382</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Mulch</Text><ID>904379</ID></Title><Desc><Text>Meet Mulch.</Text><ID>936363</ID></Desc></Data> + 0 + false + + + 455 + Task11.7 Deliver food to Stoick in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>We'll need quite a bit of food. Gather 2 pumpkins, 2 cabbages, 2 ears of corn, and 6 eggs from your farm. I'm lucky I don't have to remind you - like I do with Bucket - that chickens lay eggs, not sheep.@@When you have them all, bring them back to me. You can access your farm from the Lookout</Text><ID>904385</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Gobber just dropped off the planks for the windows. I believe that should do it. Like I mentioned before, there is no way to stop the storm but we can reduce the impact it will have by preparing for it.</Text><ID>904386</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver food to Mulch</Text><ID>904383</ID></Title><Desc><Text>Deliver 2 pumpkins, 2 cabbages, 6 eggs and 2 ears of corn to Mulch. Get them from your farm.</Text><ID>936360</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201322 + true + 25 + 25 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 201322 + true + 200 + 200 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201322 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201322 + true + 200 + 200 + + 0 + +
+ false +
+ + 1101 + Quest_Edu #13 + 8 +

+ <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Boar are Coming!</Text><ID>920627</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1357 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1101 + 456 + 0 + + + 1 + 1101 + 457 + 0 + + + 1 + 1101 + 458 + 0 + + + 1 + 1101 + 459 + 0 + + + + 2 + 201121 + 0 + + 456 + Task 13.1 Meet Gobber in Berk + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Oh my, {{Name}}, you have to help me! Wild boars have been coming near the school and spooking the sheep. We can’t afford to scare any more of them, especially because so many are already being used for Dragon Racing. The sheep are so shaky that they barely grow any wool. @@ Have a word with Gobber and he'll tell you what we could do.</Text><ID>904766</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hey {{greeting}}! The wild boars are usually in the Wilderness. I don't know why they would be coming here. We need to see what they normally eat.</Text><ID>904767</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Gobber at the Hatchery</Text><ID>904764</ID></Title><Desc><Text>Meet Gobber at the Hatchery.</Text><ID>936364</ID></Desc></Data> + 0 + false + + + 457 + Task 13.3 Meet Snotlout at school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I know! Go talk to Snotlout at the school. He spent some time learning more about wild boars. The boy has some kind of strange bond with all kinds of pigs. I'm sure he'd be willing to help.</Text><ID>904770</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wild boars are born wild! I was born a "do", not "think" warrior, so I can relate. Wild boars eat almost anything from roots to earthworms. I've even see them snatching a snake or two!</Text><ID>904771</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Snotlout at school</Text><ID>904768</ID></Title><Desc><Text>Meet Snotlout at the school.</Text><ID>922769</ID></Desc></Data> + 0 + false + + + 458 + Task 13.4 Meet the Botanist at school + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm busy figuring out how to beat Hiccup at Thunder Run Racing. I guess Phlegma can figure out how to get the wild boars out of the school. You can go talk to her.</Text><ID>921126</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I'm glad you came to help out. We need to act quickly before this gets out of hand! @@ Wild boars will follow the food and are [c][3eebff]omnivores[/c][ffffff], which means they’ll eat anything. Now that we have been grazing our sheep and fishing ourselves for our dragons, their food supply is down. They must be looking for something to eat in other areas. </Text><ID>921127</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Phlegma at the Lookout</Text><ID>921146</ID></Title><Desc><Text>Meet Phlegma at the Lookout.</Text><ID>929631</ID></Desc></Data> + 0 + false + + + 459 + Task 13.5 Deliver the fish to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>When an environment changes, some animals adapt, some move to new locations and some die. We need to get the wild boars back to the Wilderness. Bring me 3 brown trout, 3 salmon and 5 perch! You'll be able to find salmon easier in the Wilderness. Try fishing near the waterfall!</Text><ID>921130</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Perfect. I can use these to lure the wild boars back to the Wilderness and show them that there are plenty of roots, insects and all kinds of food available to them. Next time, I hope they will adapt instead of moving closer to our village.</Text><ID>921131</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7139</Value></Pair><Pair><Key>ItemDescription</Key><Value>Brown Trout</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7144</Value></Pair><Pair><Key>ItemDescription</Key><Value>Salmon</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7143</Value></Pair><Pair><Key>ItemDescription</Key><Value>Perch</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the fish to Phlegma</Text><ID>921128</ID></Title><Desc><Text>Deliver 3 brown trout, 3 salmon and 5 perch to Phlegma in the school. Fish salmon easier in the Wilderness.</Text><ID>932721</ID></Desc></Data> + 0 + false + + + 30 +

2

+ 0 + + 1 + 30 + 201121 + true + 30 + 30 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201121 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201121 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201121 + true + 200 + 200 + + 0 + +
+ false +
+ + 1102 + Quest 19 + 6 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Now that you've been here a while, it's time to get to know more about your fellow Vikings! Go talk to everyone about their clan. Make sure you pay attention! This information might be valuable later.</Text><ID>920461</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuest16.unity3d/DlgHeyralBerk</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>That was a lot of information about all the different clans, {{Name}}. I hope you took good notes!</Text><ID>920462</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Meet the Hairy Hooligan Clans</Text><ID>920460</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1102 + 460 + 0 + + + 1 + 1102 + 461 + 0 + + + 1 + 1102 + 462 + 0 + + + 1 + 1102 + 463 + 0 + + + 1 + 1102 + 464 + 0 + + + 1 + 1102 + 465 + 0 + + + 1 + 1102 + 466 + 0 + + + + 1 + 201123 + 0 + + 460 + Task 19.1 Meet Valka in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>My son, Hiccup Horrendous Haddock, is the head of the Haddock clan. He's also the chieftain of Berk! I've spent much time away from Berk, but I carry the proud tradition of my family.</Text><ID>904782</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka.</Text><ID>929868</ID></Desc></Data> + 0 + false + + + 461 + Task 19.2 Meet Ruffnut by her house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Dude, my brother and I are proud members of the Thorston Clan. We're from a long line of berserker warriors, like you couldn't tell from looking at us! Gruffnut and Scruffnut are Thorston Clan members you haven't met yet.</Text><ID>904785</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut.</Text><ID>929872</ID></Desc></Data> + 0 + false + + + 462 + Task 19.3 Meet Tuffnut by his house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The Thorston Clan is the best. We never think before we leap! I'm so proud. Thorston skulls are really thick, too, so we're really good at headbutting things. Do you want to see?</Text><ID>904788</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest16.unity3d/DlgTuffnutMischief</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut.</Text><ID>923318</ID></Desc></Data> + 0 + false + + + 463 + Task 19.4 Meet Hiccup by his house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Haddock Clan is known for being strong, but that's not really my focus. Our Clan also has a long history of building alliances! Cool, huh?</Text><ID>904791</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest16.unity3d/DlgHiccupBerk02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 464 + Task 19.5 Meet Snotlout by his house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You've come to talk to the best! I'm a warrior of the Jorgenson Clan. We're relentless warriors and we're amazing at throwing weapons. @@ My father Spitelout is a Jorgenson and our clan also has Scablout, Wartlout, and Burplout. He's the record holder for longest burp! Cool, huh?</Text><ID>904794</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest16.unity3d/DlgSnotloutBestBerk</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 465 + Task 19.6 Meet Astrid by her house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm from the Hofferson Clan! We have a proud history of smart strategists. Be careful of challenging us on hand to hand. I'd hand you your loss in a second! In my Clan, we also have Asfrid, Asgerd, and Asger.</Text><ID>904797</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest16.unity3d/DlgAstridSilly03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>926962</ID></Desc></Data> + 0 + false + + + 466 + Task 19.7 Meet Fishlegs by his house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm a proud member of the Ingerman Clan! Our Clan has been written down in many history books as fun seeking Vikings! That's why I read so many books... because it's fun! @@ My clan members include Froglegs, Piglegs, and Wolflegs. Piglegs is really mad at Wolflegs right now, though, since Wolflegs keeps knocking his house down.</Text><ID>904800</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle05</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201123 + true + 25 + 25 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201123 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201123 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201123 + true + 50 + 50 + + 0 + +
+ false +
+ + 1106 + Quest_Edu Bot 10 + 7 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Botany 101</Text><ID>920431</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1033 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1106 + 471 + 0 + + + 1 + 1106 + 472 + 0 + + + 1 + 1106 + 473 + 0 + + + 1 + 1106 + 474 + 0 + + + 2 + 1106 + 1107 + 0 + + + 1 + 1106 + 476 + 0 + + + 1 + 1106 + 477 + 0 + + + 1 + 1106 + 478 + 0 + + + 1 + 1106 + 479 + 0 + + + + 1 + 201122 + 0 + + 1107 + Quest_Edu #10.4 + 7 +

1106

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1107 + 475 + 0 + + + + 1 + 201028 + 0 + + 475 + Task 10.5 Collect the tea from the Alchemist + <Data><Offer><Type>Popup</Type><ID>920640</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The tea is done. You can come and get it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920641</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>This is a pretty strong batch, but you can't deal with cranky Vikings with weak tea.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect the tea from Heather</Text><ID>920638</ID></Title><Desc><Text>Get the lavender tea from Heather in school.</Text><ID>920639</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7972 + + 1 + 680 + 201028 + true + 1 + 1 + + 0 + +
+ false + + + 471 + Task 10.1 Collect the lavender plants from the Gre + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEduBot10T01.unity3d/PfGrpQEduBot10T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Were you wondering why we strong Vikings have a botany class? It's all about life science. That's the study of living organisms, such as plants, animals, Vikings, and of course dragons! @@ Let's begin with a small lesson on how plants help our lives here at the school. Please get me two lavender plants from the greenhouse!</Text><ID>920644</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>All the medicine we use here is made from plants and animals. These plants will be perfect!</Text><ID>920645</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>PfCollectDWPlantLavender</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the lavender plants from the Greenhouse</Text><ID>920642</ID></Title><Desc><Text>Collect 2 lavender plants from the Greenhouse at the Lookout.</Text><ID>922774</ID></Desc></Data> + 0 + false + + + 472 + Task 10.2 Deliver the lavender plants to the Alche + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>A lot of our Vikings suffer from insomnia. They can't get a good night's sleep because their dragons snore as loud as thunder! Take these lavender plants over to Heather to turn into tea.</Text><ID>920648</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I am so glad you brought me these. I thought I was going to have a riot on my hands! Everyone gets really cranky when they don't get enough sleep.</Text><ID>920649</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the lavender plants to Heather</Text><ID>920646</ID></Title><Desc><Text>Deliver the 2 lavender plants to Heather at the school. </Text><ID>939175</ID></Desc></Data> + 0 + false + + + 473 + Task 10.3 Meet the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I can infuse these flower heads with some boiling water and make a batch of tea. It will soothe and relax all the tired Vikings! While I do, please go back to Phlegma so she can give you the next lesson.</Text><ID>920652</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I thought it would take you a little longer. You're really good!</Text><ID>920653</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Phlegma</Text><ID>920650</ID></Title><Desc><Text>Talk to Phlegma at the Lookout.</Text><ID>922775</ID></Desc></Data> + 0 + false + + + 474 + Task 10.4 Deliver food to Astrid by the store + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Life science also helps us improve our way of life by growing food. [c][3eebff]Agriculture[/c][ffffff] (that's a fancy word for farming) gives us 80% of our food supply! @@ Johann needs to restock the store's food. Please deliver 5 dragon nip plants, 5 ears of corn and 5 sunflowers to Astrid. She's helping Johann for a little while. You can grow those from your Farm!</Text><ID>921141</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This will really help out all the new students! </Text><ID>921142</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver food to Astrid at the Training Grounds</Text><ID>921139</ID></Title><Desc><Text>Use your farm to make 5 dragon nips, 5 ears of corn and 5 sunflowers and deliver them to Astrid.</Text><ID>925951</ID></Desc></Data> + 0 + false + + + 476 + Task 10.6 Deliver the tea to Gobber in the Hatcher + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Take it to Gobber in the Hatchery. He has a way with people!</Text><ID>920660</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>These baby dragons are cute, but they're louder than Thornado. I might drink all this tea myself if I have to stand here any longer!</Text><ID>920661</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7972</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender Tea</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the tea to Gobber in the Hatchery</Text><ID>920658</ID></Title><Desc><Text>Deliver the lavender tea to Gobber in the Hatchery.</Text><ID>929642</ID></Desc></Data> + 0 + false + + + 477 + Task 10.7 Meet Snotlout in the Hatchery + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HatcheryInt02Exit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If you're helping Vikings out today, I have a new task for you. Snotlout has been complaining all day that Hookfang is being ornery! If you ask me, I think Snotlout's just whining again. Will you go talk to him and sort it out?</Text><ID>904413</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>My dumb dragon seems to have another toothache.</Text><ID>904414</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Snotlout in the Hatchery</Text><ID>904411</ID></Title><Desc><Text>Talk to Snotlout in the Hatchery.</Text><ID>929643</ID></Desc></Data> + 0 + false + + + 478 + Task 10.8 Collect the Toothache plant + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEduBot10T08.unity3d/PfGrpQEduBot10T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Can you go get Hookfang a toothache plant? I know the Botanist told me it goes by another name, but I like remembering the easier name. There is usually one growing near the lake!</Text><ID>904417</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That’s the one. Ouch! Please hurry, I am running out of burn cream, and Hookfang's looking like he wants to breathe some more fire!</Text><ID>904418</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantToothAche</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Toothache plant</Text><ID>904415</ID></Title><Desc><Text>Collect the Toothache plant at the school.</Text><ID>922776</ID></Desc></Data> + 0 + false + + + 479 + Task 10.9 Deliver the toothache plant to Snotlout + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HatcheryInt02Exit</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hurry up and bring the whole plant back to me, double time! Hookfang is ready to blow up!</Text><ID>904421</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I don’t like to read words, but life science has saved me once again! Normally a Viking would only eat one flower to numb the mouth, but Hookfang is so big he just eats the whole plant! Hookfang and my body hair thank you!</Text><ID>904422</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the toothache plant to Snotlout</Text><ID>904419</ID></Title><Desc><Text>Deliver the Toothache plant to Snotlout in the Hatchery.</Text><ID>939176</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201122 + true + 25 + 25 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201122 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201122 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201122 + true + 200 + 200 + + 0 + +
+ false +
+ + 1108 + Quest Alchemist 1.0 + 15 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>As the alchemist, I need to know about all types of science. One area is physical science. That's the study of physics and chemistry in nature. I'll tell you more about chemistry! @@We use chemistry to figure out how and why the dragons breathe fire differently. Go speak to each of the dragon trainers to see what they have learned about their dragons! </Text><ID>920629</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Without chemistry, we wouldn't be able to figure any of this out. It is an important tool for Vikings, and invaluable to learning about our dragon friends! Great job {{Name}}!</Text><ID>920630</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Chemistry 101</Text><ID>920628</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1067 + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1108 + 482 + 0 + + + 1 + 1108 + 483 + 0 + + + 1 + 1108 + 484 + 0 + + + 1 + 1108 + 485 + 0 + + + 1 + 1108 + 480 + 0 + + + 1 + 1108 + 481 + 0 + + + + 2 + 201124 + 0 + + 480 + Task 16.2 Meet Ruffnut by her house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>My brother and I ride on Barf and Belch, the greatest Hideous Zippleback out there! One of the heads creates gas and the other produces a spark. When they work together, watch out! It creates a massive explosion of fire!</Text><ID>904815</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestAlc1.unity3d/DlgRuffnutBarfnBelch03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Ruffnut</Text><ID>920879</ID></Title><Desc><Text>Meet Ruffnut by her house in Berk.</Text><ID>936474</ID></Desc></Data> + 0 + false + + + 481 + Task 16.3 Meet Tuffnut by his house in Berk + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>We don't get burnt if we keep the heads apart. Oh, but here's a warning! If you ever tell a Hideous Zippleback to fire, keep your head back! You might lose more than just your eyebrows! @@ Ruffnut and I speak from experience. That only happened to us twelve times so far.</Text><ID>904818</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestAlc1.unity3d/DlgTuffnutZipple04</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Tuffnut</Text><ID>904816</ID></Title><Desc><Text>Meet Tuffnut by his house in Berk.</Text><ID>936475</ID></Desc></Data> + 0 + false + + + 482 + Task 16.1 Meet Astrid by the store in school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Stormfly is a Deadly Nadder, and she's the prettiest and best dragon out there. She shoots pure magnesium, and it's the hottest fire of all the dragons! @@ If you ever ignite something you don't mean to with a Nadder, don't throw water on it! It will only make it worse. You have to put it out with sand!</Text><ID>904821</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestAlc1.unity3d/DlgAstridStormfly02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Astrid by the store in school</Text><ID>904819</ID></Title><Desc><Text>Talk to Astrid by the store at school.</Text><ID>922664</ID></Desc></Data> + 0 + false + + + 483 + Task 16.4 Meet Hiccup by the Flight Club training + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless is the only Night Fury we've ever seen. He shoots plasma blasts! We don't know much about it. @@ I read in a book that plasma is the fourth state of matter, where gas is heated to a super hot temperature and the individual particles become electrically charged! I don't think I know what that means yet. @@ Don't look directly at Toothless's plasma blast. If you want to look at it, wear protective eyewear and use a shield covered in leather!</Text><ID>904824</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestAlc1.unity3d/DlgHiccupToothless01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup</Text><ID>904822</ID></Title><Desc><Text>Meet Hiccup by the Flight Club Training tower, in school or by his house in Berk.</Text><ID>929549</ID></Desc></Data> + 0 + false + + + 484 + Task 16.5 Meet Snotlout by Fireball Frenzy + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hookfang is the strong, but he knows I'm the boss. He's my Monstrous Nightmare. He coats himself with his own saliva and sets himself on fire. Sometimes he does it when I'm riding him, but I know that must be by accident. @@ Oh, also, Hookfang spits fire while he coughs, sneezes, or laughs. Steer clear of Monstrous Nightmares when they're sick!</Text><ID>904827</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestAlc1.unity3d/DlgSnotloutHookfang02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Snotlout</Text><ID>904825</ID></Title><Desc><Text>Meet Snotlout by the Fireball Frenzy entrance or by his house in Berk.</Text><ID>922666</ID></Desc></Data> + 0 + false + + + 485 + Task 16.7 Meet Fishlegs by the boat dock to school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug is my sweetie. She is the cutest! She's my very own Gronckle, and her skin is as hard as a rock. She also eats rocks, like granite, then shoots out lava. @@ If you ever need to cool a Gronckle's lava down, get out of the way and pour cold water on it. That'll create a thin crust of earth and stop the flow.</Text><ID>904830</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestAlc1.unity3d/DlgFishlegsMeatlug02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Fishlegs</Text><ID>904828</ID></Title><Desc><Text>Meet Fishlegs by the the boat dock in school or by his house in Berk.</Text><ID>936476</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201124 + true + 50 + 50 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 201124 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201124 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201124 + true + 50 + 50 + + 0 + +
+ false +
+ + 1110 + Quest_Story_7 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Let's Get Racing</Text><ID>920471</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 4 + 8,10 + 0 + true + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1110 + 487 + 0 + + + 1 + 1110 + 488 + 0 + + + + 1 + 201049 + 0 + + 487 + Task 1.1 Meet Astrid + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Congratulations! Your dragon's now ready to fly and join in Dragon Racing. Talk to Astrid about her favorite pastime!</Text><ID>904983</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Welcome to Thunder Run Racing! Here you can prove your dragon's the best by testing its speed against other dragon riders. </Text><ID>904984</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Astrid at the Training Grounds</Text><ID>904981</ID></Title><Desc><Text>Talk to Astrid at the Training Grounds by Thunder Run Racing.</Text><ID>929896</ID></Desc></Data> + 0 + false + + + 488 + Task 1.2 Play Thunder Run Racing + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Go inside the Thunder Run Racing building next to me to join the next race!</Text><ID>904987</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Whew! That was some pretty impressive flying!</Text><ID>904988</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfRacingPortalTraining</Value></Pair><Pair><Key>Name</Key><Value>DragonRacing</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Thunder Run Racing</Text><ID>904985</ID></Title><Desc><Text>Complete a race in Thunder Run Racing.</Text><ID>926513</ID></Desc></Data> + 0 + false + + + 10 +

2

+ 0 + + 1 + 8 + 201049 + true + 10 + 10 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 201049 + true + 50 + 50 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201049 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201049 + true + 50 + 50 + + 0 + +
+ false +
+ + 1111 + Quest_Lab #6 + 5 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Juicy Dilemma</Text><ID>920470</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1067 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1111 + 489 + 0 + + + 2 + 1111 + 1112 + 0 + + + 1 + 1111 + 492 + 0 + + + 2 + 1111 + 1113 + 0 + + + 1 + 1111 + 498 + 0 + + + + 1 + 201038 + 0 + + 1112 + Quest_Lab_Research #6.2 + 5 +

1111

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We should test this! You should find some stuff that dissolves in water and do some experiments to weigh them. @@ Your classmates told me they left some bags of sugar and salt at the school. You should find them!</Text><ID>920468</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Material</Text><ID>920593</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1112 + 490 + 0 + + + 1 + 1112 + 491 + 0 + + + + 1 + 0 + 0 + + 490 + Task 6.2.1 Find the sugar behind the greenhouse + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQLab6T02_1.unity3d/PfGrpQLab6T02_1</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sugar tastes really good. I add it to my tea. I don't see it but I can taste it, so I know it's still there. I hid the bag behind the greenhouse so I wouldn't eat it all. You should take it and put it to good use!</Text><ID>904837</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSugar</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the sugar behind the greenhouse</Text><ID>904835</ID></Title><Desc><Text>Find the bag of sugar behind the greenhouse at the Lookout.</Text><ID>936682</ID></Desc></Data> + 0 + false + + + 491 + Task 6.2.2 Find the salt next to the Commons + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQLab6T02_2.unity3d/PfGrpQLab6T02_2</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>My mom used to add salt to warm water when I had a sore throat. It was warm and really salty. Yuck! @@ Worse is when I sprinkle some salt on my food when I think it's sugar. Luckily, that only happens 3 times a week. I left the bag there so I wouldn't get confused next time.</Text><ID>904840</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the salt by the Headmaster's house</Text><ID>904838</ID></Title><Desc><Text>Find the bag of salt by the Headmaster's house in the school.</Text><ID>936683</ID></Desc></Data> + 0 + false + + false + + + 1113 + Quest_Lab_Experiment #6.3 + 5 +

1111

+ <Data><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1113 + 493 + 0 + + + 1 + 1113 + 494 + 0 + + + 1 + 1113 + 495 + 0 + + + 1 + 1113 + 496 + 0 + + + 1 + 1113 + 497 + 0 + + + + 1 + 0 + 0 + + 493 + Task 6.3.1 Weigh the Water + <Data><Type>Action</Type><Title><Text>Weigh the water</Text><ID>904841</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>WeighWater</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 494 + Task 6.3.2 Weigh the sugar + <Data><Type>Action</Type><Title><Text>Weigh the sugar</Text><ID>904843</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>WeighSugar</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 495 + Task 6.3.3 Weigh the salt + <Data><Type>Action</Type><Title><Text>Weigh the salt</Text><ID>904845</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>WeighSalt</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 496 + Task 6.3.5 Dissolve sugar + <Data><Type>Action</Type><Title><Text>Dissolve sugar</Text><ID>904847</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>DissolveSugar</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + + 497 + Task 6.3.6 Dissolve salt + <Data><Type>Action</Type><Title><Text>Dissolve salt</Text><ID>904849</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc><Objective><Pair><Key>Name</Key><Value>DissolveSalt</Value></Pair><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair></Objective></Data> + 0 + false + + false +
+ + 489 + Task 6.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><ID>920696</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I need to carry juice ingredients to the boat, but it's really heavy. I don't mind, but Mulch says I should use my brain bucket more! He told me that it will weight less if we dissolve the sugar in the water. Can you ask Heather if that's true?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920697</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hello there, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherHello01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather</Text><ID>920895</ID></Title><Desc><Text>Go see Heather by The Lab.</Text><ID>920695</ID></Desc></Data> + 0 + false + + + 492 + Task 6.2.3 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>920700</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now you're ready to come back to The Lab. Bring the materials you collected and we'll think about our hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920995</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Let's get to the lab equipment.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis06.unity3d/PfUiHypothesis06</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Talk to Heather and choose a hypothesis.</Text><ID>920699</ID></Desc></Data> + 0 + false + + + 498 + Task 6.4 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>According to your results, you proved your hypothesis to be {{result}}. No matter what reaction or change in properties occurs, the total weight of the substances does not change. I guess Bucket won't have an easier time with his juice. Go back and tell him!</Text><ID>920704</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Thanks for checking, {{Name}}. I guess it really doesn't matter. There's no easy way out! The sugar is still there even when I can't see it after it dissolves. It all weighs the same.</Text><ID>920705</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket in the Lookout</Text><ID>920702</ID></Title><Desc><Text>Return to Bucket with the results.</Text><ID>929765</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201038 + true + 50 + 50 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201038 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201038 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201038 + true + 200 + 200 + + 0 + +
+ false +
+ + 1114 + Quest_Lab #7 + 13 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Cleaning Solution</Text><ID>920596</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1120 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1114 + 499 + 0 + + + 2 + 1114 + 1115 + 0 + + + 1 + 1114 + 503 + 0 + + + 2 + 1114 + 1119 + 0 + + + 1 + 1114 + 507 + 0 + + + + 2 + 201039 + 0 + + 1115 + Quest_Lab_Research #7.2 + 13 +

1114

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You can make a great cleaning solution from items found around the house. I can't remember which combination of items make the solution, so you'll need to test them all! Try dipping these dirty coins into the solutions to see which one cleans the best. You'll need vinegar, salt, and baking soda.</Text><ID>920594</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Material</Text><ID>920593</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 2 + 1115 + 1116 + 0 + + + 2 + 1115 + 1117 + 0 + + + 2 + 1115 + 1118 + 0 + + + + 2 + 0 + 0 + + 1116 + Quest_Lab #7.2.1 + 13 +

1115

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1116 + 500 + 0 + + + + 2 + 201043 + 0 + + 500 + Task 7.2.1 Collect vinegar from Snotlout + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Vinegar, my mouth's eternal enemy! You can have some. It has a pretty sour taste to it, but that's because it's an acid.</Text><ID>904865</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect vinegar from Snotlout</Text><ID>904863</ID></Title><Desc><Text>Collect vinegar from Snotlout by Fireball Frenzy.</Text><ID>922792</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8028 + + 1 + 717 + 201043 + true + 1 + 1 + + 0 + +
+ false +
+ + 1117 + Quest_Lab #7.2.2 + 13 +

1115

+ <Data><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1117 + 501 + 0 + + + + 2 + 201044 + 0 + + 501 + Task 7.2.2 Collect Salt from Bucket + <Data><Type>Meet</Type><Title><Text>Collect Salt from Bucket</Text><ID>904866</ID></Title><Desc><Text>Talk to Bucket at the school and get his salt.</Text><ID>904867</ID></Desc><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair></Objective><End><Type>Popup</Type><ID>904868</ID><NPC>PfDWBucket</NPC><Text>Salt dissolves in water, but it makes a pretty good scrub to wash out my bowls.</Text><Asset>PfUiMissionActionDBDO</Asset></End></Data> + 0 + false + + + 1 +

6

+ 8019 + + 1 + 718 + 201044 + true + 1 + 1 + + 0 + +
+ false +
+ + 1118 + Quest_Lab #7.2.3 + 13 +

1115

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1118 + 502 + 0 + + + + 2 + 201045 + 0 + + 502 + Task 7.2.3 Collect baking soda from Hiccup + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I got some baking soda from Trader Johann. I have plenty to spare! Here, you can have some {{Name}}.</Text><ID>904871</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect baking soda from Hiccup</Text><ID>904869</ID></Title><Desc><Text>Collect baking soda from Hiccup by the Flight Club tower at the Training Grounds.</Text><ID>929766</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7973 + + 1 + 719 + 201045 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 1119 + Quest_Lab_Experiment #7.3 + 13 +

1114

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward /><Title><Text>Perform the steps of the Experiment</Text><ID>920574</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1119 + 504 + 0 + + + 1 + 1119 + 505 + 0 + + + 1 + 1119 + 506 + 0 + + + + 2 + 0 + 0 + + 504 + Task 7.3.1 Mix Ruff's Combination + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboRuff</Value></Pair></Objective><Type>Action</Type><Title><Text>Mix Ruffnut's combination</Text><ID>904872</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc></Data> + 0 + false + + + 505 + Task 7.3.2 Mix Tuff's Combination + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboTuff</Value></Pair></Objective><Type>Action</Type><Title><Text>Mix Tuffnut's combination</Text><ID>904876</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc></Data> + 0 + false + + + 506 + Task 7.3.3 Mix Tuff's Combination + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboRuffTuff</Value></Pair></Objective><Type>Action</Type><Title><Text>Mix Tuffnut's combination</Text><ID>904876</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc></Data> + 0 + false + + false +
+ + 499 + Task 7.1 Quest_Lab_Question + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>These coins got dirty because of Tuffnut and I don't know how to clean them! If we can clean them we can use them for something. Go talk to Heather and she'll help you sort it out.</Text><ID>920990</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey, it's great to see you! How can I help you?</Text><ID>920991</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather at the school</Text><ID>920988</ID></Title><Desc><Text>Go see Heather by The Lab.</Text><ID>920695</ID></Desc></Data> + 0 + false + + + 503 + Task 7.3 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>920994</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now you're ready to come back to the lab. Bring the materials you collected and we'll use the information to make a hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920995</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Let's get to the lab equipment.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis07.unity3d/PfUiHypothesis07</Value></Pair></Objective><Type>Meet</Type><Title><Text>Choose your hypothesis</Text><ID>921044</ID></Title><Desc><Text>Take the test then go into the lab.</Text><ID>920993</ID></Desc></Data> + 0 + false + + + 507 + Task 7.4 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You have proved your hypothesis to be {{result}}. The recipe that makes the best cleaning solution is the acidic vinegar reacts with the salt to remove the copper oxide.</Text><ID>920998</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Amazing! I have both these ingredients at home, so I can do this by myself! And... Hehe, I got you to clean my coins. That rocks.</Text><ID>920999</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Conclusion</Key><Value>Your hypothesis was:@@ [c][3eebff]{{hypothesis}}[/c][ffffff]@@ Looking at your results you can see that you proved your hypothesis to be [c][3eebff]{{result}}.[/c][ffffff]</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>8028</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>8019</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>7973</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Take your findings back to Ruffnut.</Text><ID>939182</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201039 + true + 50 + 50 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201039 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201039 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201039 + true + 200 + 200 + + 0 + +
+ false +
+ + 1120 + Quest Side 7 + 16 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_School</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Tuffnut's Big Plan</Text><ID>920472</ID></Title><Desc><Text>Part one of a 2 part rusty coin quest; set up for Ruffnut Lab 7.</Text><ID>920473</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1111 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1120 + 508 + 0 + + + 1 + 1120 + 509 + 0 + + + 1 + 1120 + 510 + 0 + + + 1 + 1120 + 511 + 0 + + + 1 + 1120 + 512 + 0 + + + 1 + 1120 + 513 + 0 + + + 1 + 1120 + 514 + 0 + + + 1 + 1120 + 515 + 0 + + + 1 + 1120 + 516 + 0 + + + + 1 + 201143 + 0 + + 508 + Task 7.1 Find the bucket beside the Great Hall + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide7T01.unity3d/PfGrpQSide7T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I've had my eye on you for a while now {{Name}}, and I think you can help me out, dude. I've got this really great idea for a fun prank! Can you go to the School and pick up my sister's bucket? It should be nearby.</Text><ID>904991</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>This is going to be awesome!</Text><ID>904992</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutLoading02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBucketCoin</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the bucket beside the School</Text><ID>904989</ID></Title><Desc><Text>Find Ruffnut's bucket.</Text><ID>936341</ID></Desc></Data> + 0 + false + + + 509 + Task 7.2 Give Tuffnut the bucket + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Meet me at the school and give me the bucket. I know exactly what to do with it!</Text><ID>904995</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Haha, yeah! You're turning out to be a great prankster.</Text><ID>904996</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8417</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ruffnut's Bucket</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Tuffnut the bucket at the School</Text><ID>904993</ID></Title><Desc><Text>Bring Ruffnut's bucket back to Tuffnut at the School.</Text><ID>936342</ID></Desc></Data> + 0 + false + + + 510 + Task 7.3 Talk to Gobber + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I need you to be a diversion for me. Can you talk to Gobber by the boat to the school? Try to keep his attention for as long as you can.</Text><ID>904999</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hello {{greeting}}! I was just minding my business, cleaning my arm attachment. What's on your mind?</Text><ID>905000</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberIdle06</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber at the School.</Text><ID>926736</ID></Desc></Data> + 0 + false + + + 511 + Task 7.4 Find Gobber's fishing spot on the Berk be + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Wilderness_WaterArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You just want to know what hobbies I have? Okay! I love my smithy, but I love to kick back and fish on my off hours! Run along to the Wilderness and you'll see my favorite fishing spot!</Text><ID>905003</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Isn't this a great place?</Text><ID>905004</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Wilderness_WaterArea</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Gobber's fishing spot at the Wilderness</Text><ID>905001</ID></Title><Desc><Text>Find Gobber's favorite fishing spot at the Wilderness.</Text><ID>936344</ID></Desc></Data> + 0 + false + + + 512 + Task 7.5 Catch 2 fish + <Data><Offer><Type>Popup</Type><ID>905007</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can catch a few fish while you're there. It always relaxes me!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905008</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You're a natural!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>PfFish</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch 2 fish</Text><ID>905005</ID></Title><Desc><Text>Catch any 2 fish.</Text><ID>905006</ID></Desc></Data> + 0 + false + + + 513 + Task 7.6 Talk to Ruffnut by her house in Berk + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Has Tuffnut dragged you in a prank of his, {{Name}}? Ruffnut is looking for you and she doesn't look happy! She came to the School looking for you.</Text><ID>905011</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hey {{Name}}, over here! Have you seen Tuffnut? My dumb brother is up to something!</Text><ID>905012</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut at the School</Text><ID>905009</ID></Title><Desc><Text>Talk to Ruffnut at the School.</Text><ID>936345</ID></Desc></Data> + 0 + false + + + 514 + Task 7.7 Find Tuffnut by the river at the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_School_River</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Tuffnut took my bucket of coins. I've been saving the coins one at a time for years. Will you talk to him? I want my stuff back!</Text><ID>905015</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Aww man, she found me out really fast. I guess she knows me really well.</Text><ID>905016</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutInsult01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Tuffnut by the river at the school</Text><ID>905013</ID></Title><Desc><Text>Talk to Tuffnut by the river at the school.</Text><ID>936346</ID></Desc></Data> + 0 + false + + + 515 + Task 7.8 Grab 5 coins by the lake at the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide7T08.unity3d/PfGrpQSide7T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I got jealous that Ruffnut had her own bucket, and her own coins. I don't have my own bucket! It's not fair. I guess I overreacted. @@ Will you find all the coins for her? I threw them in the lake beside me. They probably washed up on the shore.</Text><ID>905019</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Nice. When Ruffnut steals something of mine in a few days, I know who to ask for help!</Text><ID>905020</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRustyCoin</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab 5 coins by the lake at the school</Text><ID>905017</ID></Title><Desc><Text>Collect Ruffnut's 5 coins around the lake at the school.</Text><ID>936347</ID></Desc></Data> + 0 + false + + + 516 + Task 7.9 Return to Ruffnut in Berk + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Take them back to my sister for me! I don't want to get kicked in the shins right now and I don't think she'd hit you.</Text><ID>905023</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Thanks for getting them back to me. Wait a second, these coins are rustier than they were before! They look so ugly! What did Tuffnut do to them, that nitwit? Ugh!</Text><ID>905024</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Ruffnut</Text><ID>905021</ID></Title><Desc><Text>Talk to Ruffnut.</Text><ID>929872</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201143 + true + 25 + 25 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201143 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201143 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201143 + true + 50 + 50 + + 0 + +
+ false +
+ + 1121 + Quest_Edu #17 + 4 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Frozen Dragon Water</Text><ID>920561</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1101 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1121 + 517 + 0 + + + 2 + 1121 + 1122 + 0 + + + 2 + 1121 + 1126 + 0 + + + 1 + 1121 + 524 + 0 + + + 1 + 1121 + 525 + 0 + + + 2 + 1121 + 1127 + 0 + + + + 2 + 201040 + 0 + + 1122 + Quest 17.2 + 4 +

1121

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Sometimes we can change the freezing point of liquids by adding other substances. I bet we can get sand, salt, and sugar from Bucket, Gobber, and the Botanist at the school.</Text><ID>920553</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Perfect, {{Name}}! Now we can try things out and find a solution! </Text><ID>920554</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherGoodJob</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Collect sand, salt, and sugar</Text><ID>920552</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 2 + 1122 + 1123 + 0 + + + 2 + 1122 + 1124 + 0 + + + 2 + 1122 + 1125 + 0 + + + + 2 + 0 + 0 + + 1123 + Quest 17.2.1 + 4 +

1122

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect sand from Bucket</Text><ID>920549</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1123 + 518 + 0 + + + + 2 + 201046 + 0 + + 518 + TaskCollect sand from Bucket + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>All this sand was lying on the beach, almost as if no one wanted it. You can have this much!</Text><ID>904892</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect sand from Bucket</Text><ID>920549</ID></Title><Desc><Text>Get a sandbag from Bucket at the School.</Text><ID>936365</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8020 + + 1 + 724 + 201046 + true + 1 + 1 + + 0 + +
+ false +
+ + 1124 + Quest 17.2.2 + 4 +

1122

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward /><Title><Text>Collect salt from Gobber</Text><ID>904893</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1124 + 519 + 0 + + + + 2 + 201047 + 0 + + 519 + TaskCollect salt from Gobber + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I have tons of salt ready, in case I need to throw it over my shoulder for good luck. </Text><ID>904895</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect salt from Gobber</Text><ID>904893</ID></Title><Desc><Text>Get salt from Gobber.</Text><ID>936366</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8019 + + 1 + 725 + 201047 + true + 1 + 1 + + 0 + +
+ false +
+ + 1125 + Quest 17.2.3 + 4 +

1122

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect sugar from the Botanist</Text><ID>920551</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1125 + 520 + 0 + + + + 2 + 201048 + 0 + + 520 + TaskCollect sugar from the Botanist + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Here's some sugar for you, 'sugar'!</Text><ID>920933</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect sugar from Phlegma at the Lookout</Text><ID>920931</ID></Title><Desc><Text>Get sugar from Phlegma at the Lookout.</Text><ID>929634</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8023 + + 1 + 726 + 201048 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 1126 + Quest 17.3 + 4 +

1121

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need to get the sand, salt and sugar to the dragon trainers. They can put some into the water bowls to test if it will keep the water from freezing. Take the items you just collected and deliver them to Fishlegs, Astrid and Snotlout.</Text><ID>920556</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now, we have to have an important thing everyone needs for scientific discovery: patience. We need to give it some time to see if it works!</Text><ID>920557</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Deliver sand, salt, and sugar</Text><ID>920555</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1126 + 521 + 0 + + + 1 + 1126 + 522 + 0 + + + 1 + 1126 + 523 + 0 + + + + 2 + 0 + 0 + + 521 + TaskGive the sand to Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>This should be very interesting! I'm so excited to try it out and write down the results! Personally, I think that the sand will just sink to the bottom.</Text><ID>904901</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>8020</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sandbags</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the sand to Fishlegs</Text><ID>904899</ID></Title><Desc><Text>Deliver a sandbag to Fishlegs at the Lookout.</Text><ID>936367</ID></Desc></Data> + 0 + false + + + 522 + TaskGive the salt to Astrid + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This will taste like ocean water to Stormfly. Still, the ocean rarely freezes, so this may work! Thanks!</Text><ID>904904</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8019</Value></Pair><Pair><Key>ItemDescription</Key><Value>Salt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the salt to Astrid at the School</Text><ID>904902</ID></Title><Desc><Text>Deliver salt to Astrid at the School.</Text><ID>929636</ID></Desc></Data> + 0 + false + + + 523 + TaskGive the sugar to Snotlout + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Sugar? Blah. That is too sweet. I like sour things, like a real manly Viking. I guess it's worth a shot if Hookfang's water doesn't freeze again.</Text><ID>904907</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8023</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sugar</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the sugar to Snotlout</Text><ID>904905</ID></Title><Desc><Text>Deliver sugar to Snotlout at the School.</Text><ID>936368</ID></Desc></Data> + 0 + false + + false +
+ + 1127 + Quest 17.6 + 4 +

1121

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should go see how the water turned out. Go talk to Astrid, Snotlout and Fishlegs.</Text><ID>920559</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, at least Astrid is happy! Now we know that when we need to lower the freezing temperature of water, we just need to add salt to it. Thanks for your help!</Text><ID>920560</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Visit the dragon trainers</Text><ID>920558</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1127 + 526 + 0 + + + 1 + 1127 + 527 + 0 + + + 1 + 1127 + 528 + 0 + + + + 2 + 0 + 0 + + 526 + Task Meet Fishlegs at the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug's water was still frozen in the morning. She melted the sand and made some pretty cool fireballs, though. I'm so happy she got to show off her skills.</Text><ID>904910</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Fishlegs at the school</Text><ID>904908</ID></Title><Desc><Text>Meet Fishlegs at the school.</Text><ID>933544</ID></Desc></Data> + 0 + false + + + 527 + Task Meet Astrid at the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Stormfly's water bowl didn't freeze. The salt did the trick! It lowered the freezing temperature of water. Stormfly didn't want to drink too much of the salty water, though.</Text><ID>904913</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Astrid at the school</Text><ID>904911</ID></Title><Desc><Text>Meet Astrid at the school.</Text><ID>935162</ID></Desc></Data> + 0 + false + + + 528 + Task Meet Snotlout at the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh come on! You really didn't think that by sweetening the water with sugar that it would lower the freezing point, did you? Hookfang just got really hyper! He's spewing fire all over the place!</Text><ID>904916</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Snotlout at the school</Text><ID>904914</ID></Title><Desc><Text>Meet Snotlout at the school.</Text><ID>922769</ID></Desc></Data> + 0 + false + + false +
+ + 517 + TaskMeet the Alchemist by The Lab + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Berk is a cold place most of the year, and the school is no different. What's worse is that our dragons' water bowls are freezing overnight. We need to find a way to lower the freezing temperature of water. Can you talk to Heather for a solution?</Text><ID>920936</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's get to the bottom of this freezing dragon water problem right away!</Text><ID>920937</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather by The Lab</Text><ID>920946</ID></Title><Desc><Text>Meet Heather by The Lab.</Text><ID>920896</ID></Desc></Data> + 0 + false + + + 524 + Task Chop wood for Hiccup's fire + <Data><Offer><Type>Popup</Type><ID>904923</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Since it’s so cold, I need to make a fire to keep warm at night. I don't want to waste Toothless's time either. Can you go to the Wilderness and collect six logs for me?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920775</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop wood for Hiccup's fire</Text><ID>904921</ID></Title><Desc><Text>Chop the small trees in the Wilderness and get six logs.</Text><ID>904307</ID></Desc></Data> + 0 + false + + + 525 + Task Take the wood to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Bring those logs back to me so I can get this fire started.</Text><ID>904927</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These have some potential. Thanks! You stay warm out there.</Text><ID>904928</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the wood to Hiccup</Text><ID>904925</ID></Title><Desc><Text>Bring the logs to Hiccup at the school.</Text><ID>922770</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201040 + true + 25 + 25 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201040 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201040 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201040 + true + 200 + 200 + + 0 + +
+ false +
+ + 1128 + Quest_Adult 1.0 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Fog Rolled In</Text><ID>920548</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2182 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 1 + 1128 + 529 + 0 + + + 1 + 1128 + 530 + 0 + + + 1 + 1128 + 531 + 0 + + + 2 + 1128 + 1129 + 0 + + + 1 + 1128 + 533 + 0 + + + 1 + 1128 + 534 + 0 + + + 1 + 1128 + 535 + 0 + + + 1 + 1128 + 536 + 0 + + + 2 + 1128 + 1130 + 0 + + + 1 + 1128 + 538 + 0 + + + 1 + 1128 + 539 + 0 + + + 2 + 1128 + 1131 + 0 + + + 1 + 1128 + 541 + 0 + + + + 2 + 201042 + 0 + + 1129 + Quest 1.4 + 4 +

1128

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1129 + 532 + 0 + + + + 2 + 201052 + 0 + + 532 + Task 1.4 Get wood from Bucket + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We need to gather all the other parts. We need to create a frame for the sunstone that we can rotate to find the sun. We can do that with two pieces of round, precut wood. @@ Will you ask Bucket if he has any that could fit? He always seems to collect weird odds and ends!</Text><ID>904931</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>How about these broken pieces off my old boat? I don't know if I can make something good out of it, so you can have them. You can use one for the top and one for the bottom.</Text><ID>904932</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get wood pieces from Bucket</Text><ID>904929</ID></Title><Desc><Text>Collect wood pieces from Bucket near the lake in the school.</Text><ID>922720</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8005 + + 1 + 737 + 201052 + true + 1 + 1 + + 0 + +
+ false + + + 1130 + Quest 1.9 + 4 +

1128

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1130 + 537 + 0 + + + + 2 + 201050 + 0 + + 537 + Task1.09 Deliver the halibut to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Please bring the halibut to me and I will give you the gears you were looking for.</Text><ID>920921</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Here you go! I'll make sure to let the Headmaster know who caught this delicious fish!</Text><ID>920922</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>7141</Value></Pair><Pair><Key>ItemDescription</Key><Value>Halibut</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the halibut to Phlegma</Text><ID>920919</ID></Title><Desc><Text>Deliver the halibut to Phlegma at the Lookout.</Text><ID>922721</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8428 + + 1 + 735 + 201050 + true + 1 + 1 + + 0 + +
+ false +
+ + 1131 + Quest 1.12 + 4 +

1128

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1131 + 540 + 0 + + + + 2 + 201051 + 0 + + 540 + Task1.12 Collect the compass from Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The sunstone compass is done. Please come get it.</Text><ID>904939</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This has to be one of the coolest inventions ever! </Text><ID>904940</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect the compass from Hiccup</Text><ID>904937</ID></Title><Desc><Text>Collect the completed sunstone compass from Hiccup in the Training Grounds.</Text><ID>929600</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8429 + + 1 + 736 + 201051 + true + 1 + 1 + + 0 + +
+ false +
+ + 529 + Task 1.1 Meet Mulch by the school lake + <Data><Offer><Type>Popup</Type><ID>904943</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We are sending out our fastest ships to find new dragon training recruits, but the fog is too thick for them to travel. People who live in normal places can wait for the fog to lift... but this is Berk. It's always foggy and cold. @@ You and I need to put our heads together and find a solution to this right away! Start by talking to Mulch. He is our best fisherman and grew up around boats. He can tell you more about the problem.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>904944</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Fishers depend on the position of the sun and the stars to find out where we are and how to get to our destination. When the sun is gone, we're more confused than blindfolded Gronckles! @@ If we want to sail through thick fog, we need to know where the sun is at all times.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Mulch by the school lake</Text><ID>904941</ID></Title><Desc><Text>Talk to Mulch by the school lake.</Text><ID>905255</ID></Desc></Data> + 0 + false + + + 530 + Task 1.2 Find the Iceland Spar in the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQAdultHic01T02.unity3d/PfGrpQAdultHic01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that Mulch mentions it, I've heard of Vikings using a sunstone compass to help navigate in deep fog. Let's try and make one. One of the main parts of the sunstone is an Iceland Spar, a rare transparent calcite crystal. @@ There's not many of them around, but I think there's one in a cave in the Wilderness. You should go find it.</Text><ID>904947</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What a find, {{Name}}! That's going to fit perfectly in our device!</Text><ID>904948</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSunStone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Iceland Spar in the Wilderness</Text><ID>904945</ID></Title><Desc><Text>Search the caves in the Wilderness to find the Iceland Spar.</Text><ID>939166</ID></Desc></Data> + 0 + false + + + 531 + Task 1.3 Deliver the spar to Hiccup at school + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The crystal can split light that shines through it along different axes. This is called depolarizing the light. The Headmaster taught me that! Now, bring that sunstone to me so I can shape it for our device.</Text><ID>904951</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This rock is perfect for our compass!</Text><ID>904952</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8416</Value></Pair><Pair><Key>ItemDescription</Key><Value>Iceland Spar</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the spar to Hiccup</Text><ID>904949</ID></Title><Desc><Text>Take the Iceland Spar back to Hiccup at the Training Grounds.</Text><ID>929601</ID></Desc></Data> + 0 + false + + + 533 + Task 1.5 Talk to Gobber in Berk + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We need to get some metal to hold this together. I bet the blacksmith will have some to spare! Can you see if Gobber in the Hatchery help us out?</Text><ID>904955</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Sure, I have plenty of nails you can have for your little project! I don't have any on me right now.</Text><ID>904956</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Title><Desc><Text>Talk to Gobber in the Hatchery.</Text><ID>936517</ID></Desc></Data> + 0 + false + + + 534 + Task1.6 Collect 3 pieces of metal from Gobber's h + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQAdultHic01T07.unity3d/PfGrpQAdultHic01T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I left some nails and metal parts near the school, or by the lake, or somewhere around there. I'm not very tidy! You'll find 3 of the nails there.</Text><ID>904959</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Those will do, {{Name}}. Those will do.</Text><ID>904960</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWMechPart02</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect 3 pieces of metal at the School</Text><ID>904957</ID></Title><Desc><Text>Collect 3 pieces of metal at the School.</Text><ID>936352</ID></Desc></Data> + 0 + false + + + 535 + Task1.7 Meet the Botanist at school + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You've got a good start, but wood and metal isn't enough to make the compass rotate. You'll need a couple of gears to help it move. @@ Phlegma has spare gears, just in case her watering machine breaks. She might give one to you. Go talk to her at the Lookout!</Text><ID>921148</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Nice to see you, {{Name}}. I'd be glad to give you a few gears, but you can never get something for nothing. You'll need to do something for me!</Text><ID>921149</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Phlegma at the Lookout</Text><ID>921146</ID></Title><Desc><Text>Meet Phlegma near the Greenhouse at the school.</Text><ID>922724</ID></Desc></Data> + 0 + false + + + 536 + Task1.8 Catch a halibut from the sea + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I'm making dinner for the Headmaster tonight and his favorite dish is halibut! Can you go down to the beach and catch me one while I look for the gears?</Text><ID>920929</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That looks mouthwateringly tasty!</Text><ID>920930</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BeachFishing</Value></Pair><Pair><Key>Name</Key><Value>PfFishHalibutDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch a halibut at the sea</Text><ID>920927</ID></Title><Desc><Text>Catch one halibut in the ocean fishing spot in the school.</Text><ID>932719</ID></Desc></Data> + 0 + false + + + 538 + Task1.10 Deliver the parts to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! Now that you have all the parts, we can put this sunstone compass together.</Text><ID>904971</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm really excited that it's finished! Let me tell you how this works. You place a dot to the top of the crystal and then look up at it from below! @@ The incoming light hits the dot and duplicates it. This optical effect, amazingly enough, is all we need to find the sun even through the thickest fog. That will help Vikings determine the correct course, even at sea!</Text><ID>904972</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8005</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wooden wheel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8419</Value></Pair><Pair><Key>ItemDescription</Key><Value>Metal pieces</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8428</Value></Pair><Pair><Key>ItemDescription</Key><Value>Gear</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the parts to Hiccup</Text><ID>904969</ID></Title><Desc><Text>Take all the parts to Hiccup so he can put the sunstone compass together.</Text><ID>929602</ID></Desc></Data> + 0 + false + + + 539 + Task1.11 Play a Flight Club course + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This will take a little while to put together. Why don't you take {{dragon name}} into Flight Club and run a course or two?</Text><ID>904975</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's a great feeling to fly through the sky on your dragon!</Text><ID>904976</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolPortal</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair></Objective><Type>Game</Type><Title><Text>Play a Flight Club course </Text><ID>904973</ID></Title><Desc><Text>Play Flight Club in the school.</Text><ID>922726</ID></Desc></Data> + 0 + false + + + 541 + Task1.13 Deliver the compass to Stoick + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Please bring it to Mulch. I'm sure he'll be glad to have a solution to the fog.</Text><ID>904979</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You and chief Hiccup are quite remarkable. I will get this on my fishing boat and have Bucket start spreading the word to everyone.</Text><ID>904980</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>8429</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunstone Compass</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the compass to Mulch</Text><ID>904977</ID></Title><Desc><Text>Deliver the sunstone compass to Mulch.</Text><ID>936353</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201042 + true + 25 + 25 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201042 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201042 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201042 + true + 50 + 50 + + 0 + +
+ false +
+ + 1134 + Quest_Side #1 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Thoughtful Gift</Text><ID>920475</ID></Title><Desc><Text>Astrid wants to do something nice for Hiccup. What better than a delicious sandwich, made Astrid style?</Text><ID>920476</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1110 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1134 + 544 + 0 + + + 2 + 1134 + 1135 + 0 + + + 2 + 1134 + 1136 + 0 + + + 1 + 1134 + 547 + 0 + + + 2 + 1134 + 1137 + 0 + + + 1 + 1134 + 549 + 0 + + + + 1 + 201126 + 0 + + 1135 + Quest Side 1.2 + 11 +

1134

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Bucket</Text><ID>923073</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1135 + 545 + 0 + + + + 1 + 201127 + 0 + + 545 + Task 1.2 Give Bucket 2 eggs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I gave that bread to Bucket for a nice pre-dinner snack. If you want the bread for Astrid, you'll need to offer him something else to eat.@@ Bucket loves eating eggs, though he gets confused sometimes where they come from. Go give him a pair of eggs.</Text><ID>905027</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wow, eggs! I was just thinking to myself that I would love to eat right now. Can you read my mind, {{Name}}? How about now? Well, you can have this bread for these eggs. Thanks, friend!</Text><ID>905028</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Bucket 2 eggs</Text><ID>905025</ID></Title><Desc><Text>Gather 2 eggs from your farm or from the store and give it to Bucket at the school.</Text><ID>926509</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7978 + + 1 + 739 + 201127 + true + 1 + 1 + + 0 + +
+ false + + + 1136 + Quest Side 1.3 + 11 +

1134

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1136 + 546 + 0 + + + + 1 + 201128 + 0 + + 546 + Task 1.3 Talk to Fishlegs by the docks at school + <Data><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now, what else do I need? I think every sandwich needs some meat within it. Can you ask Fishlegs if he has some sandwich meat to spare? Thanks, {{Name}}!</Text><ID>905031</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Astrid wants some meat for her sandwich? Well, I owe her a favor because she let me look at her class notes. She can have this!</Text><ID>905032</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs at school</Text><ID>905029</ID></Title><Desc><Text>Talk to Fishlegs at the school.</Text><ID>936396</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8004 + + 1 + 740 + 201128 + true + 1 + 1 + + 0 + +
+ false +
+ + 1137 + Quest Side 1.5 + 11 +

1134

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1137 + 550 + 0 + + + + 1 + 201129 + 0 + + 550 + Task 1.5 Bring the sandwich parts to Astrid + <Data><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestSide1.unity3d/DlgAstridSide1T4Offer</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That's it! Now bring me the ingredients so I can whip this up.</Text><ID>905035</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DOQuestSide1.unity3d/DlgAstridSide1T4End</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>One delicious sandwich coming right up!</Text><ID>905036</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7998</Value></Pair><Pair><Key>ItemDescription</Key><Value>Kelp</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7978</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bread</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8004</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lamb Chop</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the sandwich parts to Astrid</Text><ID>905033</ID></Title><Desc><Text>Bring all the ingredients to Astrid.</Text><ID>929769</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8003 + + 1 + 741 + 201129 + true + 1 + 1 + + 0 + +
+ false +
+ + 544 + Task 1.1 Talk to Mulch at school + <Data><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestSide1.unity3d/DlgAstridSide1T1OfferA</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>905039</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm going to make Hiccup one of my delicious sandwiches. If I want to get it to him today, I better get started right away. I'm really proud of my unique style of cooking and I'm always looking to show it to my friends! @@ Sandwiches start with delicious bread. I saw Mulch grab some from the store. Talk to him and get it from him!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905040</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Hello there {{Name}}. It's nice to see you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch at the school</Text><ID>905037</ID></Title><Desc><Text>Talk to Mulch by the lake at the school and get his bread.</Text><ID>905038</ID></Desc></Data> + 0 + false + + + 547 + Task 1.4 Find kelp on the school beach + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide1T04.unity3d/PfGrpQSide1T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>921690</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now this last piece is a secret ingredient, but I'll tell you because you're being so nice to me. Kelp! Kelp puts that perfect polish on every sandwich! You should be able to find some on the beach at the school.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>921691</ID><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><Text>That looks like a delicious strand of sea algae!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantKelpA</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find kelp on the school beach</Text><ID>921688</ID></Title><Desc><Text>Collect kelp from the beach at the school.</Text><ID>921689</ID></Desc></Data> + 0 + false + + + 549 + Task 1.6 Take the sandwich to Hiccup + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestSide1.unity3d/DlgAstridSide1T5Offer</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh shoot. I have to finish a chore for my parents. Could you take this to Hiccup for me? I’m sure he'll love it!</Text><ID>905047</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DOQuestSide1.unity3d/DlgHiccupAstridGift</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh! That looks... interesting. I'll eat it later, at my own pace. Thanks, {{Name}}.</Text><ID>905048</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8003</Value></Pair><Pair><Key>ItemDescription</Key><Value>Astrid's Sandwich</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the sandwich to Hiccup</Text><ID>905045</ID></Title><Desc><Text>Take Astrid's 'delicious' sandwich to Hiccup by the Flight Club tower at the Training Grounds.</Text><ID>929770</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201126 + true + 25 + 25 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 201126 + true + 200 + 200 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201126 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201126 + true + 50 + 50 + + 0 + +
+ false +
+ + 1140 + Quest 20 + 3 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Unfortunate and the Bold</Text><ID>920563</ID></Title><Desc><Text>Let's celebrate one of Berk's greatest heroes, Bork the Bold!</Text><ID>920564</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1153 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1140 + 552 + 0 + + + 1 + 1140 + 553 + 0 + + + 1 + 1140 + 554 + 0 + + + 1 + 1140 + 555 + 0 + + + 1 + 1140 + 556 + 0 + + + 1 + 1140 + 557 + 0 + + + 1 + 1140 + 558 + 0 + + + + 1 + 201130 + 0 + + 552 + Task 20.1 Gather 6 sheep around the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQ20T01.unity3d/PfGrpQ20T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>We know a lot about our dragon friends, but we wouldn't even have known where to start without the help of one special man. Bork the Bold was my great-great-great-great-grandfather, and he wrote the Book of Dragons! I've decided you need to know more about him. @@ When Bork was a wee Viking lad, they called him Bork the Very, Very Unfortunate. He was a sheepherder! I asked the Headmaster to let some sheep loose at the school in Bork's honor. Will you go pick them up?</Text><ID>905288</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos04</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Great job! You're a natural shepherd! </Text><ID>905289</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWildernessWhiteSheep</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 10 sheep around the school</Text><ID>905286</ID></Title><Desc><Text>Gather the 10 sheep that are wandering around the school.</Text><ID>936339</ID></Desc></Data> + 0 + false + + + 553 + Task 20.2 Meet Mulch by the lake at school + <Data><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>905292</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You're doing much better than Bork the Very, Very Unfortunate ever did. He lost his entire flock to dragons. He was a blacksmith next, but dragons burnt his smithy down! @@ How about you give a go at his next job? Go talk to Mulch. He's by the lake at the school.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905293</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I'd love to talk about Bork the Bold. He was a legend of the village!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Mulch by the lake at school</Text><ID>905290</ID></Title><Desc><Text>Talk to Mulch by the lake at the school.</Text><ID>905291</ID></Desc></Data> + 0 + false + + + 554 + Task 20.3 Catch 3 fish + <Data><Offer><Type>Popup</Type><ID>905296</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Before he wrote his famous notes on dragons, Bork was a fisherman for the village. I want you to catch a few fish to honor his memory.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905297</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Scauldrons came and ate Bork's entire haul of fish before he could bring it to the village! I guess he wasn't a very good fisherman. I would have saved the catch, if I were in his shoes. </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>PfFish</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch 3 fish</Text><ID>905294</ID></Title><Desc><Text>Catch any 3 fish.</Text><ID>905295</ID></Desc></Data> + 0 + false + + + 555 + Task 20.4 Return the sheep to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>When he couldn't get the hang of fishing, Bork the Very, Very Unfortunate became a farmer. You must be getting tired holding on to all those sheep. You should return them to Phlegma and she'll tell you more about Bork.</Text><ID>921152</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWFloraMayDO.unity3d/DlgFloraMay</Asset><NPC>PfDWBotanist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you for gathering all the sheep. I think it's absolutely wonderful that you are learning more about Bork the Bold! </Text><ID>921153</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8031</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Sheep</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return the sheep to the Botanist</Text><ID>921150</ID></Title><Desc><Text>Give the Botanist the 10 sheep you collected earlier.</Text><ID>929536</ID></Desc></Data> + 0 + false + + + 556 + Task 20.5 Deliver 1 ear of corn and 2 sunflowers t + <Data><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFloraMayDO.unity3d/DlgFloraMayQuestOffer02</Asset><NPC>PfDWBotanist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bork the Very, Very Unfortunate tried his hand at farming. He and his lady love were going to be the best farmers in Berk! @@ You can put your hand at farming, too. Can you give me 1 head of cabbage and 2 sunflowers? You can grow them in your farm or buy them from the store!</Text><ID>905304</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWFloraMayDO.unity3d/DlgFloraMayPos02</Asset><NPC>PfDWBotanist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's fantastic, dear. Poor Bork wasn't a farmer for very long. Dragons came and ate everything he grew!</Text><ID>905305</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver cabbage and 2 sunflowers to the Botanist</Text><ID>905302</ID></Title><Desc><Text>Get one head of cabbage cabbage and 2 sunflowers from your farm or the store. Give them to the Botanist.</Text><ID>929537</ID></Desc></Data> + 0 + false + + + 557 + Task 20.6 Talk to Hiccup by Flight Club + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You've relived Bork the Very, Very Unfortunate's life now, but you still don't know how he became Bork the Bold! Hiccup has more to say about my ancestor. Find him by the Flight Club tower at the Training Grounds.</Text><ID>905308</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAllRight</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right! Bork the Bold got his new name after he wrote down all that he knew about dragons in the Book of Dragons.</Text><ID>905309</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup by Flight Club</Text><ID>905306</ID></Title><Desc><Text>Meet Hiccup by Flight Club at the Training Grounds.</Text><ID>929894</ID></Desc></Data> + 0 + false + + + 558 + Task 20.7 Fly in Flight Club + <Data><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>He figured out that dragons shared certain characteristics with other types of dragons. That's how he created the dragon classes and wrote them down for us to see. We're continuing his legacy by updating his knowledge! @@ What a helpful Viking, huh? Go into Flight Club in his honor and take a flight lesson.</Text><ID>905312</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>He had an interesting life, that Bork the Bold. Everyone thought he was useless to the village until he showed them all his worth. Any Viking can be remembered, just like my great-great-great grandfather, if they put their heart into it!</Text><ID>905313</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolPortal</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Fly in Flight Club</Text><ID>905310</ID></Title><Desc><Text>Enter Flight Club and play a few levels.</Text><ID>927219</ID></Desc></Data> + 0 + false + + + 30 +

2

+ 0 + + 1 + 30 + 201130 + true + 30 + 30 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201130 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201130 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201130 + true + 50 + 50 + + 0 + +
+ false +
+ + 1143 + Quest_Adult 2.0 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Danger is my Middle Name</Text><ID>920618</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1128 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1143 + 561 + 0 + + + 1 + 1143 + 562 + 0 + + + 1 + 1143 + 563 + 0 + + + 1 + 1143 + 564 + 0 + + + 1 + 1143 + 565 + 0 + + + 1 + 1143 + 566 + 0 + + + + 1 + 201159 + 0 + + 561 + Task 2.1 Find Gothis house in Berk + <Data><Offer><Type>Popup</Type><ID>905320</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We dragon trainers need to keep our flying skills sharp. We need to constantly practice! You up for the challenge? I have set up three different obstacle courses for you to test your stuff. @@ Let's start with the Daredevil Drop. You'll show your courage in the face of danger if you conquer this test! Go to Gothi's house in Berk. Her house is the tippy top of the island above the Great Hall.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>905321</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The heights might look scary, {{Name}}, but you can do this! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_QAdultHic_2T01_Gothi</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly up to Gothi's house in Berk above the Great Hall</Text><ID>905318</ID></Title><Desc><Text>Fly up to Gothi's house at the highest point above Berk above the Great Hall.</Text><ID>905319</ID></Desc></Data> + 0 + false + + + 562 + Task 2.2 Collect the flags from Gothis house + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQHicAdult02T02.unity3d/PfGrpQHicAdult02T02</Asset><Recursive>false</Recursive></Setup><Offer><Type>Popup</Type><ID>905324</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>See the flag at the end of the board? Grab it, then fly into a straight dive off of the board to collect the rest of the flags. @@ Good luck! You'll need to pull up at the end of the dive, or you'll be a pancake!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905325</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoo! Wasn't that amazing? I love making that dive on Toothless! It reminds me of the first time we flew together.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFloatingFlag</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Collect</Type><Title><Text>Dive down and collect all 10 flags from Gothis house</Text><ID>905322</ID></Title><Desc><Text>Dive off the end of the platform from Gothi's house and collect all 10 flags.</Text><ID>905323</ID></Desc></Data> + 0 + false + + + 563 + Task 2.3 Collect 20 flags outside the school walls + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQAdultHic02T03.unity3d/PfGrpQAdultHic02T03</Asset><Recursive>false</Recursive></Setup><Offer><Type>Popup</Type><ID>905328</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now you've proven that you and your dragon have the guts to dive off of Gothi's house, let's see if you have the flying endurance to go with it. @@ Go to the school and collect 20 flags on the outskirts of the school walls! Start at the Landing Circle. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905329</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whew! That was one marathon of a flight! I feel like I need a nap just from watching! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFloatingFlag</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect 20 flags outside the school walls</Text><ID>905326</ID></Title><Desc><Text>Collect all 20 flags outside the school walls. Start at the Landing Circle and fly through the crack. </Text><ID>905327</ID></Desc></Data> + 0 + false + + + 564 + Task 2.4 Talk to Astrid in the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're acing these tests with no problems. We just have one more for you for today. This one will help you with your speed maneuvers. Astrid will help you run through the training. Go talk to her now!</Text><ID>905332</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is one of our favorite drills because Stormfly and I rock at it! I'll give you a hint. If you want to excel at this one, you'll need to be quick and skilled.</Text><ID>905333</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid in the school</Text><ID>905330</ID></Title><Desc><Text>Go talk to Astrid at the school about the next training exercise. </Text><ID>922727</ID></Desc></Data> + 0 + false + + + 565 + Task 2.5 Collect 15 flags in the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQAdultHic02T05.unity3d/PfGrpQAdultHic02T05</Asset><Recursive>false</Recursive></Setup><Offer><Type>Popup</Type><ID>905336</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've placed 15 flags around the Wilderness. You'll need to fly past rivers, around trees, and avoid the sharp rocks. Collect the flags as fast as you can!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905337</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Son of a half troll, that was impressive! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFloatingFlag</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect 15 flags in the Wilderness</Text><ID>905334</ID></Title><Desc><Text>Go to the Wilderness and collect 15 flags.</Text><ID>905335</ID></Desc></Data> + 0 + false + + + 566 + Task2.6 Talk to Hiccup by Flight Club in the schoo + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm going to have to practice and improve my times, or you might catch up to me! Go back to Hiccup and let me him know how you did.</Text><ID>905340</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm very impressed at how well you are bonding with {{dragon name}}. I think you have great potential to be one of the most exciting dragon trainers among us!</Text><ID>905341</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup by Flight Club at the Training Grounds</Text><ID>905338</ID></Title><Desc><Text>Talk to Hiccup by the Flight Club training tower.</Text><ID>929604</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201159 + true + 25 + 25 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201159 + true + 150 + 150 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201159 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201159 + true + 50 + 50 + + 0 + +
+ false +
+ + 1144 + Quest_Adult 3.0 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Saddle Up Viking</Text><ID>920485</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1143 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1144 + 567 + 0 + + + 2 + 1144 + 1145 + 0 + + + 1 + 1144 + 572 + 0 + + + 1 + 1144 + 573 + 0 + + + 1 + 1144 + 574 + 0 + + + 1 + 1144 + 575 + 0 + + + + 1 + 201166 + 0 + + 1145 + Task 3.2 + 4 +

1144

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I can use this to create a dragon saddle! We'll need to gather four more things to make it. @@ We'll need leather, metal nuts and bolts, some small leather straps and some oil to soften the leather. Help me find them, {{Name}}! </Text><ID>920484</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect the 4 items for the saddle</Text><ID>920483</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 1145 + 1146 + 0 + + + 2 + 1145 + 1147 + 0 + + + 2 + 1145 + 1148 + 0 + + + 2 + 1145 + 1149 + 0 + + + + 1 + 0 + 0 + + 1146 + Task 3.2.1 + 4 +

1145

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Collect Metal</Text><ID>920478</ID></Title><Desc><Text>Collect metal</Text><ID>920478</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1146 + 568 + 0 + + + + 1 + 201167 + 0 + + 568 + Collect metal + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hiccup's making a saddle? I hope he'll be able to do better than I did! These nuts and bolts should fit Hiccup's needs. Here you go, and wish him luck!</Text><ID>905051</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect metal nuts and bolts from Gobber</Text><ID>905049</ID></Title><Desc><Text>Talk to Gobber about getting nuts and bolts for the saddle.</Text><ID>936354</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 8419 + + 1 + 757 + 201167 + true + 2 + 2 + + 0 + +
+ false +
+ + 1147 + Task 3.2.2 + 4 +

1145

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Leather Straps</Text><ID>920480</ID></Title><Desc><Text>Collect leather straps from Stoick in Berk</Text><ID>920481</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1147 + 569 + 0 + + + + 1 + 201168 + 0 + + 569 + Collect leather straps + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I'm not sure where I got these, but I'm sure you'd use them better than me. Here we go!</Text><ID>905057</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect leather straps from Bucket</Text><ID>905055</ID></Title><Desc><Text>Collect leather straps from Bucket.</Text><ID>936355</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 8420 + + 1 + 758 + 201168 + true + 2 + 2 + + 0 + +
+ false +
+ + 1148 + Task 3.2.3 + 4 +

1145

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Collect oil from the Botanist</Text><ID>920482</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1148 + 570 + 0 + + + + 1 + 201170 + 0 + + 570 + Collect oil + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You want to soften leather? I have just the thing! I bought some coconut oil from Trader Johann last summer. That will soften the leather, and make it smell great too! </Text><ID>920708</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect oil from Phlegma</Text><ID>920706</ID></Title><Desc><Text>Collect oil from Phlegma at the Lookout.</Text><ID>933194</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8007 + + 1 + 760 + 201170 + true + 1 + 1 + + 0 + +
+ false +
+ + 1149 + Task 3.2.4 + 4 +

1145

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Leather</Text><ID>920479</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1149 + 571 + 0 + + + + 1 + 201169 + 0 + + 571 + Collect Leather + <Data><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You can have my old blanket. It helped me become the tough, gorgeous warrior I am today but I outgrew it years ago. Um... be really gentle with my blanky!</Text><ID>905054</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect leather from Snotlout</Text><ID>905052</ID></Title><Desc><Text>Collect leather from Snotlout by Fireball Frenzy.</Text><ID>922730</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7999 + + 1 + 759 + 201169 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 567 + Task 3.1 Talk to Hiccup by Flight Club New node + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We can ride our dragons for long periods of time. That can get pretty painful for rider and dragon! I've been experimenting on ways to make it comfortable for everyone. @@ I've thrown out some horrible ideas, but I'm getting closer to the solution! I just need a few more things to perfect it. Will you get me 2 black wool fleeces for padding? You can get them from your farm or from the store.</Text><ID>905063</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right! This looks like it'd soften the ride for your back end and your dragon both!</Text><ID>905064</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver 2 black wool fleeces to Hiccup</Text><ID>905061</ID></Title><Desc><Text>Get 2 black wool fleeces from your farm or the Store. Deliver them to Hiccup by the Flight Club training tower.</Text><ID>929606</ID></Desc></Data> + 0 + false + + + 572 + Task 3.3 Deliver the saddle parts to Hiccup + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These pieces by themselves don't seem like much, but putting them together makes them amazing. Please bring them back to me.</Text><ID>905067</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is going to change the way we ride dragons! That is, it will if it works this time. I'm sure it will work.</Text><ID>905068</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8007</Value></Pair><Pair><Key>ItemDescription</Key><Value>Oil</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8420</Value></Pair><Pair><Key>ItemDescription</Key><Value>Leather Straps</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7999</Value></Pair><Pair><Key>ItemDescription</Key><Value>Leather</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8419</Value></Pair><Pair><Key>ItemDescription</Key><Value>Metal pieces</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the saddle parts to Hiccup</Text><ID>905065</ID></Title><Desc><Text>Bring the leather, bolts and oil to Hiccup by the Flight Club training tower.</Text><ID>929607</ID></Desc></Data> + 0 + false + + + 573 + Task 3.4 Play Fireball Frenzy with Snotlout + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay, I'll get to work right away on this. Would you go play Fireball Frenzy for now? I think Snotlout's feeling a bit down, now that he gave us something that holds many of his childhood memories. He could use a friend right now.</Text><ID>905071</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, {{Name}}, I'm glad you swung by! I need to get my competitive blood pumping to get rocking again!</Text><ID>905072</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Fireball Frenzy with Snotlout</Text><ID>905069</ID></Title><Desc><Text>Play Fireball Frenzy with Snotlout. </Text><ID>922733</ID></Desc></Data> + 0 + false + + + 574 + Task 3.5 Go to Johanns Trading post and buy a sadd + <Data><Offer><Type>Popup</Type><ID>905075</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Eureka! The saddles are ready and they are amazing! Dragons fly much faster when they feel comfortable, so they love these saddles! @@ Go to Johann's trading post and buy one!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905076</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're going to love this! You need to put it on {{dragon name}} by going into the Dragon Customization tab inside your Journal! Thanks for your help, bud!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGoodJob</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>CategoryID</Key><Value>380</Value></Pair></Objective><Type>Buy</Type><Title><Text>Buy a saddle in Johann's Trading Post</Text><ID>905073</ID></Title><Desc><Text>Buy a new dragon saddle in Johann's Trading post. </Text><ID>905074</ID></Desc><AutoComplete><Pair><Key>CategoryItem</Key><Value>380</Value></Pair></AutoComplete></Data> + 0 + false + + + 575 + Task 3.6 Fly with your new saddle + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Wilderness_AboveDragonsMaw</Location><Recursive>false</Recursive></Setup><Offer><Type>Popup</Type><ID>905079</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ready to test drive this saddle? Fly up to the highest peak above the Dragon's Maw in the Wilderness. It's just a short sprint to see how the saddle feels. I can see if there's any adjustments I need to make!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905080</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It seems to be a pretty good fit. Thank you {{Name}}, these saddles should be a big hit and I couldn't have created them without your help! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Wilderness_AboveDragonsMaw</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the top of the mountain in the Wilderness</Text><ID>905077</ID></Title><Desc><Text>Fly to the highest point above the Dragon's Maw in the Wilderness. Watch for the beacon! </Text><ID>905078</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201166 + true + 50 + 50 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 201166 + true + 200 + 200 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201166 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201166 + true + 50 + 50 + + 0 + +
+ false +
+ + 1150 + Quest_Side_3_1 + 45 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_BlueChicken</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Gift for Hiccup</Text><ID>920494</ID></Title><Desc><Text>Stoick wants to give a gift to his son.</Text><ID>920495</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 4 + 8,11 + 0 + true + + + 3 + 2182 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1150 + 579 + 0 + + + 1 + 1150 + 580 + 0 + + + 1 + 1150 + 581 + 0 + + + 2 + 1150 + 1151 + 0 + + + 1 + 1150 + 583 + 0 + + + 2 + 1150 + 1152 + 0 + + + 1 + 1150 + 585 + 0 + + + 1 + 1150 + 586 + 0 + + + + 1 + 201186 + 0 + + 1151 + Quest_Side_3_1_4 + 45 +

1150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1151 + 582 + 0 + + + + 2 + 201187 + 0 + + 582 + Task 3.4 Talk to Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>You'll need a sturdy piece of wood to make an excellent battle axe. I know of no one better at woodworking than the Botanist. Talk to her for more help.</Text><ID>920711</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I'd love to pitch in! Hiccup is such a great asset to the school. He can have this handle. I made it out of a sturdy, beautiful elm tree, back when I was a fearsome warrior. Elm wood is often pliant and resistant to decay!</Text><ID>920712</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Talk to Phlegma at the Lookout for her axe handle.</Text><ID>932725</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7974 + + 1 + 762 + 201187 + true + 1 + 1 + + 0 + +
+ false + + + 1152 + Quest_Side_3_1_6 + 45 +

1150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Gobber's Corn</Text><ID>920491</ID></Title><Desc><Text>Give Gobber his corn.</Text><ID>920492</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1152 + 584 + 0 + + + + 1 + 201201 + 0 + + 584 + Task 3.6 Deliver 6 corn + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Blacksmithing is tough! I need to be happy and full if you want my best work. How about this? You fill my belly while I fill the furnace. Give me 6 ears of corn. You can get that from your farm or the store!</Text><ID>905117</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Yes! That's just what I wanted! That's a good reward for a good job done, if I can say so myself. Here's the axe.</Text><ID>905118</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver 6 ears of corn to Gobber</Text><ID>905115</ID></Title><Desc><Text>Bring Gobber 6 ears of corn. You can get corn from your farm or from the store.</Text><ID>936500</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8502 + + 1 + 767 + 201201 + true + 1 + 1 + + 0 + +
+ false +
+ + 579 + Task 3.1 Speak with Gobber + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I've just heard from Gobber. He says that he has something urgent to tell you about our chief. Can you speak with Gobber and see what this is about?</Text><ID>905125</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hello there, wee {{greeting}}. We need to give Hiccup the ceremonial chieftain's battle axe! I hope you're ready to help out. +You know I haven't made an axe in ages. I was scared I'd get rusty!</Text><ID>905126</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberIdle03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Gobber at New Berk</Text><ID>905123</ID></Title><Desc><Text>Talk to Gobber.</Text><ID>923241</ID></Desc></Data> + 0 + false + + + 580 + Task 3.2 Talk to the Headmaster + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>A Viking battle axe has two essential parts. The beauty of the weapon is that it's simple and easy to use! +Before the Headmaster became the teacher of the School of Dragons, he was a fierce Viking warrior. Go talk to him at the school and ask him for his old axe blade!</Text><ID>921663</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I hadn't thought about my warrior days in many years, {{Name}}. Your request has brought up many memories for me.</Text><ID>921664</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGreeting</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak to the Headmaster</Text><ID>921661</ID></Title><Desc><Text>Speak to the Headmaster at the school.</Text><ID>936502</ID></Desc></Data> + 0 + false + + + 581 + Task 3.3 Find the blade + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide3_1T03.unity3d/PfGrpQSide3_1T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>The handle of my old battle axe broke years ago, but I kept the blade. I left the blade somewhere near the school building.</Text><ID>905133</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>That axe was a huge help to me when I was fighting dragons. I don't need to do that anymore, thank goodness.</Text><ID>905134</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectBattleAxeHead</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the blade</Text><ID>905131</ID></Title><Desc><Text>Find the blade at the School.</Text><ID>936503</ID></Desc></Data> + 0 + false + + + 583 + Task 3.5 Deliver parts to Gobber + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Great job getting it all together! Bring it back to me so I can get started on my handiwork.</Text><ID>905137</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>This feels like the good old days, when I used to make battle axes and other creative weapons every day! I have to admit, it's better now that the dragons are our friends.@@Maybe those days weren't that good after all.</Text><ID>905138</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarkerGobberSmith</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7974</Value></Pair><Pair><Key>ItemDescription</Key><Value>Axe Handle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarkerGobberSmith</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>8501</Value></Pair><Pair><Key>ItemDescription</Key><Value>Battle Axe Head</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver axe parts to Gobber</Text><ID>905135</ID></Title><Desc><Text>Deliver the Axe Handle and the axe blade to Gobber at New Berk.</Text><ID>936504</ID></Desc></Data> + 0 + false + + + 585 + Task 3.7 Speak to Stoick + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I think it's one of my best work, but I want to make sure it fits my friend's needs. Can you take the axe over to Valka and ask her opinion? After all, her husband had the last one!</Text><ID>905141</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh my! Doesn't that look just... sharp. Well, I suppose a blunt battle axe wouldn't be much of a battle axe. +I don't know if it suits Hiccup, but tradition is tradition.</Text><ID>905142</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Valka</Text><ID>905139</ID></Title><Desc><Text>Show Valka the axe.</Text><ID>936505</ID></Desc></Data> + 0 + false + + + 586 + Task 3.8 Give Hiccup axe + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>There's no point in dallying! Please give this to Hiccup.</Text><ID>905145</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A battle axe? I appreciate it, but maybe we could start some new traditions instead of sticking to outdated ones. I'll have to talk to Gobber.</Text><ID>905146</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestSide3_1.unity3d/DlgHiccupBerk02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8502</Value></Pair><Pair><Key>ItemDescription</Key><Value>Battle Axe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup the Battle Axe</Text><ID>905143</ID></Title><Desc><Text>Give Hiccup the battle axe.</Text><ID>936506</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201186 + true + 25 + 25 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 201186 + true + 200 + 200 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201186 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201186 + true + 50 + 50 + + 0 + +
+ false +
+ + 1155 + Quest_Adult 4.0 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Forming the Berk Watch</Text><ID>920500</ID></Title><Desc><Text>Medallion quests</Text><ID>920501</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1144 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1155 + 598 + 0 + + + 2 + 1155 + 1156 + 0 + + + 2 + 1155 + 1157 + 0 + + + 1 + 1155 + 605 + 0 + + + 1 + 1155 + 606 + 0 + + + 1 + 1155 + 607 + 0 + + + 2 + 1155 + 1158 + 0 + + + 1 + 1155 + 610 + 0 + + + + 1 + 201199 + 0 + + 1156 + Quest 4.2 + 11 +

1155

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the gold to Hiccup</Text><ID>905166</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1156 + 599 + 0 + + + + 1 + 201190 + 0 + + 599 + Task 4.2 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Only the most skilled dragon trainers should help out in the defense of the village. After all, it could get very dangerous! I wanted to give a special medallion to every trainer who helps to show they're elite. @@ Can you take these gold pieces to Hiccup? I'll tell him you're on your way.</Text><ID>905168</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey there {{Name}}, I heard about Astrid's plan for some medallions. It's easy work, so I'll have it ready for you in the blink of an eye.</Text><ID>905169</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7991</Value></Pair><Pair><Key>ItemDescription</Key><Value>Gold Nugget</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the gold to Hiccup</Text><ID>905166</ID></Title><Desc><Text>Talk to Hiccup and give him the gold you collected.</Text><ID>936488</ID></Desc></Data> + 0 + false + + + 5 +

6

+ 8504 + + 1 + 763 + 201190 + true + 5 + 5 + + 0 + +
+ false + + + 1157 + Quest 4.3 + 11 +

1155

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you go! These medallions will be the pride of any dragon trainer who has it. Can you deliver these medallions to the senior dragon trainers here? You'll find them all around Berk and the school.</Text><ID>920498</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Deliver the Medallions</Text><ID>920497</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1157 + 601 + 0 + + + 1 + 1157 + 602 + 0 + + + 1 + 1157 + 603 + 0 + + + 1 + 1157 + 604 + 0 + + + 1 + 1157 + 600 + 0 + + + + 1 + 201253 + 0 + + 600 + Task 4.3.1 Astrid + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow, it looks even better than I expected! Hiccup is really great at this. Thank you so much for helping out! </Text><ID>905153</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8504</Value></Pair><Pair><Key>ItemDescription</Key><Value>Berk Watch Medal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the medallion to Astrid</Text><ID>905151</ID></Title><Desc><Text>Give Astrid a Berk Watch Medal.</Text><ID>936483</ID></Desc></Data> + 0 + false + + + 601 + Task 4.3.2 Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! Oh! Did you know Vikings have used medallions for ages? I'm glad I have one of my very own!</Text><ID>905156</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>8504</Value></Pair><Pair><Key>ItemDescription</Key><Value>Berk Watch Medal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the medallion to Fishlegs</Text><ID>905154</ID></Title><Desc><Text>Give Fishlegs a Berk Watch Medal.</Text><ID>936484</ID></Desc></Data> + 0 + false + + + 602 + Task 4.3.3 Ruffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Far out! I always wanted a pretty medallion! Wait, my dumb brother gets one too? You know, this Berk Watch used to be cool. It used to have standards... then we had to let Tuffnut in. </Text><ID>905159</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8504</Value></Pair><Pair><Key>ItemDescription</Key><Value>Berk Watch Medal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the medallion to Ruffnut</Text><ID>905157</ID></Title><Desc><Text>Give Ruffnut a Berk Watch Medal.</Text><ID>936485</ID></Desc></Data> + 0 + false + + + 603 + Task 4.3.4 Snotlout + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You can rest easy, {{Name}}. I'll scare off any evildoers with my ferocious look. Seriously, look at my dragon. Who would want to mess with a dragon like that?</Text><ID>905162</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8504</Value></Pair><Pair><Key>ItemDescription</Key><Value>Berk Watch Medal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the medallion to Snotlout</Text><ID>905160</ID></Title><Desc><Text>Give Snotlout a Berk Watch Medal.</Text><ID>936486</ID></Desc></Data> + 0 + false + + + 604 + Task 4.3.5 Tuffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You were wise to seek out help from the world's deadliest dragon trainer! I mean me, by the way, not Hiccup. </Text><ID>905165</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8504</Value></Pair><Pair><Key>ItemDescription</Key><Value>Berk Watch Medal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the medallion to Tuffnut</Text><ID>905163</ID></Title><Desc><Text>Give Tuffnut a Berk Watch Medal.</Text><ID>936487</ID></Desc></Data> + 0 + false + + false +
+ + 1158 + Quest 4.7 + 11 +

1155

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the coin to Hiccup</Text><ID>920496</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1158 + 609 + 0 + + + + 1 + 201200 + 0 + + 609 + Task 4.7 Give to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm glad to call you the newest member of the Berk Watch! Give that coin and my two flags to Hiccup and he'll hand you your own medal.</Text><ID>905149</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid told me how well you did in her trials. Great job! I know I can depend on you to be a skilled dragon rider. Here, I'll give you a shirt so you can wear the medal around your neck. Check your clothes and put it on!</Text><ID>905150</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8418</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rusty Coin</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8500</Value></Pair><Pair><Key>ItemDescription</Key><Value>Racing Flag</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the coin and flags to Hiccup</Text><ID>905147</ID></Title><Desc><Text>Give the coin and 2 flags to Hiccup.</Text><ID>929608</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8520 + + 1 + 773 + 201200 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 8521 + + 1 + 772 + 201200 + true + 1 + 1 + + 0 + +
+ false +
+ + 598 + Task 4.1 Collect gold + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQAdultAst04T01.unity3d/PfGrpQAdultAst04T01</Asset><Recursive>false</Recursive></Setup><Offer><Type>Popup</Type><ID>905172</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We are so lucky to be able to train dragons! They're such amazing creatures, full of majesty and strength. As dragon trainers, I think we have a duty to put that power to good use. @@ There's a lot of things out there that could harm Berk. We need to defend Berk and the School from all threats, and our dragons will help! Let's get started. Can you go to the wilderness and find 7 gold nuggets?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905173</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Those are exactly what I wanted! They're the perfect size and shape!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockGold</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect gold in the Wilderness</Text><ID>905170</ID></Title><Desc><Text>Collect 7 pieces of gold from the Wilderness.</Text><ID>905171</ID></Desc></Data> + 0 + false + + + 605 + Task 4.4 Fireball Frenzy + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The Headmaster told me that you're progressing really well in your studies. Well, show me what you can do and I'll let you join the Berk Watch. It won't be easy, {{Name}}. I have very high standards! Show me your score in Fireball Frenzy.</Text><ID>905176</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That was pretty good! That was almost as good as my runs through Fireball Frenzy. I think you're a shoe-in for the Berk Watch.</Text><ID>905177</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Test yourself in Fireball Frenzy</Text><ID>905174</ID></Title><Desc><Text>Show your stuff in Fireball Frenzy at the Training Grounds.</Text><ID>933195</ID></Desc></Data> + 0 + false + + + 606 + Task 4.5 Find the Flag + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQAdultAst04T05.unity3d/PfGrpQAdultAst04T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Snotlout's right, you did a great job at Fireball Frenzy! Show me your dragon flying skills are up to snuff. Fly out to Berk - our old home - and find a flag I left on the sea and find the flag I left in the village!</Text><ID>905180</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Yeah! You're the Viking!</Text><ID>905181</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRacingFlag</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the flags at the edges of Berk</Text><ID>905178</ID></Title><Desc><Text>Fly to the edges of Berk and find the flags.</Text><ID>936489</ID></Desc></Data> + 0 + false + + + 607 + Task 4.6 Find the hidden coin + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQAdultAst04T06.unity3d/PfGrpQAdultAst04T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>How's your hunting skills, {{Name}}? For your final challenge, I'll hide a coin within the old town. You'll need to have better vision than a Nadder to find it. Good luck!</Text><ID>905184</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're wonderful!</Text><ID>905185</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRustyCoin</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the hidden coin in Berk</Text><ID>905182</ID></Title><Desc><Text>Find the hidden coin in Berk to prove you've got what it takes.</Text><ID>936490</ID></Desc></Data> + 0 + false + + + 610 + Task 4.8 Talk to Valka + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you go and tell my mom Valka that you're now a part of the Berk Watch? She should be standing by the Great Hall.</Text><ID>905188</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It's dangerous work but it's necessary. I'll count on you to keep your eye out for suspicious behavior. Remember to be careful.</Text><ID>905189</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka about the Berk Watch</Text><ID>905186</ID></Title><Desc><Text>Talk to Valka about the Berk Watch.</Text><ID>929614</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201199 + true + 25 + 25 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201199 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201199 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201199 + true + 50 + 50 + + 0 + +
+ false +
+ + 1159 + Quest_Ruffnut #1 + 13 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ruffnut's Fun Stuff Hour</Text><ID>920504</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1114 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1159 + 611 + 0 + + + 1 + 1159 + 612 + 0 + + + 1 + 1159 + 613 + 0 + + + 1 + 1159 + 614 + 0 + + + 1 + 1159 + 615 + 0 + + + + 1 + 201191 + 0 + + 611 + Task R1.1 Gather Chickens + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQRuff01T01.unity3d/PfGrpQRuff01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hey {{Name}}, do you really think you have what it takes to keep up with me? My brother and I are pretty extreme! You'll need to try hard to keep up. I'm going to release chickens around the old village. Gather them all up!</Text><ID>905196</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Not bad, man. I only have one complaint. You're being too quiet. You need to bring the ruckus!</Text><ID>905197</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWChickenWhite</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather the chickens in Berk</Text><ID>905194</ID></Title><Desc><Text>Find the 10 chickens that were released in Berk.</Text><ID>936495</ID></Desc></Data> + 0 + false + + + 612 + Task R1.2 Light 3 Fires + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>If there's one thing I'm good at, it's causing trouble. I know that a good dragon fire will catch everyone's attention. I want you to light up a fire pit! </Text><ID>905200</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yeah! {{dragon name}} is so great!</Text><ID>905201</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfFirePit</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonFiringCSM</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Light a Fire Pit</Text><ID>905198</ID></Title><Desc><Text>Light a fire pit in Berk.</Text><ID>934029</ID></Desc></Data> + 0 + false + + + 613 + Task R1.3 Run to Berk + <Data><Offer><Type>Popup</Type><ID>905204</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I get all riled up when my dragon does something cool. Then I have to do something fun to burn off that energy. Run to behind the waterfall on the beach in Berk. Don't cheat by flying on your dragon! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905205</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You made it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_RuffnutVisit</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuffnutVisit</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair></Objective><Type>Visit</Type><Title><Text>Run to the end of Berk</Text><ID>905202</ID></Title><Desc><Text>Run to the edge of Berk.</Text><ID>905203</ID></Desc></Data> + 0 + false + + + 614 + Task R1.4 Collect 10 flags + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQRuff01T04.unity3d/PfGrpQRuff01T04</Asset><Recursive>false</Recursive></Setup><Offer><Type>Popup</Type><ID>905208</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Doesn't running around give you such a boost? I always feel so happy after exercising. I love hiding Tuffnut's things and watching him search for them. I placed 10 flags within the wilderness. It'll be a hoot to find them!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905209</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Good eyes!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFloatingFlag</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect 10 flags in the Wilderness</Text><ID>905206</ID></Title><Desc><Text>Collect the 10 flags within the Wilderness.</Text><ID>905207</ID></Desc></Data> + 0 + false + + + 615 + Task R1.5 Deliver wool + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>My typical day ends when I have to go back and do my chores for my parents. You should have to do some chores too. Give me 3 fleeces of white wool and 3 fleeces of black wool?</Text><ID>921670</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hehe, thanks for helping me with my chores. You're much more helpful than my stupid brother.</Text><ID>921671</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver 3 white wool and 3 black wool</Text><ID>921668</ID></Title><Desc><Text>Give Ruffnut 3 white wool and 3 black wool.</Text><ID>936496</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201191 + true + 25 + 25 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201191 + true + 150 + 150 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201191 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201191 + true + 50 + 50 + + 0 + +
+ false +
+ + 1163 + Quest_Cloud #1 + 10 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_GreatHallExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCloudsDO</Scene><Asset>RS_DATA/PfGrpQClouds01T02.unity3d/PfGrpQClouds01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Sky High</Text><ID>13646</ID></Title><Desc><Text>Help look at the clouds in Berk's sky.</Text><ID>920626</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1096 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1163 + 622 + 0 + + + 1 + 1163 + 623 + 0 + + + 1 + 1163 + 624 + 0 + + + 1 + 1163 + 655 + 0 + + + 1 + 1163 + 625 + 0 + + + 1 + 1163 + 626 + 0 + + + + 2 + 201206 + 0 + + 622 + Task 1.1 Meet the Botanist + <Data><Offer><Type>Popup</Type><ID>921103</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! Meatlug accidentally sat on Phlegma's telescope and broke it. Now she won't know what [c][3eebff]weather[/c][ffffff] is coming! @@ The weather describes what the atmosphere is doing. [c][3eebff]Atmosphere[/c][ffffff] is the air all around and above us. Can you help her out while Hiccup and I try to fix this telescope? She'll meet you by the Great Hall in Berk.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921104</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thanks for helping out, {{Name}}. I need to know what weather is coming so I can prepare my farm. By studying the [c][3eebff]atmosphere[/c][ffffff], I can tell if [c][3eebff]rain[/c][ffffff] or [c][3eebff]snow[/c][ffffff] is coming, the [c][3eebff]temperature[/c][ffffff] of the air, and even [c][3eebff]wind speeds[/c][ffffff].</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Phlegma in Berk</Text><ID>921101</ID></Title><Desc><Text>Meet Phlegma by the Great Hall in Berk.</Text><ID>921102</ID></Desc></Data> + 0 + false + + + 623 + Task 1.2 Fly through the fog + <Data><Offer><Type>Popup</Type><ID>921107</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I can't see the clouds from here because of the fog, but you'll be able to get a better look if you fly through it. Gothi's hut is on top of a cliff above us in Berk. Fly up toward her house!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921108</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great job!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly through the fog at Gothi's hut</Text><ID>921105</ID></Title><Desc><Text>Fly high above Berk and soar through the fog by Gothi's hut.</Text><ID>921106</ID></Desc></Data> + 0 + false + + + 624 + Task 1.3 Visit the clouds + <Data><Offer><Type>Popup</Type><ID>921111</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Different types of clouds can say a lot about the weather. Get to the roof of Gothi's hut. That should give you a great view of the sky!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921112</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's great! You know, it's not easy flying that high. You must be paying close attention to your Flight Club lessons! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CloudVisit</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on the roof of Gothi's hut</Text><ID>921109</ID></Title><Desc><Text>Land on the roof of Gothi's hut to get a better look at the clouds above the fog.</Text><ID>921110</ID></Desc></Data> + 0 + false + + + 625 + Task 1.4 Talk to Botanist + <Data><Setup><Scene>BerkCloudsDO</Scene><Asset>RS_DATA/PfGrpQClouds01T02.unity3d/PfGrpQClouds01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>921115</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Can you pick out the cirrus cloud from these choices?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizClouds01.unity3d/PfUiQuizClouds01</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Talk to Phlegma and choose the cirrus cloud.</Text><ID>921114</ID></Desc></Data> + 0 + false + + + 626 + Task 1.5 Return to Fishlegs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>[c][3eebff]Cirrus clouds[/c][ffffff] mean that there will be some change in weather soon, but there's nothing drastic coming right now. I'm glad they weren't nimbus clouds! Those usually bring rain. @@ Can you go back to Fishlegs and tell him that he doesn't need to rush to fix the telescope? I bet he's worrying about the damage Meatlug did!</Text><ID>921118</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>So there's no sudden change in weather right now? Whew! I thought I'd have to rush to fix her telescope. I guess Hiccup and I have a little bit more time to do it right. Thanks, {{Name}}.</Text><ID>921119</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs at the Lookout</Text><ID>921116</ID></Title><Desc><Text>Talk to Fishlegs in front of his house at Berk.</Text><ID>936491</ID></Desc></Data> + 0 + false + + + 655 + Task 1.3.1 Come back to Botanist + <Data><Offer><Type>Popup</Type><ID>921122</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You have a better view of the clouds than me! Can you come back to me and tell me what the clouds looked like? Fly back down through the fog to get back to Berk.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921123</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Interesting! Those sound like [c][3eebff]cirrus clouds.[/c][ffffff] Cirrus clouds float high in the sky. They tend to look thin and wispy because high winds blow them into streamers.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Fly down and go back to Phlegma</Text><ID>921120</ID></Title><Desc><Text>Fly down through the fog layer and meet Phlegma.</Text><ID>921121</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201206 + true + 50 + 50 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201206 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201206 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201206 + true + 200 + 200 + + 0 + +
+ false +
+ + 1164 + Quest_Clouds #2 + 7 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQClouds02T07.unity3d/PfGrpQClouds02T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCloudsDO</Scene><Asset>RS_DATA/PfGrpQClouds02T01.unity3d/PfGrpQClouds02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dangerous Drought</Text><ID>920531</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1163 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1164 + 627 + 0 + + + 1 + 1164 + 628 + 0 + + + 2 + 1164 + 1165 + 0 + + + 1 + 1164 + 632 + 0 + + + 1 + 1164 + 633 + 0 + + + 1 + 1164 + 634 + 0 + + + 1 + 1164 + 641 + 0 + + + 1 + 1164 + 642 + 0 + + + 1 + 1164 + 643 + 0 + + + 1 + 1164 + 650 + 0 + + + + 2 + 201207 + 0 + + 1165 + Quest Clouds 2.2 + 7 +

1164

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Bucket's Bucket</Text><ID>921612</ID></Title><Desc><Text>Getting Bucket's bucket.</Text><ID>921613</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1165 + 631 + 0 + + + + 2 + 201210 + 0 + + 631 + Task 2.2.1 Bucket + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't know what to do. I don't think well under pressure! Um, I guess we can collect water from the lake, but I 'm not sure that will be enough. @@ Let's start with the basics. We'll need something to carry the water. Talk to Bucket by the lake. He'll have extra buckets!</Text><ID>904425</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I really like buckets. It must be the bucket on my noggin that really drives me to collect the little wooden things! You can have this one. I tried wearing it as a shoe, but I normally wear a size 13.</Text><ID>904426</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Bucket for an extra bucket</Text><ID>904423</ID></Title><Desc><Text>Talk to Bucket by the lake at the school to get his extra bucket.</Text><ID>936357</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8417 + + 1 + 806 + 201210 + true + 1 + 1 + + 0 + +
+ false + + + 627 + Task 2.1 Go to Berk + <Data><Offer><Type>Popup</Type><ID>920833</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I need your help! We feed many people and dragons with our crops but they are starting to die. We've had a scorching hot summer with little rain. When this happens, it's called a [c][3eebff]drought[/c][ffffff]. @@ I hope we have some rain coming. Can you fly high above Berk and see what type of clouds are floating above us? Get to the roof of Gothi's hut. That will give you a clear view of the sky!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920834</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I think those are cumulus clouds. They're often referred to as "fair-weather clouds" because they don't necessarily mean that rain is coming. I guess we won't find an easy solution to the drought.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CloudVisit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the roof of Gothi's hut in Berk</Text><ID>921519</ID></Title><Desc><Text>Fly high into the fog in Berk and fly to the roof of Gothi's hut to take a look at the clouds.</Text><ID>920832</ID></Desc></Data> + 0 + false + + + 628 + Task 2.2 Talk to Fishlegs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Can you talk to Fishlegs and see if he knows a way to save my plants? We need to find a solution right away!</Text><ID>920837</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! That's a major problem. I read that plants need [c][3eebff]water[/c][ffffff] to grow, along with: [c][3eebff]light[/c][ffffff], [c][3eebff]air[/c][ffffff], [c][3eebff]nutrients[/c][ffffff], and [c][3eebff]time[/c][ffffff]. Without these things, plants won't flourish.</Text><ID>920838</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs about the drought problem.</Text><ID>936492</ID></Desc></Data> + 0 + false + + + 632 + Task 2.3 Fill up bucket + <Data><Offer><Type>Popup</Type><ID>904437</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gross, that bucket smells just like his foot. The stench reaches all the way over here! +Can you fill it up with water at the lake in school? You can just wade in to the water to get some.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>904438</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That's the way to do it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_School_WaterArea</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fill up your bucket at the school lake</Text><ID>904435</ID></Title><Desc><Text>Swim in the lake at the school to fill your bucket.</Text><ID>904436</ID></Desc></Data> + 0 + false + + + 633 + Task 2.4 Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You should take the bucket to the Botanist before the water spills.</Text><ID>921951</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Oh man, did you clean your foot with this bucket? It reeks! +Still, this stinky water is really going to help. Thank you.</Text><ID>921952</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Phlegma at the Lookout</Text><ID>921949</ID></Title><Desc><Text>Talk to Phlegma in front of the greenhouse.</Text><ID>923003</ID></Desc></Data> + 0 + false + + + 634 + Task 2.5 Talk to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That bucket of water will help until the drought ends, but we might need a bigger solution to our problem. +Can you talk to Hiccup about it?</Text><ID>921505</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You need a way to get a lot of water really quickly? Let's put our heads together for a solution.</Text><ID>921506</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud02.unity3d/DlgHiccupQCloud02T05End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about a solution to the drought</Text><ID>921503</ID></Title><Desc><Text>Talk to Hiccup at the school about the drought.</Text><ID>922955</ID></Desc></Data> + 0 + false + + + 641 + Task 2.6 Fly outside the caldera + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I think I've got it! Water's a [c][3eebff]liquid[/c][ffffff] and changes into different forms depending on its temperature. [c][3eebff]Clouds[/c][ffffff] are heated water in a [c][3eebff]vapor[/c][ffffff] form. When the temperature of water drops, it turns into a [c][3eebff]solid[/c][ffffff] called [c][3eebff]ice[/c][ffffff]. @@ I bet your dragon can carry a chunk of ice back to Phlegma! The best place to find a lot of ice is outside the caldera. I see a lot of ice floating in the sea there. Can you fly through the crack in the mountains and look for an iceberg in the water?</Text><ID>921955</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud02.unity3d/DlgHiccupQCloud02T06Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is great! If you bring back some ice, you can [c][3eebff]melt[/c][ffffff] that into its liquid state - water!</Text><ID>921956</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud02.unity3d/DlgHiccupQCloud02T06End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BreakableIce</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly outside the caldera to the chunk of ice</Text><ID>921953</ID></Title><Desc><Text>Fly to the chunk of ice floating outside the caldera at the school.</Text><ID>922956</ID></Desc></Data> + 0 + false + + + 642 + Task 2.7 Chop the Ice + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Land on the iceberg, hop off your dragon, and pick off a chunk of ice with your axe!</Text><ID>921959</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud02.unity3d/DlgHiccupQCloud02T07Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's great! We're going to solve Phlegma's problem in no time.</Text><ID>921960</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud02.unity3d/DlgHiccupQCloud02T07End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BreakableIce</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWIceBlockBounce</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop a piece of ice</Text><ID>921957</ID></Title><Desc><Text>{{Input}} on the ice and use your axe to chop off a piece of the ice.</Text><ID>922957</ID></Desc></Data> + 0 + false + + + 643 + Task 2.8 Return + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks for your help {{Name}}. Take this back to Phlegma and say hi to her for me!</Text><ID>921517</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud02.unity3d/DlgHiccupQCloud02T08Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Whoa, that's a lot of ice. I bet if all your classmates helped out, we can water all of my crops!</Text><ID>921518</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Bring the chunk of ice to Phlegma at the Lookout.</Text><ID>923004</ID></Desc></Data> + 0 + false + + + 650 + Task 2.9 Melt the Ice + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQClouds02T08.unity3d/PfGrpQClouds02T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I know! We can melt the ice quickly by shooting fireballs at it. I'll shave off a chunk of ice and place it on a watering device in the greenhouse behind me. @@ {{Input}} on the ice block, then {{input}} on the button so {{dragon name}} can shoot a fireball! That should be enough to melt it into water.</Text><ID>920853</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great job! We'll have plenty of water for my crops. Thank you for your help. We'll get out of this drought in no time!</Text><ID>920854</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfWateringDevice</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectDWIceBlock</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot a fireball on the ice block</Text><ID>920851</ID></Title><Desc><Text>Enter the greenhouse, {{Input}} on the ice block and shoot a fireball.</Text><ID>925949</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201207 + true + 50 + 50 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201207 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201207 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201207 + true + 200 + 200 + + 0 + +
+ false +
+ + 1166 + Quest_Clouds #3 + 7 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWKidC.unity3d/PfDWKidC</Asset><Location>PfMarker_KidC</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Clueless Queries</Text><ID>10130</ID></Title><Desc><Text>Clueless has some questions about your feats.</Text><ID>920621</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1164 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1166 + 635 + 0 + + + 1 + 1166 + 636 + 0 + + + 1 + 1166 + 637 + 0 + + + 1 + 1166 + 638 + 0 + + + 1 + 1166 + 639 + 0 + + + + 1 + 201211 + 201212 + + 635 + Task 3.1 Talk to Clueless + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you for helping out with the water, {{Name}}! You were amazing, and I wasn't the only one who noticed. Clueless watched you and had a few questions. Would you mind humoring me and talk to him about what you did?</Text><ID>921076</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Hi {{Name}}. I was really impressed with {{dragon name}} and what you guys did. Can you explain to me exactly what that was?</Text><ID>921077</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Clueless</Text><ID>921074</ID></Title><Desc><Text>Talk to Clueless at the Lookout.</Text><ID>922744</ID></Desc></Data> + 0 + false + + + 636 + Task 3.2 Answer Clueless's question + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQClouds03T02.unity3d/PfUiQuizQClouds03T02</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Clueless and answer his question</Text><ID>905377</ID></Title><Desc><Text>Talk to Clueless and answer his first question.</Text><ID>905378</ID></Desc></Data> + 0 + false + + + 637 + Task 3.3 Answer 2 + <Data><Offer><Type>Popup</Type><ID>905381</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Okay, so you gave the plants water. But, uh, why? I don't understand. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQClouds03T03.unity3d/PfUiQuizQClouds03T03</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer Clueless's second question</Text><ID>905379</ID></Title><Desc><Text>Talk to Clueless and answer his second question.</Text><ID>905380</ID></Desc></Data> + 0 + false + + + 638 + Task 3.4 Answer 3 + <Data><Offer><Type>Popup</Type><ID>905384</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Okay, but why was there no water? I don't get it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQClouds03T04.unity3d/PfUiQuizQClouds03T04</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer Clueless's next question</Text><ID>905382</ID></Title><Desc><Text>Talk to Clueless and answer his third question.</Text><ID>905383</ID></Desc></Data> + 0 + false + + + 639 + Task 3.5 Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Amazing! Thanks for explaining everything! Oh, I think Phlegma wants to talk to you... I don't know why.</Text><ID>921080</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I saw how patiently you answered all of Clueless's questions, {{Name}}. I was really impressed. Students like you make teaching worthwhile!</Text><ID>921081</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Phlegma</Text><ID>920867</ID></Title><Desc><Text>Talk to Phlegma at the Lookout.</Text><ID>922775</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201211 + true + 25 + 25 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201211 + true + 150 + 150 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 201211 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201211 + true + 200 + 200 + + 0 + +
+ false +
+ + 1167 + Quest_Clouds #4 + 4 +

+ <Data><Setup><Scene>BerkCloudsDO</Scene><Asset>RS_DATA/PfGrpQClouds04T01.unity3d/PfGrpQClouds04T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ByTelescope</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_ByTelescopeToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Another Cloudy Day</Text><ID>920622</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1166 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1167 + 644 + 0 + + + 1 + 1167 + 645 + 0 + + + 1 + 1167 + 656 + 0 + + + 1 + 1167 + 646 + 0 + + + 1 + 1167 + 647 + 0 + + + 1 + 1167 + 648 + 0 + + + 1 + 1167 + 649 + 0 + + + 1 + 1167 + 651 + 0 + + + 1 + 1167 + 652 + 0 + + + + 1 + 201213 + 0 + + 644 + Task 4.1 Fly high + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We still can't see the approaching weather, but Bucket's head is hurting. You know what that means, {{Name}}. There might be some bad weather coming in! Would you mind flying above Berk to Gothi's hut and looking at the clouds?</Text><ID>921521</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T01Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>How does it look?</Text><ID>921522</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T01End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CloudVisit</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the roof of Gothi's hut in Berk</Text><ID>921519</ID></Title><Desc><Text>Fly to the roof of Gothi's hut in Berk.</Text><ID>922959</ID></Desc></Data> + 0 + false + + + 645 + Task 4.2 Talk to Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you go back to Phlegma, the Botanist, and tell her what types of clouds you saw?</Text><ID>921525</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T02Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Those sound like cumulonimbus clouds. +Thank Thor! Cumulonimbus clouds usually mean that rain is coming. This [c][3eebff]drought[/c][ffffff] will finally be over! I'll start preparing.</Text><ID>921526</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Phlegma what you saw</Text><ID>921523</ID></Title><Desc><Text>Go back to Phlegma at the lookout and tell her what you saw.</Text><ID>923006</ID></Desc></Data> + 0 + false + + + 646 + Task 4.3 Talk to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hiccup told me he fixed the telescope. Can you go talk to him at the Lookout?</Text><ID>921529</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It took a lot of work, but I finally fixed this thing. Meatlug really did a number on the telescope!</Text><ID>921530</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T03End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at the Lookout</Text><ID>921527</ID></Title><Desc><Text>Talk to Hiccup at the Lookout.</Text><ID>929615</ID></Desc></Data> + 0 + false + + + 647 + Task 4.4 Fly to the beach + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The [c][3eebff]telescope[/c][ffffff] is a device that helps us see things really far away. It's less work than flying out and seeing the clouds really close. @@ Let's test it out at the lookout. I'll go up to a good vantage point. You should fly to the top of the waterfall, and I'll see if I can spot you with this device.</Text><ID>921963</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T04Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It works great! I can see you and {{dragon name}}!</Text><ID>921964</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T04End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Waterfall</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the mouth of the waterfall in the Lookout</Text><ID>921961</ID></Title><Desc><Text>Fly to the mouth of the waterfall at the Lookout.</Text><ID>923008</ID></Desc></Data> + 0 + false + + + 648 + Task 4.5 Fly to the Viking Statue + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQClouds4T05.unity3d/PfGrpQClouds4T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's try spotting you elsewhere. I planted a flag at the top of the mountain. Find it!</Text><ID>921537</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T05Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Clear as a Night Fury's eye! I think you're wearing mismatched socks, by the way.</Text><ID>921538</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T05End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Flag</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the flag at the top of the mountain</Text><ID>921535</ID></Title><Desc><Text>Find the flag at the top of the mountain.</Text><ID>923009</ID></Desc></Data> + 0 + false + + + 649 + Task 4.6 Meet Hiccup by the Telescope + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_ByTelescope</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is pretty amazing. Tell you what, {{Name}}. You've been a great help! Why don't you meet me by the telescope here?</Text><ID>921541</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T06Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's a great view up here, huh? We're so lucky to be dragon trainers.</Text><ID>921542</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T06End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup by the telescope</Text><ID>922418</ID></Title><Desc><Text>Meet Hiccup by the telescope at the Lookout.</Text><ID>923115</ID></Desc></Data> + 0 + false + + + 651 + Task 4.7 Use the Telescope + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_ByTelescope</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Why don't you give it a try? {{Input}} on the telescope and look through it. You can see the clouds that are gathering above the school.</Text><ID>921545</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T07Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Isn't it great? With this, Phlegma will never be surprised by the weather again! </Text><ID>921546</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T07End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Look through the telescope</Text><ID>921543</ID></Title><Desc><Text>{{Input}} on the telescope and look through the device.</Text><ID>929616</ID></Desc></Data> + 0 + false + + + 652 + Task 4.8 Talk to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Would you tell Phlegma that the telescope is fixed? Let's hope Meatlug finds better places to sit in the future! I don't want to have to fix this again.</Text><ID>921549</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestCloud04.unity3d/DlgHiccupQCloud04T08Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you for helping out, {{Name}}! Now I'll be able to see incoming clouds and weather myself.</Text><ID>921550</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Return to Phlegma with the news.</Text><ID>923012</ID></Desc></Data> + 0 + false + + + 656 + Task 4.2.1 Quiz + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Can you choose the cumulonimbus cloud from these choices?</Text><ID>921088</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizClouds04.unity3d/PfUiQuizClouds04</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Talk to Phlegma and pick out the nimbocumulus cloud.</Text><ID>923013</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201213 + true + 50 + 50 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 201213 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201213 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201213 + true + 200 + 200 + + 0 + +
+ false +
+ + 1168 + Quest_Composter + 7 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQComposter00.unity3d/PfGrpQComposter00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Gathering and Composting</Text><ID>920506</ID></Title><Desc><Text>Composter Test Quest</Text><ID>920507</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1028 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1168 + 657 + 0 + + + 1 + 1168 + 658 + 0 + + + 1 + 1168 + 660 + 0 + + + 1 + 1168 + 661 + 0 + + + + 1 + 201226 + 0 + + 657 + Task 1 Get Withered + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQComposter01.unity3d/PfGrpQComposter01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Curses! I wasn't paying enough attention and my crops have withered and died. I won't be able to harvest anything from these plants. +Thankfully, there's more we can do. Can you gather these dead plants from behind the greenhouse? Thanks!</Text><ID>920715</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great job!</Text><ID>921108</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>WitheredCrops</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect withered crops behind the greenhouse</Text><ID>920713</ID></Title><Desc><Text>Gather the withered crops that are behind the greenhouse.</Text><ID>922755</ID></Desc></Data> + 0 + false + + + 658 + Task 2 Click on Composter + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Now that we have spoiled crops, we can use the composter to get some worms. A composter is a device we can use to create fertilizer. The withered plants provide a perfect environment for worms to grow. {{Input}} on the composter in the middle of the greenhouse!</Text><ID>921698</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfComposterQuestDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWQuestComposterDO</Value></Pair><Pair><Key>ItemID</Key><Value>8472</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spoiled Crop</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the withered crops to the composter in the greenhouse</Text><ID>921696</ID></Title><Desc><Text>Bring the withered crops to the composter in the greenhouse at the school.</Text><ID>935161</ID></Desc></Data> + 0 + false + + + 660 + Task 4 Instant Harvest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Composters break down materials that are put into them. We can put organic matter into the composter and wait for the materials to break down into humus. +{{Input}} on the Instant Harvest button to skip the wait. I'll waive the Gem cost!</Text><ID>920722</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great job!</Text><ID>921108</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfComposterQuestDO</Value></Pair><Pair><Key>Name</Key><Value>BoostComposter</Value></Pair><Pair><Key>ItemName</Key><Value>PfComposterQuestDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the composter and {{input}} on Instant Harvest</Text><ID>920720</ID></Title><Desc><Text>{{Input}} on the composter and {{input}} on the Instant Harvest button.</Text><ID>929618</ID></Desc></Data> + 0 + false + + + 661 + Task 5 Get Your Compost + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The best part about creating fertilizer? Worms love the soil because it's full of nutrients. {{Input}} on the composter to get your worms.</Text><ID>920726</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great! I'll give you some coins for those worms. +You can buy a composter from the store for your own farm, if you'd like. It's a very handy device!</Text><ID>920727</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfComposterQuestDO</Value></Pair><Pair><Key>Name</Key><Value>HarvestComposter</Value></Pair><Pair><Key>ItemName</Key><Value>PfComposterQuestDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the composter to get your worms</Text><ID>920724</ID></Title><Desc><Text>{{Input}} on the composter to get your worms.</Text><ID>929619</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 201226 + true + 100 + 100 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 201226 + true + 100 + 100 + + 0 + +
+ + 100 +

9

+ 0 + + 1 + 811 + 201226 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201226 + true + 50 + 50 + + 0 + +
+ false +
+ + 1169 + Quest Edu 19 + 5 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQClouds02T07.unity3d/PfGrpQClouds02T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Just for the Halibut</Text><ID>920512</ID></Title><Desc><Text>Educational seawater, fish</Text><ID>920513</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1140 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1169 + 662 + 0 + + + 1 + 1169 + 663 + 0 + + + 2 + 1169 + 1170 + 0 + + + 1 + 1169 + 667 + 0 + + + 1 + 1169 + 668 + 0 + + + + 1 + 201227 + 0 + + 1170 + Quest Edu 19.3 + 5 +

1169

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>If Bucket could keep a good thought in his mind, he'd remember that fish are vertebrate animals that live in water, and different kinds of fish live in different areas. Each species of fish prefers a certain habitat. @@ I know! Let me give you a rundown of what fish live where. Go visit some of the other fishing areas at the school and at Berk.</Text><ID>920510</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Great job {{greeting}}!</Text><ID>920511</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Go to the fishing spots</Text><ID>920508</ID></Title><Desc><Text>Go to the other fishing spots in the area.</Text><ID>920509</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1170 + 664 + 0 + + + 1 + 1170 + 665 + 0 + + + 1 + 1170 + 666 + 0 + + + + 1 + 0 + 0 + + 664 + Task 3.1 Waterfall + <Data><End><Type>Popup</Type><ID>905243</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>This here is a freshwater lake! The waterfall feeds into it so there's a good flow of water here.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuffnutVisit</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the waterfall under Berk</Text><ID>905241</ID></Title><Desc><Text>Visit the waterfall under Berk.</Text><ID>905242</ID></Desc></Data> + 0 + false + + + 665 + Task 3.2 Wilderness lake + <Data><End><Type>Popup</Type><ID>921948</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Remember this place? It's where you fished with Gobber when you first got {{dragon name}}! +Fish that can survive in only one type of water are called stenohaline.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Wilderness_WaterArea</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the lake in the wilderness</Text><ID>921946</ID></Title><Desc><Text>Visit the lake in the wilderness.</Text><ID>921947</ID></Desc></Data> + 0 + false + + + 666 + Task 3.3 Salmon Area + <Data><End><Type>Popup</Type><ID>920733</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Did you know, salmon love to swim upstream! You'll find a lot of them here at the mouth of the river. +Salmon are born in freshwater then migrate to the ocean where they mature. After about 1-5 years, they head back to freshwater to reproduce.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SalmonArea</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the mouth of the river at the wilderness</Text><ID>920731</ID></Title><Desc><Text>Visit where the river meets the lake at the wilderness.</Text><ID>920732</ID></Desc></Data> + 0 + false + + false + + + 662 + Task 1: Go Fish + <Data><Offer><Type>Popup</Type><ID>905252</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Hi {{Name}}! I have the most peculiar hunger for halibut. I just can't get enough of it right now. Maybe we'll be able to get some fish if we go to the school lake. Can you go and catch 3 fish there?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905253</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Great job! Too bad those aren't halibut.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfFish</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch 3 fish for Bucket</Text><ID>905250</ID></Title><Desc><Text>Go to the school lake and catch 3 fish.</Text><ID>905251</ID></Desc></Data> + 0 + false + + + 663 + Task 2: Talk to Mulch + <Data><Offer><Type>Popup</Type><ID>905256</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I don't understand why we couldn't catch any halibut at this lake. Mulch is so much smarter than me. Can you ask him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>905257</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Bucket! I love the man, but sometimes he's as dumb as a.. well, bucket.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch by the school lake.</Text><ID>905255</ID></Desc></Data> + 0 + false + + + 667 + Task 4: Go to outside the caldera + <Data><Offer><Type>Popup</Type><ID>920736</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You know, your dragon will let you fly to a bunch of places that are hard to get to by boat. Why don't you fly out of the crack in the mountains and try to find a good fishing spot?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920737</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Great job, kid! That was one in a million!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_OceanFishing</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly outside the caldera</Text><ID>920734</ID></Title><Desc><Text>Fly outside the caldera to look for a new fishing area.</Text><ID>920735</ID></Desc></Data> + 0 + false + + + 668 + (668) Task 5: Give Bucket 3 halibut + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You should be able to catch halibut anywhere in saltwater. Go for it, kid, and get some to Bucket!</Text><ID>920740</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wow, {{Name}}! I was just craving some halibut! How did you know? You're amazing!</Text><ID>920741</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>ItemID</Key><Value>7141</Value></Pair><Pair><Key>ItemDescription</Key><Value>Halibut</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Bucket 3 halibut</Text><ID>920738</ID></Title><Desc><Text>Give Bucket 3 halibut caught from the sea, or buy 3 halibut from the store.</Text><ID>934027</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201227 + true + 50 + 50 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201227 + true + 150 + 150 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201227 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201227 + true + 200 + 200 + + 0 + +
+ false +
+ + 1171 + Quest Edu 18 + 45 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Sickly Dragon</Text><ID>920515</ID></Title><Desc><Text>Thornado isn't feeling good.</Text><ID>920516</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1169 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1171 + 669 + 0 + + + 1 + 1171 + 670 + 0 + + + 1 + 1171 + 671 + 0 + + + 2 + 1171 + 1172 + 0 + + + 1 + 1171 + 673 + 0 + + + + 1 + 201228 + 0 + + 1172 + Edu 18.4 + 45 +

1171

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Mint Tea</Text><ID>920514</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1172 + 672 + 0 + + + + 1 + 201229 + 0 + + 672 + Task 4.1 Talk to Alchemist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Take these mint leaves to Heather and she can make a nice mint tea.</Text><ID>920744</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Here you go!</Text><ID>920745</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>8598</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mint</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather.</Text><ID>926651</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8600 + + 1 + 816 + 201229 + true + 1 + 1 + + 0 + +
+ false + + + 669 + Task 1 Visit Thornado + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu18T01.unity3d/PfGrpQEdu18T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}, it’s so good to see you. I came across a certain wild dragon that once belonged to my husband Stoick. Thornado wasn’t looking healthy. I tried to take a look at him but he took off before I had a chance to get close. He seems to be just as stubborn as my love was. @@ Can you help me find him? I think he's still in Berk somewhere.</Text><ID>920748</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>There you are, my beautiful friend! You don't need to worry. We won't harm you.</Text><ID>920749</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Thornado</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Thornado in Berk</Text><ID>920746</ID></Title><Desc><Text>Thornado is sick and hiding in Berk. Find him by flying.</Text><ID>929563</ID></Desc></Data> + 0 + false + + + 670 + Task 2 Talk to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The poor dear still looks sick. Thunderdrums are usually such vocal dragons but this one is silent. @@ Perhaps he's in need of exercise or a companion? I will need to examine him further. Will you go speak with Phlegma and see if she has any medicines that might help?</Text><ID>920752</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hmm. I've seen other dragons act like this before. Thornado must have an upset stomach! When a dragon gets an upset stomach, he can't use the furnace in his stomach to make fireballs.</Text><ID>920753</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma at the Lookout</Text><ID>920750</ID></Title><Desc><Text>Talk to Phlegma at the Lookout.</Text><ID>922775</ID></Desc></Data> + 0 + false + + + 671 + Task 3 Collect + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu18T02.unity3d/PfGrpQEdu18T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>920756</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>A nice soothing mint tea will calm Thornado's stomach. Mint is great for soothing nausea, headaches, and indigestion. +You'll find them in the wilderness!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920757</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Perfect, kid!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantMint</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect mint leaves in the wilderness</Text><ID>920754</ID></Title><Desc><Text>Find the mint leaves in the wilderness.</Text><ID>920755</ID></Desc></Data> + 0 + false + + + 673 + Task 5 Talk to Valka + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Give this to Valka to give to Thornado. It'll clear his sickness right up.</Text><ID>920760</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>That's a wonderful idea. Some mild mint tea will certainly do the trick. Fear not, I shall take good care of Thornado. My thanks for your help, {{Name}}.</Text><ID>920761</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>ItemID</Key><Value>8600</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mint Tea</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the mint tea to Valka</Text><ID>920758</ID></Title><Desc><Text>Bring the mint tea to Valka at New Berk.</Text><ID>936479</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201228 + true + 25 + 25 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 201228 + true + 200 + 200 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201228 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201228 + true + 200 + 200 + + 0 + +
+ false +
+ + 1173 + Quest_Side_3_2 + 45 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>For My Son, Hiccup</Text><ID>920523</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1150 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1173 + 674 + 0 + + + 1 + 1173 + 675 + 0 + + + 1 + 1173 + 676 + 0 + + + 2 + 1173 + 1174 + 0 + + + 1 + 1173 + 678 + 0 + + + 1 + 1173 + 679 + 0 + + + 2 + 1173 + 1175 + 0 + + + 1 + 1173 + 681 + 0 + + + + 1 + 201230 + 0 + + 1174 + Side 3_2.4 + 45 +

1173

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Deliver Eels</Text><ID>920517</ID></Title><Desc><Text>Bring Heather some eels.</Text><ID>920518</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1174 + 677 + 0 + + + + 1 + 201231 + 0 + + 677 + Task 4 Deliver Eels + <Data><Offer><Type>Popup</Type><ID>920764</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There are many other ways to create ink! One good way to do so is to ferment eels. +Bring me 3 eels! By then I should have finished your ink.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920765</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's fantastic! +I know dragons aren't particularly fond of eels, but I like these fish. Here's a bottle of ink!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>7140</Value></Pair><Pair><Key>ItemDescription</Key><Value>Eel</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Heather 3 eels</Text><ID>920762</ID></Title><Desc><Text>Catch 3 eels or buy 3 eels from the store, then give them to Heather.</Text><ID>920763</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8599 + + 1 + 827 + 201231 + true + 1 + 1 + + 0 + +
+ false + + + 1175 + Side 3_2.7 + 45 +

1173

+ <Data><Offer><Type>Popup</Type><ID>920521</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'll set up some targets along the rocks that ring the wilderness. Go there, {{input}} on them, and shoot three of them with fireballs!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide3_2T07.unity3d/PfGrpQSide3_2T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>920522</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Look at that! Great job!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot some targets</Text><ID>920519</ID></Title><Desc><Text>Shoot targets for Hiccup.</Text><ID>920520</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 1175 + 680 + 0 + + + + 1 + 0 + 0 + + 680 + Task 7 Shoot Targets + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_QSide3_2</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfTPTargetA</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot targets for Hiccup</Text><ID>920766</ID></Title><Desc><Text>Shoot the targets placed on the rocks ringing the wilderness.</Text><ID>920767</ID></Desc></Data> + 0 + false + + false +
+ + 674 + Task 1 Meet Heather + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It still breaks my heart that I couldn't see my son grow. I have an idea to make it up to him. I know that he loves drawing dragons in that book of his, just like his mother. Can you help me get him some ink? I've talked to our friendly alchemist, Heather, about it.</Text><ID>920770</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey there! It's nice to see you.</Text><ID>920771</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherHello01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather by The Lab at the school.</Text><ID>929785</ID></Desc></Data> + 0 + false + + + 675 + Task 2 Collect Flowers + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide3_2T02.unity3d/PfGRpQSide3_2T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>920774</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'd love to help out and make some ink! We'll need a little mixture of fermented eels and flower petals. Can you go to the wilderness and find some blue flowers?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>920775</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantBlueAnemone</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 6 blue flowers in the Wilderness</Text><ID>920772</ID></Title><Desc><Text>Find 6 blue flowers in the Wilderness.</Text><ID>920773</ID></Desc></Data> + 0 + false + + + 676 + Task 3 Deliver + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Those would make a wonderful shade of blue! Bring them back to me, {{Name}}.</Text><ID>920778</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>They're really cool.</Text><ID>920779</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>8342</Value></Pair><Pair><Key>ItemDescription</Key><Value>Blue Anemone</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver flowers to Heather</Text><ID>920776</ID></Title><Desc><Text>Bring the flowers to Heather at the school.</Text><ID>929786</ID></Desc></Data> + 0 + false + + + 678 + Task 5 Deliver Stoick + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm sure Hiccup will love this ink. Give this to Valka please!</Text><ID>920782</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I don't know much about ink; I mostly use charcoal, myself. Still, I am sure Hiccup would love to put this to good use.</Text><ID>920783</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>ItemID</Key><Value>8599</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ink Bottle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the ink bottle to Valka</Text><ID>920780</ID></Title><Desc><Text>Take the ink bottle to Valka in New Berk.</Text><ID>936642</ID></Desc></Data> + 0 + false + + + 679 + Task 6 Talk to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I'll wrap this up in a nice box. I've missed so many Snoggletogs that I really miss that tradition. Can you take Hiccup elsewhere for a moment? I want this to be a surprise!</Text><ID>920786</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey bud! +Sure, I'd love to spot you on some target practice. Let's go to it!</Text><ID>920787</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at the School</Text><ID>925892</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 681 + Task 8 Talk to Hiccup + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQSide3_2T08.unity3d/PfGrpQSide3_2</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There's a box here by the Flight Club tower. Do you know anything about this, {{Name}}? Come by, please!</Text><ID>920790</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's from my mother. I really appreciate that she's trying to connect with me. Between you and me, she doesn't need to try that hard! When I first found her I couldn't believe how much we had in common. @@ You were [c][3eebff]definitely[/c][ffffff] a part of this, {{Name}}. Feel free to distract me any time.</Text><ID>920791</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_Data/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Speak to Hiccup at the Flight Club tower at the Training Grounds.</Text><ID>929789</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201230 + true + 25 + 25 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201230 + true + 150 + 150 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201230 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201230 + true + 50 + 50 + + 0 + +
+ false +
+ + 1179 + Quest_Snoggletog #1 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Time for Togetherness</Text><ID>920529</ID></Title><Desc><Text>Astrid wants to continue her tradition of yaknog.</Text><ID>920530</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1134 + 0 + false + + + 5 + 11-18-2021 08:00:00,01-18-2022 08:00:00 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1179 + 685 + 0 + + + 1 + 1179 + 686 + 0 + + + 1 + 1179 + 687 + 0 + + + 2 + 1179 + 1181 + 0 + + + 2 + 1179 + 1180 + 0 + + + 1 + 1179 + 694 + 0 + + + 1 + 1179 + 695 + 0 + + + + 1 + 201235 + 0 + + 1180 + Snoggletog 01.05 + 11 +

1179

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I made them for all my friends! Can you go around and give everyone a bit of Snoggletog cheer? Thanks!</Text><ID>920525</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay, that's not working out very well. I don't think many of our friends are going to want to drink that.</Text><ID>920526</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Deliveries!</Text><ID>920524</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1180 + 689 + 0 + + + 1 + 1180 + 690 + 0 + + + 1 + 1180 + 691 + 0 + + + 1 + 1180 + 692 + 0 + + + 1 + 1180 + 693 + 0 + + + + 1 + 0 + 201236 + + 689 + Deliver to Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Astrid made this, right? Is she mad at me?</Text><ID>920794</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestSnoggle01.unity3d/DlgFishlegsGenNoThanks</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give Fishlegs yaknog</Text><ID>920792</ID></Title><Desc><Text>Give Fishlegs one of Astrid's delicious mugs of yaknog.</Text><ID>929858</ID></Desc></Data> + 0 + false + + + 690 + Deliver to Ruffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That smells horrific! No sane person should ever drink this yuck. + +Time to chug it down.</Text><ID>920797</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8597</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yaknog</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the yaknog to Ruffnut</Text><ID>920795</ID></Title><Desc><Text>Give Ruffnut a mug of yaknog.</Text><ID>936507</ID></Desc></Data> + 0 + false + + + 691 + Deliver to Snotlout + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh my goodness, that smells like Bucket's foot. +It's... made by Astrid? Okay, I'll take it. Please tell her I drank it! +</Text><ID>920800</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestSnoggle01.unity3d/DlgSnotloutSmelly</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8597</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yaknog</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Snotlout yaknog</Text><ID>920798</ID></Title><Desc><Text>Bring Snotlout a mug of yaknog.</Text><ID>936508</ID></Desc></Data> + 0 + false + + + 692 + Deliver to Tuffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Uh, no thanks dude. I remember what that did to Snotlout last time.</Text><ID>920803</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestSnoggle01.unity3d/DlgTuffnutGenNoThanks2</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give Tuffnut yaknog</Text><ID>920801</ID></Title><Desc><Text>Give Tuffnut a mug of yaknog.</Text><ID>936509</ID></Desc></Data> + 0 + false + + + 693 + Deliver to Heather + <Data><End><Type>Popup</Type><ID>920806</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well, that looks interesting. Of course, by 'interesting' I mean 'inedible'.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestSnoggle01.unity3d/DlgHeatherGenNotRight</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give Heather a yaknog</Text><ID>920804</ID></Title><Desc><Text>Bring Heather a mug of yaknog.</Text><ID>920805</ID></Desc></Data> + 0 + false + + + 6 +

6

+ 8597 + + 1 + 825 + 201236 + true + 6 + 6 + + 0 + +
+ false + + + 1181 + Snoggletog 01.04 + 11 +

1179

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSnoggle01T04.unity3d/PfGrpQSnoggle01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Deliver Kelp</Text><ID>920527</ID></Title><Desc><Text>Deliver Kelp.</Text><ID>920528</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1181 + 696 + 0 + + + + 1 + 201238 + 0 + + 696 + Deliver Kelp + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Please bring that kelp to me.</Text><ID>920809</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Yes! It's my final ingredient! I just got some milk from the yak, so I'm good to go!</Text><ID>920810</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7998</Value></Pair><Pair><Key>ItemDescription</Key><Value>Kelp</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the kelp to Astrid</Text><ID>920807</ID></Title><Desc><Text>Bring the kelp to Astrid.</Text><ID>929861</ID></Desc></Data> + 0 + false + + + 6 +

6

+ 8597 + + 1 + 826 + 201238 + true + 6 + 6 + + 0 + +
+ false +
+ + 685 + Task 1 Deliver Eggs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't know if you remember, but I made a new drink for a previous Snoggletog. It was a delicious success! I want to make it again for every one of my friends. @@ Can you help me out, {{Name}}? I don't have time to gather all the ingredients! Start out by giving me 6 chicken eggs!</Text><ID>921701</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We're off to a great start!</Text><ID>921702</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Astrid 6 eggs</Text><ID>921699</ID></Title><Desc><Text>Bring Astrid 6 eggs from your farm or from the store.</Text><ID>922803</ID></Desc></Data> + 0 + false + + + 686 + Task 2 Deliver Cabbage + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I hate to give away my secret recipe, but I need the help. +Can you bring me 6 heads of cabbage? You can get it from farming or from the store.</Text><ID>920817</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Perfect!</Text><ID>922915</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 6 heads of cabbage to Astrid</Text><ID>920815</ID></Title><Desc><Text>Bring Astrid 6 heads of cabbage.</Text><ID>922804</ID></Desc></Data> + 0 + false + + + 687 + Task 3 Collect Kelp + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSnoggle01T03.unity3d/PfGrpQSnoggle01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>920821</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Don't tell anyone, but I can't remember what the last secret ingredient is. So let's use kelp! +You'll find some at the school beach.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922905</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantKelp</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the kelp on the school beach</Text><ID>920819</ID></Title><Desc><Text>Find the kelp at the beach on the school.</Text><ID>920820</ID></Desc></Data> + 0 + false + + + 694 + Task 6 Deliver to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I don't want you to go back to Astrid with the yaknog. Will you come to me and give me the rest of the yaknog?</Text><ID>920825</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ugh! Oh, that's... what could possibly smell this bad? +Thanks, {{Name}}. I don't know if I will try to drink this... but I'm sure I can find a use for this somewhere.</Text><ID>920826</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestSnoggle01.unity3d/DlgHiccupSmelly</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8597</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yaknog</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Hiccup the rest of the yaknog</Text><ID>920823</ID></Title><Desc><Text>Bring Hiccup the rest of the yaknog.</Text><ID>929862</ID></Desc></Data> + 0 + false + + + 695 + Task 7 Talk to Astrid + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Will you come back to me, {{Name}}? I want to know how it went!</Text><ID>920829</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You don't have any more yaknog left? That's excellent! I'm so glad we were able to spread some Snoggletog cheer. +Thank you, {{Name}}!</Text><ID>920830</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to Astrid</Text><ID>920827</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201235 + true + 25 + 25 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201235 + true + 150 + 150 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201235 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201235 + true + 50 + 50 + + 0 + +
+ false +
+ + 1185 + New Farming 01 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1185 + 709 + 0 + + + + 1 + 201255 + 0 + + 709 + 4 Dragon Nip 12 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip, Corn</Text><ID>922508</ID></Title><Desc><Text>Hiccup has a new idea on how to attract Terrible Terrors from the wild.</Text><ID>922202</ID></Desc></Data> + 0 + false + + + 198 +

2

+ 0 + + 1 + 970 + 201255 + true + 198 + 198 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 201255 + true + 4 + 4 + + 0 + +
+ false +
+ + 1186 + New Farming 02 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1186 + 710 + 0 + + + + 1 + 201256 + 0 + + 710 + 5 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool</Text><ID>922147</ID></Title><Desc><Text>Gobber lost his left sock again! He needs wool to make a new one.</Text><ID>922203</ID></Desc></Data> + 0 + false + + + 135 +

2

+ 0 + + 1 + 674 + 201256 + true + 135 + 135 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 201256 + true + 4 + 4 + + 0 + +
+ false +
+ + 1187 + New Farming 03 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1187 + 711 + 0 + + + + 1 + 201257 + 0 + + 711 + 5 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool</Text><ID>922155</ID></Title><Desc><Text>Patching Gobber's underpants. The less said the better, I think.</Text><ID>922204</ID></Desc></Data> + 0 + false + + + 135 +

2

+ 0 + + 1 + 674 + 201257 + true + 135 + 135 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 201257 + true + 4 + 4 + + 0 + +
+ false +
+ + 1188 + New Farming 04 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1188 + 712 + 0 + + + + 1 + 201258 + 0 + + 712 + 1 Black Wool 10 Corn 16 Peppermint + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool, Corn, Peppermint</Text><ID>921710</ID></Title><Desc><Text>I love the taste of peppermint!</Text><ID>921711</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201258 + true + 4 + 4 + + 0 + + + + 411 +

2

+ 0 + + 1 + 2061 + 201258 + true + 411 + 411 + + 0 + +
+ false +
+ + 1189 + New Farming 05 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1189 + 713 + 0 + + + + 1 + 201259 + 0 + + 713 + 4 Black Wool 4 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool, White Wool</Text><ID>921323</ID></Title><Desc><Text>Eret tore his sail when he went adventuring last week.</Text><ID>928860</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201259 + true + 4 + 4 + + 0 + + + + 232 +

2

+ 0 + + 1 + 2062 + 201259 + true + 232 + 232 + + 0 + +
+ false +
+ + 1047 + Quest_Repeat_5 + 9 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Pickled Herring</Text><ID>920448</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1047 + 331 + 0 + + + + 1 + 201146 + 0 + + 331 + Task 5.1 Catch 10 Herring + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7142</Value></Pair><Pair><Key>ItemDescription</Key><Value>Herring</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 10 Herring</Text><ID>921557</ID></Title><Desc><Text>Catch 10 Herring at any saltwater fishing spot.</Text><ID>921558</ID></Desc></Data> + 0 + false + + + 120 +

2

+ 0 + + 1 + 542 + 201146 + true + 120 + 120 + + 0 + + + false +
+ + 1097 + Quest_Edu #8 + 7 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hello {{Name}}! Now that you know how to farm, you should learn more about how plants survive in the world. Each plant has specialized features like roots, stems, leaves, flowers and fruits that allow them to live in their environment. @@ There are four types of flowers I want! Can you find each type of flower for me?</Text><ID>920534</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Fill the world with flowers</Text><ID>920532</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1058 + 0 + false + + + 1 + False + 0 + false + + + all + true + 1 + 1 + + 2 + 1097 + 1098 + 0 + + + 1 + 1097 + 449 + 0 + + + + 2 + 201326 + 0 + + 1098 + Quest_Edu #8.1 + 7 +

1097

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Fill the world with flowers</Text><ID>920532</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 1 + 1 + + 1 + 1098 + 445 + 0 + + + 1 + 1098 + 446 + 0 + + + 1 + 1098 + 447 + 0 + + + 1 + 1098 + 448 + 0 + + + + 2 + 0 + 0 + + 445 + Task 8.1 Find Blue Anemone in the school + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEdu8T02.unity3d/PfGrpQEdu8T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This is a Blue Anemone. It has thick roots that hold the flower in place. All parts of this plant can be poisonous, so it will be very painful if an animal eats this plant! This helps the flower survive longer.</Text><ID>920857</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantBlueAnemone</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 3 Blue Anemone at the School</Text><ID>920855</ID></Title><Desc><Text>Find 3 Blue Anemone at the School, they can be found growing in rich soil.</Text><ID>941124</ID></Desc></Data> + 0 + false + + + 446 + Task 8.2 Find Alpine Gentian in Berk + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu8T01.unity3d/PfGrpQEdu8T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This is an Alpine Gentian. It has bitter roots as a defense mechanism. Animals don't want to eat these flowers because it tastes so bad!</Text><ID>920860</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantAlpineGentian</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 3 Alpine Gentian at the Lookout</Text><ID>920858</ID></Title><Desc><Text>Find 3 Alpine Gentians at the Lookout</Text><ID>941125</ID></Desc></Data> + 0 + false + + + 447 + Task 8.3 Find Dark Red Helleborine in the Wilderne + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu8T03.unity3d/PfGrpQEdu8T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This is a Dark Red Helleborine. It releases a vanilla scent that helps attract bees. The bees then help carry the flower's pollen to other flowers. @@ When a flower is pollinated, it will be able to develop seeds to help reproduce and grow more flowers!</Text><ID>920863</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantDarkRedHelleborine</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 3 Dark Red Helleborine in the Wilderness</Text><ID>920861</ID></Title><Desc><Text>Find 3 Dark Red Helleborines, they can be found in rocky and sandy soil.</Text><ID>941126</ID></Desc></Data> + 0 + false + + + 448 + Task 8.3 Find an Alpine Blue Thistle in the Wilder + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu8T04.unity3d/PfGrpQEdu8T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These are Alpine Blue Thistles. Their thistles are very tall and usually stick out above other flowers. +These flowers tower over other plants to get optimal sunlight. They really need to, since they grow in high elevation!</Text><ID>921145</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantAlpineBlueThistle</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 2 Alpine Blue Thistle in the Wilderness</Text><ID>921143</ID></Title><Desc><Text>Find 2 Alpine Blue Thistle, they can be found along rocky ledges.</Text><ID>941127</ID></Desc></Data> + 0 + false + + false + + + 449 + Task 8.5 Return to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Please bring the flowers back to me so I can get them into pots right away!</Text><ID>920869</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Aren't these plants amazing? Each part of the plant serves a purpose! Some work to defend the plant from animals, and some even draw them in to help reproduce!</Text><ID>920870</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8340</Value></Pair><Pair><Key>ItemDescription</Key><Value>Alpine Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8341</Value></Pair><Pair><Key>ItemDescription</Key><Value>Alpine Blue Thistle</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8342</Value></Pair><Pair><Key>ItemDescription</Key><Value>Blue Anemone</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8343</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dark Red Helleborine</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Phlegma</Text><ID>920867</ID></Title><Desc><Text>Bring the flowers to Phlegma at the Lookout.</Text><ID>936577</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201326 + true + 25 + 25 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 201326 + true + 100 + 100 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201326 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201326 + true + 200 + 200 + + 0 + +
+ false +
+ + 1153 + Quest 22 + 46 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Best of Us</Text><ID>920489</ID></Title><Desc><Text>Series of Dragon Quizzes for Eret</Text><ID>920490</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1296 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 1153 + 1154 + 0 + + + 1 + 1153 + 593 + 0 + + + 1 + 1153 + 594 + 0 + + + 1 + 1153 + 595 + 0 + + + 1 + 1153 + 596 + 0 + + + 1 + 1153 + 597 + 0 + + + + 1 + 201188 + 0 + + 1154 + Quest 22.1 + 46 +

1153

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I trapped so many dragons for Drago's army in the past. I can't change the past, but maybe I can try to make sure it doesn't happen again. There are a lot of Vikings out there who don't know that we can live peacefully with dragons. @@ Can you have a chat with Hiccup and his dragon rider friends about their dragons? They can tell you what they think is best about each dragon.</Text><ID>920488</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Ask your friends</Text><ID>920486</ID></Title><Desc><Text>Time to ask your friends about their dragons.</Text><ID>920487</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1154 + 587 + 0 + + + 1 + 1154 + 588 + 0 + + + 1 + 1154 + 589 + 0 + + + 1 + 1154 + 590 + 0 + + + 1 + 1154 + 591 + 0 + + + 1 + 1154 + 592 + 0 + + + + 1 + 0 + 0 + + 587 + Task 22.1.1 Meet Hiccup + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless is the only Night Fury out there. He is one of the smartest dragons I have ever met. He thinks he's smarter than me, I bet! The Night Fury also never misses with his plasma blast, and he uses them to protect his fellow dragons.</Text><ID>905083</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest22.unity3d/DlgHiccupToothless03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Meet Hiccup by his house in New Berk.</Text><ID>936669</ID></Desc></Data> + 0 + false + + + 588 + Task 22.1.2 Meet Ruffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Dude, Barf and Belch rocks so much! Riding the Zippleback with my brother really taught us teamwork. We have to work together or the dragon doesn't go anywhere.</Text><ID>905086</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest22.unity3d/DlgRuffnutBarfnBelch03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Meet Ruffnut by her house in Berk. </Text><ID>936474</ID></Desc></Data> + 0 + false + + + 589 + Task 22.1.3 Meet Tuffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Barf and Belch can light gases on fire! A Deadly Nadder can't do that. Only Zipplebacks have that kind of power. </Text><ID>905089</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest22.unity3d/DlgTuffnutZipple04</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Meet Tuffnut by his house in Berk.</Text><ID>936475</ID></Desc></Data> + 0 + false + + + 590 + Task 22.1.4 Meet Astrid + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've grown so close with my Stormfly. My Nadder follows my every order in an instant. She's really accurate with fireballs and spines!</Text><ID>905092</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest22.unity3d/DlgAstridNadder03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid by her house in Berk.</Text><ID>936672</ID></Desc></Data> + 0 + false + + + 591 + Task 22.1.5 Meet Snotlout + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hookfang is best at everything! To choose one, I say he's the best at making a scene. No one can look away when a Monstrous Nightmare lights itself on fire.</Text><ID>905095</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest22.unity3d/DlgSnotloutNightmare02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout in the plaza in Berk.</Text><ID>936673</ID></Desc></Data> + 0 + false + + + 592 + Task 22.1.6 Meet Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug is so considerate! She always knows what I'm thinking and she tries to make me feel better. What a sweet dragon!</Text><ID>905098</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuest22.unity3d/DlgFishlegsMeatlug02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs by his house at Berk.</Text><ID>936674</ID></Desc></Data> + 0 + false + + false + + + 593 + Task 22.2 Talk to Eret + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Cheers for the help, {{Name}}. Come back to me by the Training Grounds and tell me what Astrid thinks is best about her Deadly Nadder.</Text><ID>905101</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQ22T02.unity3d/PfUiQuizQ22T02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at the Training Grounds</Text><ID>905099</ID></Title><Desc><Text>Meet Eret by the dock at the Training Grounds. Talk to him about the Deadly Nadder.</Text><ID>929539</ID></Desc></Data> + 0 + false + + + 594 + Task 22.3 Answer the Gronckle Quiz + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's very interesting. It sounds like the Deadly Nadder is an offensive specialist. I still remember Stormfly pinning me down like her favorite toy. In fact she still does it every now and again so I always need to keep on my guard. @@ What did Fishlegs have to say about his Gronckle Meatlug?</Text><ID>905104</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQ22T03.unity3d/PfUiQuizQ22T03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer the Gronckle Quiz</Text><ID>905102</ID></Title><Desc><Text>Talk to Eret about the Gronckle.</Text><ID>929540</ID></Desc></Data> + 0 + false + + + 595 + Task 22.4 Answer the Zippleback Quiz + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That lad always seemed very intelligent to me. + +According to the twins, what special ability does the Hideous Zippleback have?</Text><ID>905107</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQ22T04.unity3d/PfUiQuizQ22T04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer the Zippleback Quiz</Text><ID>905105</ID></Title><Desc><Text>Talk to Eret about the Hideous Zippleback.</Text><ID>929541</ID></Desc></Data> + 0 + false + + + 596 + Task 22.5 Answer the Nightmare Quiz + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>How about that other lad? The one with a bit of an ego - not that there's anything wrong with that. What special ability does the Monstrous Nightmare have, according to Snotlout?</Text><ID>905110</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQ22T05.unity3d/PfUiQuizQ22T05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer the Nightmare Quiz</Text><ID>905108</ID></Title><Desc><Text>Talk to Eret about the Monstrous Nightmare.</Text><ID>929542</ID></Desc></Data> + 0 + false + + + 597 + Task 22.6 Answer the Night Fury Quiz + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's true. It's hard to look away when a Monstrous Nightmare lights itself on fire, especially when it lights your boat on fire, too. Now then, what did my mate Hiccup say about Toothless's strengths?</Text><ID>905113</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's very interesting! Did I ever tell you about Skullcrusher? He's my Rumblehorn and an extremely powerful dragon. I'm starting to get used to having him by my side, always--my faithful friend. @@ You're a good one, {{Name}}. I'll be able to put what you told me to good use when I talk to other Vikings across the seas.</Text><ID>905114</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQ22T06.unity3d/PfUiQuizQ22T06</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer the Night Fury Quiz</Text><ID>905111</ID></Title><Desc><Text>Talk to Eret about the Night Fury.</Text><ID>929543</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 201188 + true + 25 + 25 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201188 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201188 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201188 + true + 50 + 50 + + 0 + +
+ false +
+ + 1191 + New Farming 06 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1191 + 715 + 0 + + + + 1 + 201263 + 0 + + 715 + 3 White Wool 15 Corn 3 Black Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Corn, Black Wool</Text><ID>921712</ID></Title><Desc><Text>Phlegma needs some cloth for new gardening mittens!</Text><ID>921713</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201263 + true + 4 + 4 + + 0 + + + + 404 +

2

+ 0 + + 1 + 2063 + 201263 + true + 404 + 404 + + 0 + +
+ false +
+ + 1208 + New Farming 23 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1208 + 732 + 0 + + + + 1 + 201280 + 0 + + 732 + 6 Tomatoes, 12 Sunflower, 10 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes, Sunflowers, Black Wool</Text><ID>921734</ID></Title><Desc><Text>Heather wants to test out a new hypothesis!</Text><ID>921735</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201280 + true + 30 + 30 + + 0 + + + + 487 +

2

+ 0 + + 1 + 2071 + 201280 + true + 487 + 487 + + 0 + +
+ false +
+ + 1225 + New Farming 40 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1225 + 750 + 0 + + + + 1 + 201297 + 0 + + 750 + 5 Black Wool, 10 Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>5 Black Wool, 10 Turkey Feathers</Text><ID>921393</ID></Title><Desc><Text>You can buy them from the Store or get them in your Farm.</Text><ID>921394</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 201297 + true + 50 + 50 + + 0 + + + + 229 +

2

+ 0 + + 1 + 2082 + 201297 + true + 229 + 229 + + 0 + +
+ false +
+ + 1242 + New Farming 57 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1242 + 767 + 0 + + + + 1 + 201314 + 0 + + 767 + 20 Corn, 10 Carrots, 3 Lavender + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Corn, Carrots, Lavender</Text><ID>921780</ID></Title><Desc><Text>Heather's new potion needs some very specific ingredients.</Text><ID>921781</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201314 + true + 72 + 72 + + 0 + + + + 763 +

2

+ 0 + + 1 + 2094 + 201314 + true + 763 + 763 + + 0 + +
+ false +
+ + 1262 + New Farming 73 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1262 + 818 + 0 + + + + 1 + 201354 + 0 + + 818 + 10 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip</Text><ID>922169</ID></Title><Desc><Text>Ruffnut and Tuffnut have a crazy idea. The less we know about it the better, my friend.</Text><ID>922170</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 201354 + true + 80 + 80 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 201354 + true + 3 + 3 + + 0 + +
+ false +
+ + 1279 + New Farming 90 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1279 + 835 + 0 + + + + 1 + 201373 + 0 + + 835 + 15 Lavender + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lavender</Text><ID>922239</ID></Title><Desc><Text>Astrid's mother is having trouble falling asleep. A soothing cup of lavender tea should do the trick!</Text><ID>922242</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201373 + true + 72 + 72 + + 0 + + + + 570 +

2

+ 0 + + 1 + 2110 + 201373 + true + 570 + 570 + + 0 + +
+ false +
+ + 1296 + Quest_Lab #10 + 15 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Mysteries of Gronckle Iron</Text><ID>13764</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1114 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1296 + 852 + 0 + + + 1 + 1296 + 853 + 0 + + + 1 + 1296 + 854 + 0 + + + 1 + 1296 + 855 + 0 + + + 1 + 1296 + 876 + 0 + + + 2 + 1296 + 1297 + 0 + + + 2 + 1296 + 1298 + 0 + + + 1 + 1296 + 864 + 0 + + + 2 + 1296 + 1302 + 0 + + + 1 + 1296 + 869 + 0 + + + 1 + 1296 + 868 + 0 + + + 1 + 1296 + 870 + 0 + + + 1 + 1296 + 871 + 0 + + + 2 + 1296 + 1303 + 0 + + + 1 + 1296 + 877 + 0 + + + 1 + 1296 + 878 + 0 + + + 1 + 1296 + 879 + 0 + + + + 1 + 201660 + 0 + + 1297 + Gronckle Iron 5 + 15 +

1296

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Come on! I'll show you what I mean in the lab.</Text><ID>922432</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gronckle Iron 5</Text><ID>922431</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1297 + 856 + 0 + + + 1 + 1297 + 857 + 0 + + + 1 + 1297 + 858 + 0 + + + 1 + 1297 + 859 + 0 + + + 1 + 1297 + 860 + 0 + + + + 1 + 0 + 0 + + 856 + Gronckle 5.1 MeltIce + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>MeltIce</Value></Pair></Objective><Type>Action</Type><Title><Text>Use Ice in the Lab</Text><ID>922335</ID></Title><Desc><Text>Enter The Lab behind the school.</Text><ID>904120</ID></Desc></Data> + 0 + false + + + 857 + Gronckle 5.2 BarfFirewood + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfFirewood</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Meatlug some firewood</Text><ID>922337</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 858 + Gronckle 5.3 CoolAsh + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>CoolAsh</Value></Pair></Objective><Type>Action</Type><Title><Text>Use Ice on the Firewood.</Text><ID>922339</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 859 + Gronckle 5.4 BarfDough + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfDough</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Meatlug Dough in the Lab</Text><ID>922341</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 860 + Gronckle 5.5 BarfGold + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfGold</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Meatlug Gold in the Lab</Text><ID>922343</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + false + + + 1298 + Quest_Lab_Research #10.6 + 15 +

1296

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We can do an experiment to find out what we need for Gronckle Iron! Can you help me gather a bunch of different minerals? We can feed them all to Meatlug and see if we can make more Gronckle Iron. Can you find 4 pieces of sandstone, 4 pieces of iron, and 4 pieces of “mysterious black rock”? @@ I know, I know, “mysterious black rock” sounds a little vague, but it’s way better than the name Snotlout came up for it – “spooky-nighttime-with-no-stars-or-moon stone!" You'll find these rocks in Berk and in the wilderness.</Text><ID>922437</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Rocks</Text><ID>922436</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 2 + 1298 + 1299 + 0 + + + 2 + 1298 + 1300 + 0 + + + 2 + 1298 + 1301 + 0 + + + + 1 + 0 + 0 + + 1299 + Quest_Lab #10.6.1 + 15 +

1298

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Mystery Black Rock</Text><ID>922433</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1299 + 861 + 0 + + + + 1 + 0 + 0 + + 861 + Gronckle 10.6.1 Mystery + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQGronckle06Mystery.unity3d/PfGrpQGronckle06Mystery</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockMysteryBlack</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find Mystery Black Rock in Berk</Text><ID>922345</ID></Title><Desc><Text>Collect 4 pieces of mysterious black rock in Berk.</Text><ID>934525</ID></Desc></Data> + 0 + false + + false +
+ + 1300 + Quest_Lab #10.6.2 + 15 +

1298

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Iron</Text><ID>922434</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1300 + 862 + 0 + + + + 1 + 0 + 0 + + 862 + Gronckle 10.6.2 Iron + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQGronckle06Iron.unity3d/PfGrpQGronckle06Iron</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockIron</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find Iron in the Wilderness</Text><ID>922347</ID></Title><Desc><Text>Find 4 pieces of iron in the Wilderness.</Text><ID>934526</ID></Desc></Data> + 0 + false + + false +
+ + 1301 + Quest_Lab #10.6.3 + 15 +

1298

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect Sandstone</Text><ID>922435</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1301 + 863 + 0 + + + + 1 + 0 + 0 + + 863 + Gronckle 10.6.3 Sandstone + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQGronckle06Sandstone.unity3d/PfGrpQGronckle06Sandstone</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSandstone</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect Sandstone in the Wilderness</Text><ID>922348</ID></Title><Desc><Text>Collect 4 pieces of sandstone in the Wilderness.</Text><ID>934527</ID></Desc></Data> + 0 + false + + false +
+ false +
+ + 1302 + Gronckle Iron 8 + 15 +

1296

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gronckle Iron Lab 2</Text><ID>922438</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1302 + 865 + 0 + + + 1 + 1302 + 866 + 0 + + + 1 + 1302 + 867 + 0 + + + + 1 + 0 + 0 + + 865 + Gronckle 8.1 BarfMystery + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfMystery</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Meatlug Mysterious Black Rock</Text><ID>922349</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 866 + Gronckle 8.2 BarfIron + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfIron</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Meatlug Iron in the Lab</Text><ID>922351</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 867 + Gronckle 8.3 BarfSandstone + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfSandstone</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Meatlug Sandstone in the Lab</Text><ID>922353</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + false +
+ + 1303 + Quest_Lab_Experiment #10.13 + 15 +

1296

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><RemoveItem><ItemID>9272</ItemID><Quantity>4</Quantity></RemoveItem><RemoveItem><ItemID>7997</ItemID><Quantity>4</Quantity></RemoveItem><RemoveItem><ItemID>9273</ItemID><Quantity>4</Quantity></RemoveItem><Random>0</Random><Title><Text>Gronckle Iron Lab #3</Text><ID>922439</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1303 + 872 + 0 + + + 1 + 1303 + 873 + 0 + + + 1 + 1303 + 874 + 0 + + + 1 + 1303 + 875 + 0 + + + + 1 + 0 + 0 + + 872 + Gronckle 13.1 Sand-Iron + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfSandstoneIron</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Sandstone and Iron to Meatlug</Text><ID>922355</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 873 + Gronckle 13.2 Sand-Mystery + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfSandstoneMystery</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Sandstone and Mystery rock to Meatlug</Text><ID>922357</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 874 + Gronckle 13.3 Iron-Mystery + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfIronMystery</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed Iron and Mystery Black Rock to Meatlug</Text><ID>922359</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + + 875 + Gronckle 13.4 All + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfSandstoneIronMystery</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed a combination of rocks to Meatlug</Text><ID>922361</ID></Title><Desc><Text>Enter the Lab.</Text><ID>922354</ID></Desc></Data> + 0 + false + + false +
+ + 852 + Gronckle Iron 1: Quest_Lab_Question + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hi there, {{Name}}! I was by the telescope earlier and I noticed that the gears on the swivel mount have started to rust. We need to replace it with something better and I think I know what will do the job! @@ Now, normally we go to Hiccup to invent stuff but, this time, Fishlegs and Meatlug might have stumbled upon a solution! Fishlegs claims that they found a new type of metal. Will you go talk to him and learn more?</Text><ID>922365</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, oh – did Heather tell you about ‘Gronckle Iron?’ I’m so proud of my girl Meatlug. Not only is she the cuddliest dragon, she’s also able to turn the minerals in certain rocks into this new metal with amazing properties! @@ Gronckle Iron is really lightweight, incredibly strong, and like most metals, easily formed into shapes! Meatlug created the Gronckle Iron by swallowing rocks and melting them in her stomach – just like Gobber might do with scrap metal in his forge!</Text><ID>922366</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/GronckleIron01.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about Gronckle Iron</Text><ID>922375</ID></Title><Desc><Text>Talk to Fishlegs about Gronckle Iron.</Text><ID>922456</ID></Desc></Data> + 0 + false + + + 853 + Gronckle Iron 2: Hiccup + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWHiccupShield.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>All the items made out of Gronckle Iron are amazing, but my favorite is the one Hiccup invented. It’s an ornate shield that has a secret weapon inside! You should go talk to him and learn more about it.</Text><ID>922369</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}! Yeah, I love my new shield, but there’s no way I would have been able to make it without the special properties of Gronckle Iron.</Text><ID>922370</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/GronckleIron02.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about the Gronckle Iron shield</Text><ID>922367</ID></Title><Desc><Text>Talk to Hiccup about the Gronckle Iron shield.</Text><ID>929760</ID></Desc></Data> + 0 + false + + + 854 + Gronckle Iron 3: FF + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>My new shield turns into a crossbow so you can use it for both defense and offense. It’s light but still really strong, thanks to the Gronckle Iron. Here, you can test it out yourself. Take a run through Fireball Frenzy with my shield.</Text><ID>922373</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I had the idea for the shield for a long time, but I couldn't make it with the other metals we had around Berk. It would be either too heavy or too weak. Thanks to Gronckle Iron, my shield doesn't have either problem.</Text><ID>922374</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair></Objective><Type>Game</Type><Title><Text>Play the Crossbow level in Fireball Frenzy</Text><ID>922371</ID></Title><Desc><Text>Enter Fireball Frenzy and choose the Crossbow level.</Text><ID>922783</ID></Desc></Data> + 0 + false + + + 855 + Gronckle Iron 4: Fishlegs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There is one problem with Gronckle Iron, though: we don’t have enough of it! Can you help Fishlegs create some more?</Text><ID>922377</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Umm… Well… you see, I wasn’t really paying attention to what kinds of rocks Meatlug was eating, so I don’t know which minerals turn into Gronckle Iron. It was an emotional time for us!</Text><ID>922378</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/GronckleIron03.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about Gronckle Iron</Text><ID>922375</ID></Title><Desc><Text>Talk to Fishlegs about Gronckle Iron.</Text><ID>922456</ID></Desc></Data> + 0 + false + + + 864 + Gronckle Iron 7: Heather + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Let’s make some Gronckle Iron! Talk to Heather by the lab and choose a hypothesis so she can help you conduct the experiment. Meatlug will meet you in the lab! She's such a helpful dragon.</Text><ID>922381</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That’s a great hypothesis! Let’s test it out in the lab!</Text><ID>922382</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis10a.unity3d/PfUiHypothesis10a</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather by the Lab.</Text><ID>922460</ID></Desc></Data> + 0 + false + + + 868 + Gronckle Iron 10: Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Uh oh, we’re having no luck with these rocks. We haven’t been able to make Gronckle Iron at all, but don’t worry! It just means we need to try again with another hypothesis. @@ On another note, it looks like you made something new with sandstone, {{Name}}! It looks really fragile, but maybe Hiccup can make something out of it. Will you take it to him?</Text><ID>922385</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Huh. Fascinating! This looks way better than the glass we Vikings usually make on Berk. It doesn’t have any of the usual scratches or imperfections. This could be really useful!</Text><ID>922386</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/GronckleIron04.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give the glass to Hiccup</Text><ID>922383</ID></Title><Desc><Text>Give Hiccup the glass you made in the Lab.</Text><ID>922785</ID></Desc></Data> + 0 + false + + + 869 + Gronckle Iron 9: Hiccup Test + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Will you answer a quick question about what we covered?</Text><ID>922387</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizGronckleIron01.unity3d/PfUiQuizGronckleIron01</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather and take her test</Text><ID>922406</ID></Title><Desc><Text>Talk to Heather and take her test.</Text><ID>922462</ID></Desc></Data> + 0 + false + + + 870 + Gronckle Iron 11: Sandstone + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQGronckle11.unity3d/PfGrpQGronckle11</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’m getting excited about this new glass that you’ve created – the practical applications are limitless! Since it’s so clear, I bet we could create a really large telescope to see farther than we ever have before! Maybe we could even use it to see the secrets of the night sky… @@ Enough daydreaming! I’ll need your help to get there. Can you gather some more sandstone for me? Let’s get enough to make a giant glass lens. Six more rocks should be a good start!</Text><ID>922390</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! Thanks {{Name}}. We can make some useful things with this glass!</Text><ID>922391</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSandstone</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect more sandstone at the Wilderness</Text><ID>922388</ID></Title><Desc><Text>Collect more sandstone at the Wilderness.</Text><ID>936675</ID></Desc></Data> + 0 + false + + + 871 + Quest_Lab_Hypothesis #10.12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, what am I doing? I forgot you were asking for help with Gronckle Iron. Sorry {{Name}}, I got too excited about the chemical process. Let’s brainstorm for more ideas. +From what I remember, Fishlegs said that he fed Meatlug a whole bunch of rocks. @@ Maybe it’s a combination of rocks that will do the trick, not just one rock. If these rocks melded together, the chemical process could turn it into something new. It’s worth a try, right? Talk to Heather and revise your hypothesis with this new information. </Text><ID>922394</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I think that’s a great idea! I hope it works out. Go into the lab when you’re ready to start.</Text><ID>922395</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis10b.unity3d/PfUiHypothesis10b</Value></Pair></Objective><Type>Meet</Type><Title><Text>Hypothesis</Text><ID>922392</ID></Title><Desc><Text>Talk to Heather and make a new hypothesis.</Text><ID>922500</ID></Desc></Data> + 0 + false + + + 876 + Gronckle Iron 4.5 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Maybe we can figure it out with some help. Go talk to Heather by the lab!</Text><ID>922412</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I think I have an idea why Meatlug was able to create Gronckle Iron. I don't know exactly what the ingredients are, but there are some really interesting things happening inside Fishlegs's favorite dragon's stomach!</Text><ID>922413</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather about Gronckle Iron</Text><ID>922410</ID></Title><Desc><Text>Talk to Heather about Gronckle Iron.</Text><ID>922781</ID></Desc></Data> + 0 + false + + + 877 + Gronckle 14 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You proved your hypothesis to be {{result}}. +Applying heat caused an irreversible change and produced something completely different. In this case, it turned into a stronger metal! Gronckle Iron is a mixture of two or more metals, or an [c][3eebff]alloy[/c][ffffff]. An alloy is often harder than normal metals! @@ Now, can you take the items you made to Gobber? He’ll help you make the new mount for the telescope.</Text><ID>922416</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>A mount? Aye, that’s a simple job! Give me one second and I’ll finish it faster than a sock-stealing troll!</Text><ID>922417</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/GronckleIron05.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give Gronckle Iron to Gobber</Text><ID>922414</ID></Title><Desc><Text>Give the hunk of Gronckle Iron to Gobber.</Text><ID>936676</ID></Desc></Data> + 0 + false + + + 878 + Gronckle 15 Met Hiccup by telescope + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ByTelescope</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_ByTelescopeToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If we have more Gronckle Iron, we can use the strong metal to create new inventions. Hey, we can even make some of our current tools better just by improving the quality of the metal! I just wish we had more “mysterious black rock.” We’ll need a lot of it to make more Gronckle Iron. @@ Hiccup is going to take the mount to the school. Meet him there, {{Name}}!</Text><ID>922420</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey! This thing looks great!</Text><ID>922421</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup by the telescope</Text><ID>922418</ID></Title><Desc><Text>Fly to the school and meet Hiccup by the telescope.</Text><ID>929761</ID></Desc></Data> + 0 + false + + + 879 + Gronckle 16 Use Telescope + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQGronckle16.unity3d/PfGrpQGronckle16</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ByTelescope</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_ByTelescopeToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks to your help, {{Name}}, the telescope is now better than ever! Why don’t you take a look through it? You’ve earned it!</Text><ID>922424</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Was that a Berserker shield? If Dagur is snooping around the School of Dragons, we might have a problem. Thanks. I’ll talk to my dad about this.</Text><ID>922425</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Telescope</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the telescope</Text><ID>922422</ID></Title><Desc><Text>{{Input}} on the telescope and look through the device.</Text><ID>929616</ID></Desc></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 201660 + true + 200 + 200 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 201660 + true + 150 + 150 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 201660 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 201660 + true + 200 + 200 + + 0 + +
+ false +
+ + 1323 + New Farming 109 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1323 + 911 + 0 + + + + 1 + 202344 + 0 + + 911 + 18 Flax Flowers + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flowers</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Flax Flowers</Text><ID>922635</ID></Title><Desc><Text>Phlegma has a soft spot for gorgeous blue flowers!</Text><ID>922638</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202344 + true + 3 + 3 + + 0 + + + + 82 +

2

+ 0 + + 1 + 2098 + 202344 + true + 82 + 82 + + 0 + +
+ false +
+ + 1348 + New Farming 120 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1348 + 975 + 0 + + + + 1 + 202408 + 0 + + 975 + 16 White Pumpkin, 5 Flax Flowers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9893</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flower</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Pumpkin, Flax Flower</Text><ID>923020</ID></Title><Desc><Text>I’m not sure why Hiccup wants rope and pumpkins? He has an imaginative mind!</Text><ID>923021</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202408 + true + 3 + 3 + + 0 + + + + 107 +

2

+ 0 + + 1 + 2129 + 202408 + true + 107 + 107 + + 0 + +
+ false +
+ + 1606 + Arctic_Groncicle02 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Into the Wild </Text><ID>924667</ID></Title><Desc><Text>Into the Wild </Text><ID>924667</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1605 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1606 + 1366 + 0 + + + 1 + 1606 + 1367 + 0 + + + 1 + 1606 + 1368 + 0 + + + 1 + 1606 + 1369 + 0 + + + 1 + 1606 + 1370 + 0 + + + 1 + 1606 + 1371 + 0 + + + 1 + 1606 + 1372 + 0 + + + 1 + 1606 + 1700 + 0 + + + + 1 + 202709 + 0 + + 1366 + Groncicle02Task01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Our frozen friend doesn't look so good... Maybe he's hungry? A nice, tasty fish should do the trick. Could you bring him one?</Text><ID>923452</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I guess he's not hungry. What's wrong, little guy? Hmm, he looks kind of sad.</Text><ID>923453</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron19</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>7139</Value></Pair><Pair><Key>ItemDescription</Key><Value>Brown Trout</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Groncicle 1 Brown Trout</Text><ID>923450</ID></Title><Desc><Text>The baby Groncicle may be hungry. Give it 1 Brown rout to eat</Text><ID>941469</ID></Desc></Data> + 0 + false + + + 1367 + Groncicle02Task02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I've got it! Let's give him some dragon nip. That always does the trick. You can grow dragon nip in your farm or purchase them.</Text><ID>923456</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>He doesn't want the dragon nip either. Poor little guy... he must be sick.</Text><ID>923457</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Groncicle 1 Dragon Nip</Text><ID>923454</ID></Title><Desc><Text>Give the baby Groncicle 1 Dragon Nip to cheer him up. You can grow Dragon Nip in your farm or purchase them</Text><ID>941470</ID></Desc></Data> + 0 + false + + + 1368 + Groncicle02Task03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle02T03.unity3d/PfGrpArcticGroncicle02T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Sick dragons should drink plenty of water to stay hydrated. I think Bucket was filling some water by the school lake earlier today. Will you go by and see if you can find one filled with water?</Text><ID>923460</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great!</Text><ID>922905</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGreat</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBucketFilled</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the bucket of water by the School lake</Text><ID>923458</ID></Title><Desc><Text>Find the bucket of water by the School lake</Text><ID>923458</ID></Desc></Data> + 0 + false + + + 1369 + Groncicle02Task04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Bring the water over here!</Text><ID>923464</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Looks like it's working. Good job! He's perked up a bit but still looks uncomfortable. You know, since he's an ice dragon, this climate might be too warm for him. [c][3eebff]Climate[/c][ffffff] describes the range of an area's typical weather conditions and the extent to which the conditions vary over the years. @@ We have long, cold winters and short, warm summers here at Berk, but if you go further north, it gets even colder. I hear the temperatures are well below freezing and the ground remains frozen for most of the year.</Text><ID>923465</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring the water to the baby Groncicle</Text><ID>923462</ID></Title><Desc><Text>Bring the bucket of water to the baby Groncicle so that he can take a drink</Text><ID>941471</ID></Desc></Data> + 0 + false + + + 1370 + Groncicle02Task05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle02T05.unity3d/PfGrpArcticGroncicle02T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>PfMarker_GroncicleNPC</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Our little buddy always seems to point his nose to the north. It could be a natural instinct. Follow him and keep him safe. {{Input}} on him to show you're ready.</Text><ID>923468</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Interesting... I think he's leading you somewhere.</Text><ID>923469</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarkerEnd</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>15</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Spline</Key><Value>BabyGroncicle_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Groncicle and follow him</Text><ID>923733</ID></Title><Desc><Text>Follow the baby Groncicle and keep him safe as he leads you into the Wilderness</Text><ID>941472</ID></Desc><Reminder><Text>Stay with the Groncicle!</Text><ID>936208</ID></Reminder><Failure><Text>Oh no! You failed to follow the Groncicle!</Text><ID>936209</ID></Failure></Data> + 0 + false + + + 1371 + Groncicle02Task06 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle02T06.unity3d/PfGrpArcticGroncicle02T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWGroncicleNPC.unity3d/PfDWGroncicleNPC</Asset><Location>PfMarker_GroncicleStart</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Keep following him and stay close behind! He might know where he's going, but he's still just a baby. {{Input}} on the Groncicle in the Wilderness!</Text><ID>923472</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Woah! I haven't explored that part of the wilderness yet. Exploring uncharted territory can be dangerous, but I'm sure you could handle it. What do you say?</Text><ID>923473</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarkerEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>15</Value></Pair><Pair><Key>Proximity</Key><Value>9</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Spline</Key><Value>BabyGroncicle_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Groncicle and follow him</Text><ID>923733</ID></Title><Desc><Text>Follow the baby Groncicle through the Wilderness to keep him safe</Text><ID>941473</ID></Desc><Reminder><Text>Stay with the Groncicle!</Text><ID>936208</ID></Reminder><Failure><Text>Oh no! You failed to follow the Groncicle!</Text><ID>936209</ID></Failure></Data> + 0 + false + + + 1372 + Groncicle02Task07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, looks like the little feller wants us to head out over the water. Let's go through the mountain and keep flying until we hit land. Adventure awaits! Race you there!</Text><ID>923476</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, what an amazing place! Oh boy. Time to put our adventuring skills to the test. I'm so glad we'll be exploring this new land together, {{Name}}.</Text><ID>923477</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the Groncicle's natural habitat</Text><ID>923474</ID></Title><Desc><Text>Fly to an undiscovered area to find the Groncicle's natural habitat</Text><ID>941474</ID></Desc></Data> + 0 + false + + + 1700 + Groncicle02Task08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Our frozen friend is looking a bit better already. I think we've found the answer to his problem! Come to me. We'll need to get our bearings in this new land.</Text><ID>926094</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I think you're going to need a little help for this adventure, {{Name}}. I'll bring a Timberjack here so we can easily get back to Berk and the school, too.</Text><ID>932776</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBAgeUp.unity3d/PfUiMissionActionDBAgeUp</Asset><NPC>PfDWHiccup</NPC><Text>{{Input}} on your dragon, select the stables, and {{input}} on the age up button!</Text><ID>932879</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup at this new island</Text><ID>941475</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 202709 + true + 75 + 75 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202709 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202709 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202709 + true + 350 + 350 + + 0 + +
+ false +
+ + 1627 + Arctic_SpeedStinger02 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger02T03.unity3d/PfGrpArcticSpeedStinger02T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger02T02.unity3d/PfGrpArcticSpeedStinger02T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Speed Stinger Safari</Text><ID>923949</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1611 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1627 + 1454 + 0 + + + 1 + 1627 + 1455 + 0 + + + 1 + 1627 + 1456 + 0 + + + 1 + 1627 + 1457 + 0 + + + 1 + 1627 + 1458 + 0 + + + + 1 + 202770 + 0 + + 1454 + SpeedStinger02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm so excited about that nest of Speed Stingers you found, {{Name}}! We should use this opportunity to learn more about them. @@ Let's head back to the nest. If we tread lightly, we can get close and observe them!</Text><ID>923825</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These flightless dragons like to build their nests in caves. They can't produce fire to protect themselves from the cold, so they huddle together in the shelter of the cave to keep warm. @@ Speed Stingers are incredibly protective of their territory. They definitely aren't the friendliest dragons in the world...</Text><ID>923826</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the Speed Stinger nest</Text><ID>923823</ID></Title><Desc><Text>Go to the Speed Stinger nest in the Arctic</Text><ID>941616</ID></Desc></Data> + 0 + false + + + 1455 + SpeedStinger02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Don't make any sudden movements, {{Name}}! They'll think you're a threat. Maybe we should back away for a bit and study their diet. I wonder if they eat fish like other dragons? See if you can find a fishing hole nearby.</Text><ID>923829</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Speed Stingers need a lot of food to provide energy for their powerful leg muscles. Hmmm... The Speed Stingers probably hunt other types of arctic wildlife for food. @@ There are many different species living here, which contributes to an ecosystem's level of biodiversity. Biodiversity is a measure of the variety of organisms present in different ecosystems.</Text><ID>923830</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Pond</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the lake</Text><ID>923827</ID></Title><Desc><Text>Go to the lake</Text><ID>941617</ID></Desc></Data> + 0 + false + + + 1456 + SpeedStinger02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There are other organisms that share this habitat with the Speed Stingers. Let's see if we can spot signs of other wildlife living here. @@ Those footprints in the snow over there don't look like they belong to a dragon. Could you take a closer look?</Text><ID>923833</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>They look like rabbit footprints. Arctic hares must live here among the trees. @@ That's a good sign! An ecosystem's level of biodiversity is a good indicator of its health. For example, imagine if all these trees were cut down? We'd see biodiversity go down because of the destruction of these species's habitat.</Text><ID>923834</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HareFootprints</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Examine the animal footprints</Text><ID>923831</ID></Title><Desc><Text>Take a look at the footprints in the snow</Text><ID>941618</ID></Desc></Data> + 0 + false + + + 1457 + SpeedStinger02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We need to protect all the wildlife living on this island, including the Speed Stingers. The best way to do that is to learn as much as we can about them. @@ Let's go back to the Speed Stinger nest and see if we can learn more.</Text><ID>923837</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Speed Stingers always live in packs. Their leader is called the "Lead" Speed Stinger. Without a pack leader, they struggle to work as a team. This social structure is very important to the survival of their species.</Text><ID>923838</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the Speed Stinger nest</Text><ID>923835</ID></Title><Desc><Text>Go back to the Speed Stinger nest</Text><ID>941619</ID></Desc></Data> + 0 + false + + + 1458 + SpeedStinger02T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWSpeedStingerNPC</Asset><Location>PfMarker_SpeedStingerStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Uh oh... We might have overstayed our welcome. Forget what I said about making sudden movements. Run away! Get out of there!</Text><ID>923841</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That was some impressive field work, {{Name}}! I knew you could handle it.</Text><ID>923842</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Range</Key><Value>0</Value></Pair><Pair><Key>Time</Key><Value>15</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>1</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpeedStingerNPC</Value></Pair></Objective><Type>Chase</Type><Title><Text>Escape the Speed Stinger!</Text><ID>923839</ID></Title><Desc><Text>Run away from the Speed Stinger</Text><ID>941620</ID></Desc><Reminder><Text>Run away from the Speed Stinger!</Text><ID>936232</ID></Reminder><Failure><Text>The Speed Stinger caught you! Oh no!</Text><ID>936233</ID></Failure></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202770 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202770 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202770 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202770 + true + 200 + 200 + + 0 + +
+ false +
+ + 1657 + Arctic_Ruins01 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticRuins01T00.unity3d/PfGrpArcticRuins01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Igloo</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_IglooToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Makeshift Shelter</Text><ID>924679</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1633 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1657 + 1575 + 0 + + + 1 + 1657 + 1576 + 0 + + + 1 + 1657 + 1577 + 0 + + + 1 + 1657 + 1578 + 0 + + + 1 + 1657 + 1579 + 0 + + + 1 + 1657 + 1580 + 0 + + + 1 + 1657 + 1581 + 0 + + + 1 + 1657 + 1582 + 0 + + + 1 + 1657 + 1683 + 0 + + + 1 + 1657 + 1701 + 0 + + + + 1 + 202798 + 0 + + 1575 + Ruins01T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticRuins01T01.unity3d/PfGrpArcticRuins01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Uh oh... The wind is picking up. I think there's a blizzard coming. We need to find shelter quickly! +Can you gather some large branches? We can build a lean-to shelter out of those.</Text><ID>924572</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great work.</Text><ID>924573</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBranchLarge</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 3 large branches</Text><ID>924570</ID></Title><Desc><Text>Gather large branches at Icestorm Island to build a shelter</Text><ID>941583</ID></Desc></Data> + 0 + false + + + 1576 + Ruins01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks! Can you bring the branches back to me?</Text><ID>924576</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect. Okay, I'll start building the shelter.</Text><ID>924577</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>11144</Value></Pair><Pair><Key>ItemDescription</Key><Value>Large Branch</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the branches to Hiccup</Text><ID>924574</ID></Title><Desc><Text>Bring the large branches to Hiccup</Text><ID>941584</ID></Desc></Data> + 0 + false + + + 1577 + Ruins01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you and {{dragon name}} chop down 3 wood logs for a fire? We're in for some nasty weather...</Text><ID>924580</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That should be enough.</Text><ID>924581</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableTrees</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop 3 Wood Logs from the trees</Text><ID>924578</ID></Title><Desc><Text>Collect 3 Wood Logs to build a fire</Text><ID>941585</ID></Desc></Data> + 0 + false + + + 1578 + Ruins01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Bring the wood back to me, {{Name}}. And, er... we might need to rethink our plan a bit...</Text><ID>924584</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm no architect, but something tells me this lean-to isn't going to offer us much protection from the blizzard... +</Text><ID>924585</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Wood Logs to Hiccup</Text><ID>924582</ID></Title><Desc><Text>Bring the Wood Logs back to Hiccup</Text><ID>941586</ID></Desc></Data> + 0 + false + + + 1579 + Ruins01T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticRuins01T05.unity3d/PfGrpArcticRuins01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay, new plan! Let's think... Oh! I remember Fishlegs telling me something about how arctic explorers sometimes build dome-shaped shelters made of blocks of snow. They're called [c][3eebff]igloos[/c][ffffff]. I've never built one before, but we have to try. We're running out of time. The blizzard is coming. @@ We need blocks of hard-packed snow. The dense snow will provide insulation by trapping our body heat inside the igloo and blocking out the cold wind. Find the right type of snow, {{input}} on them, and start making blocks! I'll do the same. Hurry!</Text><ID>924588</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's great!</Text><ID>920775</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableSnowMound</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWIceBlock</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop snow into 12 blocks</Text><ID>924586</ID></Title><Desc><Text>Collect 12 snow blocks from the pile of snow</Text><ID>941587</ID></Desc></Data> + 0 + false + + + 1580 + Ruins01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Bring the blocks over here and I'll start building.</Text><ID>924592</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're doing amazing!</Text><ID>924593</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7993</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ice Block</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the ice blocks to Hiccup</Text><ID>924590</ID></Title><Desc><Text>Bring the ice blocks to Hiccup</Text><ID>941588</ID></Desc></Data> + 0 + false + + + 1581 + Ruins01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'll get to work building the igloo. We should catch a couple fish before the blizzard hits. Who knows how long we'll have to hide inside our shelter? Find a fishing hole close by if you can.</Text><ID>924596</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That looks like a good spot.</Text><ID>924597</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAllRight</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishingGroncicle</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the nearest fishing hole</Text><ID>924594</ID></Title><Desc><Text>Find a fishing hole nearby</Text><ID>941589</ID></Desc></Data> + 0 + false + + + 1582 + Ruins01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Catch 1 Arctic Char and bring it back to me. We need enough to tide us over until the blizzard dies down.</Text><ID>924600</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks for the fish, {{Name}}! What do you think of the igloo? It's not too shabby if you ask me. I even made a small fire inside the igloo to cook the fish and keep us warm. The warmth of the fire will melt the snow a bit, but when the snow refreezes, it actually strengthens the walls! @@ Don't worry about the smoke, I poked some ventilation holes in the roof. The holes will let out the smoke and let in fresh air so we can breathe. </Text><ID>924601</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>10984</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Char</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Catch 1 Arctic Char and give it to Hiccup</Text><ID>924598</ID></Title><Desc><Text>Catch 1 Arctic Char and bring it back to Hiccup</Text><ID>941590</ID></Desc></Data> + 0 + false + + + 1683 + Ruins01T09 + <Data><Setup><Scene>HubArctic01DO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>926283</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We're all set. Let's head inside the igloo before we freeze! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfMissionSceneFade.unity3d/PfMissionSceneFade</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IglooEntrance</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the igloo</Text><ID>926281</ID></Title><Desc><Text>Take shelter inside the igloo you built with Hiccup before the blizzard hits!</Text><ID>926282</ID></Desc></Data> + 0 + false + + + 1701 + Ruins01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Three hours later. The blizzard seems to have died down.</Text><ID>926286</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What a nasty blizzard! I'm glad it's over.</Text><ID>926287</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAllRight</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Come back outside</Text><ID>926284</ID></Title><Desc><Text>Explore the camp</Text><ID>941591</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202798 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202798 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202798 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202798 + true + 200 + 200 + + 0 + +
+ false +
+ + 1192 + New Farming 07 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1192 + 716 + 0 + + + + 1 + 201264 + 0 + + 716 + 5 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Eggs</Text><ID>921327</ID></Title><Desc><Text>This one's for me, friend! I love fried eggs in the morning.</Text><ID>922206</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 201264 + true + 6 + 6 + + 0 + + + + 62 +

2

+ 0 + + 1 + 1921 + 201264 + true + 62 + 62 + + 0 + +
+ false +
+ + 1193 + New Farming 08 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1193 + 717 + 0 + + + + 1 + 201265 + 0 + + 717 + 8 Dragon Nip 6 Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip, Chicken Eggs</Text><ID>921329</ID></Title><Desc><Text>Deadly Nadders are big fans of eggs and dragon nip.</Text><ID>922207</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 201265 + true + 6 + 6 + + 0 + + + + 133 +

2

+ 0 + + 1 + 2064 + 201265 + true + 133 + 133 + + 0 + +
+ false +
+ + 1194 + New Farming 09 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1194 + 718 + 0 + + + + 1 + 201266 + 0 + + 718 + 5 Peppermint, 4 wool, 5 eggs + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Peppermint, White Wool, Eggs</Text><ID>921714</ID></Title><Desc><Text>Ruffnut said she's trying to 'catch a cloud and pin it down?' I don't know what that means.</Text><ID>922885</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 201266 + true + 6 + 6 + + 0 + + + + 268 +

2

+ 0 + + 1 + 967 + 201266 + true + 268 + 268 + + 0 + +
+ false +
+ + 1195 + New Farming 10 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1195 + 719 + 0 + + + + 1 + 201267 + 0 + + 719 + 5 Egg, 6 Wool, 3 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Eggs, Black Wool, Corn</Text><ID>921333</ID></Title><Desc><Text>Snotlout wants dinner, and he wants a new shirt. Let's knock both tasks out.</Text><ID>922208</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 201267 + true + 6 + 6 + + 0 + + + + 292 +

2

+ 0 + + 1 + 888 + 201267 + true + 292 + 292 + + 0 + +
+ false +
+ + 1196 + New Farming 11 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1196 + 720 + 0 + + + + 1 + 201268 + 0 + + 720 + 8 egg, 2 blwool, 4 whwool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Eggs, Black Wool, White Wool</Text><ID>921716</ID></Title><Desc><Text>Tuffnut wants to test how yolk stains wool. Are we now accomplices?</Text><ID>922215</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 201268 + true + 6 + 6 + + 0 + + + + 291 +

2

+ 0 + + 1 + 2065 + 201268 + true + 291 + 291 + + 0 + +
+ false +
+ + 1197 + New Farming 12 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1197 + 721 + 0 + + + + 1 + 201269 + 0 + + 721 + 20 Dragon Nip, 12 Chicken Egg, 10 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip, Chicken Egg, Corn</Text><ID>921718</ID></Title><Desc><Text>Thornado has a large appetite, friend! Let's fill it.</Text><ID>921719</ID></Desc></Data> + 0 + false + + + 450 +

2

+ 0 + + 1 + 532 + 201269 + true + 450 + 450 + + 0 + + + + 6 +

9

+ 0 + + 1 + 667 + 201269 + true + 6 + 6 + + 0 + +
+ false +
+ + 1198 + New Farming 13 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1198 + 722 + 0 + + + + 1 + 201270 + 0 + + 722 + 24 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflowers</Text><ID>922179</ID></Title><Desc><Text>Hiccup wants a bouquet of flowers for a certain Hofferson. Oh ho ho!</Text><ID>922216</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201270 + true + 15 + 15 + + 0 + + + + 140 +

2

+ 0 + + 1 + 682 + 201270 + true + 140 + 140 + + 0 + +
+ false +
+ + 1199 + New Farming 14 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1199 + 723 + 0 + + + + 1 + 201271 + 0 + + 723 + 10 Sunflower, 12 Corn, 10 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflowers, Corn, Dragon Nip</Text><ID>921722</ID></Title><Desc><Text>Hiccup thinks Toothless needs a bit of a pick-me-up.</Text><ID>921723</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201271 + true + 15 + 15 + + 0 + + + + 304 +

2

+ 0 + + 1 + 2066 + 201271 + true + 304 + 304 + + 0 + +
+ false +
+ + 1200 + New Farming 15 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1200 + 724 + 0 + + + + 1 + 201272 + 0 + + 724 + 15 Sunflower, 7 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflowers, White Wool</Text><ID>921343</ID></Title><Desc><Text>Phlegma wants to brighten up her farm!</Text><ID>922217</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201272 + true + 15 + 15 + + 0 + + + + 288 +

2

+ 0 + + 1 + 2067 + 201272 + true + 288 + 288 + + 0 + +
+ false +
+ + 1201 + New Farming 16 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1201 + 725 + 0 + + + + 1 + 201273 + 0 + + 725 + 12 Peppermint, 6 Black Wool, 10 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Peppermint, Black Wool, Sunflower</Text><ID>921724</ID></Title><Desc><Text>The Headmaster needs a new undershirt, and black wool hides sweat better than white.</Text><ID>921725</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201273 + true + 15 + 15 + + 0 + + + + 428 +

2

+ 0 + + 1 + 2068 + 201273 + true + 428 + 428 + + 0 + +
+ false +
+ + 1202 + New Farming 17 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1202 + 726 + 0 + + + + 1 + 201274 + 0 + + 726 + 5 Chicken Egg, 5 Sunflower, 10 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Eggs, Sunflowers, White Wool</Text><ID>921726</ID></Title><Desc><Text>Fishlegs read something interesting in his book. He wants to try it out himself!</Text><ID>922218</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201274 + true + 15 + 15 + + 0 + + + + 407 +

2

+ 0 + + 1 + 864 + 201274 + true + 407 + 407 + + 0 + +
+ false +
+ + 1203 + New Farming 18 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1203 + 727 + 0 + + + + 1 + 201275 + 0 + + 727 + 10 White Wool, 36 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>36</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Sunflowers</Text><ID>921349</ID></Title><Desc><Text>Mulch needs to make repairs to his boat, and he can use a pick me up.</Text><ID>922219</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201275 + true + 15 + 15 + + 0 + + + + 510 +

2

+ 0 + + 1 + 968 + 201275 + true + 510 + 510 + + 0 + +
+ false +
+ + 1204 + New Farming 19 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1204 + 728 + 0 + + + + 1 + 201276 + 0 + + 728 + 15 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes</Text><ID>922253</ID></Title><Desc><Text>Hiccup is trying to make a new sauce out of pasted tomatoes. I hear he wants to eat it over noodles.</Text><ID>922220</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201276 + true + 30 + 30 + + 0 + + + + 266 +

2

+ 0 + + 1 + 2175 + 201276 + true + 266 + 266 + + 0 + +
+ false +
+ + 1205 + New Farming 20 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1205 + 729 + 0 + + + + 1 + 201277 + 0 + + 729 + 12 Sunflower, 5 White Wool, 6 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflowers, White Wool, Tomatoes</Text><ID>921728</ID></Title><Desc><Text>Astrid is looking for a new way to make targets for Flight Club!</Text><ID>921729</ID></Desc></Data> + 0 + false + + + 342 +

2

+ 0 + + 1 + 1925 + 201277 + true + 342 + 342 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 201277 + true + 30 + 30 + + 0 + +
+ false +
+ + 1206 + New Farming 21 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1206 + 730 + 0 + + + + 1 + 201278 + 0 + + 730 + 10 Corn, 7 Tomatoes, 10 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Corn, Tomatoes, Eggs</Text><ID>921730</ID></Title><Desc><Text>The Headmaster is trying to get an animal to trust him. I wish him luck.</Text><ID>921731</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201278 + true + 30 + 30 + + 0 + + + + 425 +

2

+ 0 + + 1 + 2069 + 201278 + true + 425 + 425 + + 0 + +
+ false +
+ + 1207 + New Farming 22 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1207 + 731 + 0 + + + + 1 + 201279 + 0 + + 731 + 8 Chicken Egg, 12 Tomatoes, 12 Peppermint + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Eggs, Tomatoes, Peppermint</Text><ID>921732</ID></Title><Desc><Text>Tuffnut won't tell me why he wants these things. I shudder to think.</Text><ID>921733</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201279 + true + 30 + 30 + + 0 + + + + 524 +

2

+ 0 + + 1 + 2070 + 201279 + true + 524 + 524 + + 0 + +
+ false +
+ + 1209 + New Farming 24 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1209 + 733 + 0 + + + + 1 + 201281 + 0 + + 733 + 10 White Wool, 18 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>10 White Wool, 18 Tomatoes</Text><ID>921361</ID></Title><Desc><Text>Ruffnut wants to see tomato splatter on actual wool. Oh, you crazy kids.</Text><ID>921362</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201281 + true + 30 + 30 + + 0 + + + + 610 +

2

+ 0 + + 1 + 2040 + 201281 + true + 610 + 610 + + 0 + +
+ false +
+ + 1210 + New Farming 25 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1210 + 734 + 0 + + + + 1 + 201282 + 0 + + 734 + 18 Cabbage + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>18 Cabbages</Text><ID>921736</ID></Title><Desc><Text>The Thorston twins want a bunch of heads of cabbage... to let them rot! Weird kids.</Text><ID>921737</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201282 + true + 30 + 30 + + 0 + + + + 332 +

2

+ 0 + + 1 + 2072 + 201282 + true + 332 + 332 + + 0 + +
+ false +
+ + 1211 + New Farming 26 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1211 + 735 + 0 + + + + 1 + 201283 + 0 + + 735 + 12 Cabbage, 12 Tomatoes, 6 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages, Tomatoes, Eggs</Text><ID>921740</ID></Title><Desc><Text>Hiccup and Astrid are planning a picnic. Let's help these lovebirds out.</Text><ID>921739</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201283 + true + 30 + 30 + + 0 + + + + 541 +

2

+ 0 + + 1 + 2073 + 201283 + true + 541 + 541 + + 0 + +
+ false +
+ + 1212 + New Farming 27 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1212 + 736 + 0 + + + + 1 + 201284 + 0 + + 736 + 12 Cabbage, 12 Tomatoes, 6 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages, Tomatoes, Eggs</Text><ID>921740</ID></Title><Desc><Text>That salad looks delicious! Mind letting me try it out?</Text><ID>921741</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201284 + true + 30 + 30 + + 0 + + + + 551 +

2

+ 0 + + 1 + 2074 + 201284 + true + 551 + 551 + + 0 + +
+ false +
+ + 1213 + New Farming 28 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1213 + 737 + 0 + + + + 1 + 201285 + 0 + + 737 + 8 Black Wool, 16 Cabbage + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>8 Black Wool, 16 Cabbage</Text><ID>921369</ID></Title><Desc><Text>Snotlout broke something in his farm and he needs some help to fix it.</Text><ID>921370</ID></Desc></Data> + 0 + false + + + 526 +

2

+ 0 + + 1 + 1878 + 201285 + true + 526 + 526 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 201285 + true + 30 + 30 + + 0 + +
+ false +
+ + 1214 + New Farming 29 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1214 + 738 + 0 + + + + 1 + 201286 + 0 + + 738 + 9 Chicken Egg, 5 Black Wool, 17 Cabbage + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>17</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Eggs, Black Wool, Cabbages</Text><ID>921742</ID></Title><Desc><Text>Eret gets what Eret wants.</Text><ID>928950</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201286 + true + 30 + 30 + + 0 + + + + 608 +

2

+ 0 + + 1 + 2075 + 201286 + true + 608 + 608 + + 0 + +
+ false +
+ + 1215 + New Farming 30 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1215 + 740 + 0 + + + + 1 + 201287 + 0 + + 740 + 10 White Wool, 12 Cabbage, 15 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Cabbage, Corn</Text><ID>921744</ID></Title><Desc><Text>I appreciate all your help with these jobs! Will you help me out with one more?</Text><ID>921745</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201287 + true + 30 + 30 + + 0 + + + + 758 +

2

+ 0 + + 1 + 2076 + 201287 + true + 758 + 758 + + 0 + +
+ false +
+ + 1216 + New Farming 31 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1216 + 741 + 0 + + + + 1 + 201288 + 0 + + 741 + 20 Cabbage, 14 Chicken Egg, 15 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages, Eggs, Tomatoes</Text><ID>921746</ID></Title><Desc><Text>Help me with Phlegma's groceries and I will help you in return!</Text><ID>921747</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201288 + true + 30 + 30 + + 0 + + + + 863 +

2

+ 0 + + 1 + 2077 + 201288 + true + 863 + 863 + + 0 + +
+ false +
+ + 1217 + New Farming 32 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1217 + 742 + 0 + + + + 1 + 201289 + 0 + + 742 + 18 Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>18 Pumpkin</Text><ID>921377</ID></Title><Desc><Text>I have customers across the sea who have never seen pumpkins before! I want to bring them this wonder.</Text><ID>921378</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201289 + true + 40 + 40 + + 0 + + + + 388 +

2

+ 0 + + 1 + 870 + 201289 + true + 388 + 388 + + 0 + +
+ false +
+ + 1218 + New Farming 33 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1218 + 743 + 0 + + + + 1 + 201290 + 0 + + 743 + 10 Pumpkin, 20 Corn, 7 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair></Objective><Type>Delivery</Type><Title><Text>10 Pumpkin, 20 Corn, 7 Chicken Egg</Text><ID>921379</ID></Title><Desc><Text>Gobber wants a piece of the Harvest Haunt decorations for his own house! He wants to make a scary pumpkin.</Text><ID>921380</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201290 + true + 40 + 40 + + 0 + + + + 619 +

2

+ 0 + + 1 + 2078 + 201290 + true + 619 + 619 + + 0 + +
+ false +
+ + 1219 + New Farming 34 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1219 + 744 + 0 + + + + 1 + 201291 + 0 + + 744 + 16 Cabbage, 7 Pumpkin, 7 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages, Pumpkins, Black Wool</Text><ID>921748</ID></Title><Desc><Text>Tuffnut wants to see how many things Barf and Belch will eat!</Text><ID>921749</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201291 + true + 40 + 40 + + 0 + + + + 689 +

2

+ 0 + + 1 + 2079 + 201291 + true + 689 + 689 + + 0 + +
+ false +
+ + 1220 + New Farming 35 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1220 + 745 + 0 + + + + 1 + 201292 + 0 + + 745 + 12 Pumpkin, 22 Corn, 10 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>22</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins, Corn, Eggs</Text><ID>921750</ID></Title><Desc><Text>Phlegma wants to make a delicious salad for her friends!</Text><ID>921751</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201292 + true + 40 + 40 + + 0 + + + + 750 +

2

+ 0 + + 1 + 1609 + 201292 + true + 750 + 750 + + 0 + +
+ false +
+ + 1221 + New Farming 36 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1221 + 746 + 0 + + + + 1 + 201293 + 0 + + 746 + 12 Pumpkin, 24 Cabbage, 32 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>32</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins, Cabbages, Sunflowers</Text><ID>921752</ID></Title><Desc><Text>Astrid wants to give these items to Hiccup. I think she needs to learn how to give presents, eh?</Text><ID>921753</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201293 + true + 40 + 40 + + 0 + + + + 938 +

2

+ 0 + + 1 + 2080 + 201293 + true + 938 + 938 + + 0 + +
+ false +
+ + 1222 + New Farming 37 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1222 + 747 + 0 + + + + 1 + 201294 + 0 + + 747 + 12 Chicken Egg, 30 Corn, 8 Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Eggs, Corn, Pumpkins</Text><ID>921754</ID></Title><Desc><Text>Ruffnut is hungry and she won't take no for an answer.</Text><ID>921755</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201294 + true + 40 + 40 + + 0 + + + + 788 +

2

+ 0 + + 1 + 2081 + 201294 + true + 788 + 788 + + 0 + +
+ false +
+ + 1223 + New Farming 38 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1223 + 748 + 0 + + + + 1 + 201295 + 0 + + 748 + 5 Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>5 Turkey Feathers</Text><ID>921389</ID></Title><Desc><Text>I want to put some feathers in some caps!</Text><ID>921390</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 201295 + true + 50 + 50 + + 0 + + + + 37 +

2

+ 0 + + 1 + 1862 + 201295 + true + 37 + 37 + + 0 + +
+ false +
+ + 1224 + New Farming 39 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1224 + 749 + 0 + + + + 1 + 201296 + 0 + + 749 + 9 Elderberries + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair></Objective><Type>Delivery</Type><Title><Text>9 Elderberries</Text><ID>921391</ID></Title><Desc><Text>Fishlegs is starving, and I know exactly what will hit that hunger spot.</Text><ID>921392</ID></Desc></Data> + 0 + false + + + 143 +

2

+ 0 + + 1 + 1887 + 201296 + true + 143 + 143 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 201296 + true + 3 + 3 + + 0 + +
+ false +
+ + 1226 + New Farming 41 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1226 + 751 + 0 + + + + 1 + 201298 + 0 + + 751 + 10 Elderberrys, 10 cabbage, 10 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries, Cabbages, Eggs</Text><ID>921756</ID></Title><Desc><Text>Indulge a strange old man and bring me my new dinner!</Text><ID>921757</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201298 + true + 30 + 30 + + 0 + + + + 504 +

2

+ 0 + + 1 + 2083 + 201298 + true + 504 + 504 + + 0 + +
+ false +
+ + 1227 + New Farming 42 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1227 + 752 + 0 + + + + 1 + 201299 + 0 + + 752 + 10 Elderberry, 15 pumpkin, 10 egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries, Pumpkins, Eggs</Text><ID>921758</ID></Title><Desc><Text>Berries and eggs, a perfectly delicious lunch.</Text><ID>921759</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201299 + true + 40 + 40 + + 0 + + + + 664 +

2

+ 0 + + 1 + 2084 + 201299 + true + 664 + 664 + + 0 + +
+ false +
+ + 1228 + New Farming 43 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1228 + 753 + 0 + + + + 1 + 201300 + 0 + + 753 + 9 Toothache + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair></Objective><Type>Delivery</Type><Title><Text>9 Toothache Plants</Text><ID>921399</ID></Title><Desc><Text>Hookfang has another toothache! Just what is Snotlout feeding his dragon?</Text><ID>921400</ID></Desc></Data> + 0 + false + + + 510 +

2

+ 0 + + 1 + 968 + 201300 + true + 510 + 510 + + 0 + + + + 60 +

9

+ 0 + + 1 + 1986 + 201300 + true + 60 + 60 + + 0 + +
+ false +
+ + 1229 + New Farming 44 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1229 + 754 + 0 + + + + 1 + 201301 + 0 + + 754 + 6 Toothache, 20 Cabbage + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Type>Delivery</Type><Title><Text>6 Toothache Plants, 20 Cabbages</Text><ID>921760</ID></Title><Desc><Text>Phlegma has an idea for making more toothache plants!</Text><ID>921761</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201301 + true + 60 + 60 + + 0 + + + + 720 +

2

+ 0 + + 1 + 2176 + 201301 + true + 720 + 720 + + 0 + +
+ false +
+ + 1230 + New Farming 45 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1230 + 755 + 0 + + + + 1 + 201302 + 0 + + 755 + 8 Toothache, 20 Corn, 2 Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Toothache Plants, Corn, Eggs</Text><ID>921762</ID></Title><Desc><Text>Astrid has an idea for a new salad. +I'm full, thanks.</Text><ID>921763</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201302 + true + 60 + 60 + + 0 + + + + 827 +

2

+ 0 + + 1 + 2085 + 201302 + true + 827 + 827 + + 0 + +
+ false +
+ + 1231 + New Farming 46 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1231 + 756 + 0 + + + + 1 + 201303 + 0 + + 756 + 8 Toothache, 20 Peppermint, 15 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Toothache Plants, Peppermint, Corn</Text><ID>921764</ID></Title><Desc><Text>Now Snotlout has a toothache!</Text><ID>921765</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201303 + true + 60 + 60 + + 0 + + + + 1020 +

2

+ 0 + + 1 + 2020 + 201303 + true + 1020 + 1020 + + 0 + +
+ false +
+ + 1232 + New Farming 47 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1232 + 757 + 0 + + + + 1 + 201304 + 0 + + 757 + 6 Black Wool, 12 Toothache Plant + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>6 Black Wool, 12 Toothache Plants</Text><ID>921407</ID></Title><Desc><Text>Heather is trying a new experience. Let's help her out!</Text><ID>921408</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201304 + true + 60 + 60 + + 0 + + + + 864 +

2

+ 0 + + 1 + 2086 + 201304 + true + 864 + 864 + + 0 + +
+ false +
+ + 1233 + New Farming 48 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1233 + 758 + 0 + + + + 1 + 201305 + 0 + + 758 + 10 Toothache Plant, 4 White Wool, 20 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Toothache Plants, White Wool, Corn</Text><ID>921766</ID></Title><Desc><Text>Heather ran out of some supplies at the lab!</Text><ID>921767</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201305 + true + 60 + 60 + + 0 + + + + 1016 +

2

+ 0 + + 1 + 2087 + 201305 + true + 1016 + 1016 + + 0 + +
+ false +
+ + 1234 + New Farming 49 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1234 + 759 + 0 + + + + 1 + 201306 + 0 + + 759 + 12 Pumpkin, 12 Toothache, 20 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins, Toothache Plants, Dragon Nip</Text><ID>921768</ID></Title><Desc><Text>Hiccup is making a dragon emergency kit!</Text><ID>921769</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201306 + true + 60 + 60 + + 0 + + + + 1167 +

2

+ 0 + + 1 + 2088 + 201306 + true + 1167 + 1167 + + 0 + +
+ false +
+ + 1235 + New Farming 50 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1235 + 760 + 0 + + + + 1 + 201307 + 0 + + 760 + 18 Carrots + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>18 Carrots</Text><ID>921413</ID></Title><Desc><Text>I hear the doctor of Berk wants to eat carrots. What's up with that, doctor?</Text><ID>921414</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 201307 + true + 56 + 56 + + 0 + + + + 546 +

2

+ 0 + + 1 + 2089 + 201307 + true + 546 + 546 + + 0 + +
+ false +
+ + 1236 + New Farming 51 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1236 + 761 + 0 + + + + 1 + 201308 + 0 + + 761 + 18 Carrots, 18 Corn, 2 Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Carrots, Corn, Pumpkins</Text><ID>921770</ID></Title><Desc><Text>Phlegma is trying out a new recipe!</Text><ID>921771</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 201308 + true + 56 + 56 + + 0 + + + + 944 +

2

+ 0 + + 1 + 2090 + 201308 + true + 944 + 944 + + 0 + +
+ false +
+ + 1237 + New Farming 52 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1237 + 762 + 0 + + + + 1 + 201309 + 0 + + 762 + 10 Carrots, 18 Corn, 10 Eggs + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Carrots, Corn, Eggs</Text><ID>921772</ID></Title><Desc><Text>Phlegma would like to remind you to eat your vegetables.</Text><ID>921773</ID></Desc></Data> + 0 + false + + + 745 +

2

+ 0 + + 1 + 1880 + 201309 + true + 745 + 745 + + 0 + + + + 56 +

9

+ 0 + + 1 + 1998 + 201309 + true + 56 + 56 + + 0 + +
+ false +
+ + 1238 + New Farming 53 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1238 + 763 + 0 + + + + 1 + 201310 + 0 + + 763 + 12 Elderberry, 10 Carrots, 10 Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries, Carrots, Pumpkins</Text><ID>921774</ID></Title><Desc><Text>Fishlegs wants to restock his cupboards.</Text><ID>921775</ID></Desc></Data> + 0 + false + + + 774 +

2

+ 0 + + 1 + 1891 + 201310 + true + 774 + 774 + + 0 + + + + 56 +

9

+ 0 + + 1 + 1998 + 201310 + true + 56 + 56 + + 0 + +
+ false +
+ + 1239 + New Farming 54 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1239 + 764 + 0 + + + + 1 + 201311 + 0 + + 764 + 6 Carrots, 12 Toothache Plants, 5 Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Carrots, Toothache Plants, Turkey Feathers</Text><ID>921776</ID></Title><Desc><Text>Bucket is looking for some interesting shapes to put into his bucket.</Text><ID>921777</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 201311 + true + 56 + 56 + + 0 + + + + 999 +

2

+ 0 + + 1 + 2091 + 201311 + true + 999 + 999 + + 0 + +
+ false +
+ + 1240 + New Farming 55 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1240 + 765 + 0 + + + + 1 + 201312 + 0 + + 765 + 12 Yak Milk + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>12 bottles of Yak Milk</Text><ID>921778</ID></Title><Desc><Text>I drink yak milk like it's going out of style.</Text><ID>921779</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201312 + true + 72 + 72 + + 0 + + + + 1704 +

2

+ 0 + + 1 + 2092 + 201312 + true + 1704 + 1704 + + 0 + +
+ false +
+ + 1241 + New Farming 56 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1241 + 766 + 0 + + + + 1 + 201313 + 0 + + 766 + 18 Lavender + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>18 Lavender</Text><ID>921425</ID></Title><Desc><Text>It's a secret between you and me, friend, but it looks like Snotlout has a soft heart.</Text><ID>921426</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201313 + true + 72 + 72 + + 0 + + + + 668 +

2

+ 0 + + 1 + 2093 + 201313 + true + 668 + 668 + + 0 + +
+ false +
+ + 1243 + New Farming 58 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1243 + 768 + 0 + + + + 1 + 201315 + 0 + + 768 + 8 Lavender, 20 Dragon Nip, 6 Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lavender, Dragon Nip, Eggs</Text><ID>921782</ID></Title><Desc><Text>An absurd little dragon popped out to give me a note that Fishlegs wants these items.</Text><ID>921783</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201315 + true + 72 + 72 + + 0 + + + + 558 +

2

+ 0 + + 1 + 2095 + 201315 + true + 558 + 558 + + 0 + +
+ false +
+ + 1244 + New Farming 59 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1244 + 769 + 0 + + + + 1 + 201316 + 0 + + 769 + 16 Cabbage, 6 Lavender, 16 Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages, Lavender, Pumpkins</Text><ID>921784</ID></Title><Desc><Text>Hiccup wants to make a new type of breakfast!</Text><ID>921785</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201316 + true + 72 + 72 + + 0 + + + + 936 +

2

+ 0 + + 1 + 2096 + 201316 + true + 936 + 936 + + 0 + +
+ false +
+ + 1245 + New Farming 60 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1245 + 770 + 0 + + + + 1 + 201317 + 0 + + 770 + 6 Black Wool, 16 Sunflowers, 12 Lavender + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool, Sunflowers, Lavender</Text><ID>921786</ID></Title><Desc><Text>Black wool over the head is the best way to hide from the world. I assume that's what Tuffnut wants this for.</Text><ID>921787</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201317 + true + 72 + 72 + + 0 + + + + 756 +

2

+ 0 + + 1 + 2097 + 201317 + true + 756 + 756 + + 0 + +
+ false +
+ + 1247 + Quest_SciMethod 02 + 18 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Hiccup's Tale</Text><ID>922084</ID></Title><Desc><Text>The repeatable quest for Hiccup's videos.</Text><ID>922085</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 4 + 8,5 + 0 + true + + + 3 + 1038 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1247 + 799 + 0 + + + 1 + 1247 + 800 + 0 + + + 1 + 1247 + 801 + 0 + + + 1 + 1247 + 802 + 0 + + + 1 + 1247 + 803 + 0 + + + + 1 + 201321 + 0 + + 799 + SciMethod T01 Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Wow, I always wondered how Toothless and little Hiccup became such good friends. It's such a great tale! +I know Hiccup loves talking about it. Why don't you go over and ask him about how he used the [c][3eebff]scientific method[/c][ffffff] to become Toothless's friend?</Text><ID>922102</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey there! I love talking about the beginning with Toothless. You know, the scientific method isn't just a theory in some book. It's really useful in the real world. +Let me tell you how I used it!</Text><ID>922103</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/ScientificMethod01.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestStory1.unity3d/DlgHiccupSciMethod01End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about the scientific method</Text><ID>922100</ID></Title><Desc><Text>Talk to Hiccup about the scientific method.</Text><ID>939184</ID></Desc></Data> + 0 + false + + + 800 + SciMethod T02 + <Data><Offer><Type>Popup</Type><ID>922106</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>But before I could test out that hypothesis, I realized I had another [c][3eebff]problem[/c][ffffff] on my hands. I needed to convince Toothless that I meant no harm, or I'd never be able to help him fly again. @@ When I saw Toothless try to eat the fish, it gave me an idea. Maybe he'd like me if I gave him something to eat. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuest1.unity3d/DlgHiccupSciMethod02A</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922107</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now, I bet you're wondering what happened when I went to Toothless to feed him a fish…</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/ScientificMethod02.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Name</Key><Value>PfFish</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch a fish</Text><ID>922104</ID></Title><Desc><Text>Catch a fish.</Text><ID>922105</ID></Desc></Data> + 0 + false + + + 801 + SciMethod T03 Feed + <Data><Offer><Type>Popup</Type><ID>922110</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It worked out with Toothless and it will work out with your dragon, too! +{{Input}} on {{dragon name}}, {{input}} on the eating utensils, and {{input}} on the fish you want to give the dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuest1.unity3d/DlgHiccupHungry</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922111</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! Feeding {{dragon name}} increases the [c][3eebff]Energy[/c][ffffff] meter. Make sure to have a lot of fish handy so you can feed your dragon when it gets hungry!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/ScientificMethod03.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>Peteat</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed {{dragon name}} a fish</Text><ID>922108</ID></Title><Desc><Text>Feed your dragon a fish. {{Input}} on the utensils and {{input}} on the fish you would like to give your dragon.</Text><ID>922109</ID></Desc></Data> + 0 + false + + + 802 + SciMethod T04 Eel Roast + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I had to adjust my theory on the fly when my testing showed it was false! The good thing about the Scientific Method is that nothing is wrong. All data we learn can help us get closer to the hypothesis that is true! Come back to me and I'll tell you what we did next.</Text><ID>922078</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestStory1.unity3d/DlgHiccupSciMethod04Offer</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that Toothless trusted me, I could get back to my original Problem. I wanted to help Toothless fly again.</Text><ID>922079</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestStory1.unity3d/DlgHiccupSciMethod04End</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/ScientificMethod04.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 803 + SciMethod T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I love Toothless so much. He's my best friend! +I never get old of talking about how we became friends. If you ever want me to talk about it again, just come on by and ask Wartihog! +For now, go back to Wartihog and tell him my story.</Text><ID>922114</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Oh wow... +That's amazing! +Hiccup is my hero... +and so are you.</Text><ID>922115</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidA</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go back to Wartihog in the Lookout</Text><ID>922112</ID></Title><Desc><Text>Tell Wartihog the tale of Hiccup and Toothless.</Text><ID>922113</ID></Desc></Data> + 0 + false + + + 5 +

1

+ 0 + + 1 + 3 + 201321 + true + 5 + 5 + + 0 + + + + 5 +

2

+ 0 + + 1 + 7 + 201321 + true + 5 + 5 + + 0 + +
+ + 5 +

8

+ 0 + + 1 + 593 + 201321 + true + 5 + 5 + + 0 + +
+ false +
+ + 1250 + New Farming 61 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1250 + 806 + 0 + + + + 1 + 201342 + 0 + + 806 + 3 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool</Text><ID>922147</ID></Title><Desc><Text>Gobber has a blockage of wax in his ear and I need to make some swabs to clear it out!</Text><ID>922146</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201342 + true + 4 + 4 + + 0 + + + + 82 +

2

+ 0 + + 1 + 2098 + 201342 + true + 82 + 82 + + 0 + +
+ false +
+ + 1251 + New Farming 62 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1251 + 807 + 0 + + + + 1 + 201343 + 0 + + 807 + 6 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool</Text><ID>922147</ID></Title><Desc><Text>Just wait'll you get your hands on our cotton shirts!</Text><ID>922148</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201343 + true + 4 + 4 + + 0 + + + + 164 +

2

+ 0 + + 1 + 2099 + 201343 + true + 164 + 164 + + 0 + +
+ false +
+ + 1252 + New Farming 63 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1252 + 808 + 0 + + + + 1 + 201344 + 0 + + 808 + 9 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool</Text><ID>922147</ID></Title><Desc><Text>Valka wants to stockpile some medical supplies, just to be safe.</Text><ID>928951</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201344 + true + 4 + 4 + + 0 + + + + 246 +

2

+ 0 + + 1 + 2100 + 201344 + true + 246 + 246 + + 0 + +
+ false +
+ + 1253 + New Farming 64 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1253 + 809 + 0 + + + + 1 + 201345 + 0 + + 809 + 3 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool</Text><ID>922155</ID></Title><Desc><Text>Hiccup has some newfangled idea about black clothes and the cover of night. I don't know what he's talking about.</Text><ID>922152</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201345 + true + 4 + 4 + + 0 + + + + 87 +

2

+ 0 + + 1 + 2101 + 201345 + true + 87 + 87 + + 0 + +
+ false +
+ + 1254 + New Farming 65 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1254 + 810 + 0 + + + + 1 + 201346 + 0 + + 810 + 9 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool</Text><ID>922155</ID></Title><Desc><Text>Fishlegs has a knitting project in mind for his Gronckle. Ah, how beautiful - the friendship between a boy and his dragon!</Text><ID>922154</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201346 + true + 4 + 4 + + 0 + + + + 251 +

2

+ 0 + + 1 + 2102 + 201346 + true + 251 + 251 + + 0 + +
+ false +
+ + 1255 + New Farming 66 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1255 + 811 + 0 + + + + 1 + 201347 + 0 + + 811 + 12 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool</Text><ID>922155</ID></Title><Desc><Text>Snotlout thinks a new wardrobe of black clothes will make others take him seriously. Will it? Time will tell!</Text><ID>922156</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201347 + true + 4 + 4 + + 0 + + + + 328 +

2

+ 0 + + 1 + 2103 + 201347 + true + 328 + 328 + + 0 + +
+ false +
+ + 1256 + New Farming 67 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1256 + 812 + 0 + + + + 1 + 201348 + 0 + + 812 + 6 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Egg</Text><ID>922159</ID></Title><Desc><Text>Eggs are delicious. I am always eager to make more omelets.</Text><ID>922158</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 201348 + true + 80 + 80 + + 0 + + + + 6 +

9

+ 0 + + 1 + 667 + 201348 + true + 6 + 6 + + 0 + +
+ false +
+ + 1257 + New Farming 68 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1257 + 813 + 0 + + + + 1 + 201349 + 0 + + 813 + 12 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Egg</Text><ID>922159</ID></Title><Desc><Text>Snotlout needs more raw eggs for his workout shakes? That can't be tasty.</Text><ID>922160</ID></Desc></Data> + 0 + false + + + 160 +

2

+ 0 + + 1 + 543 + 201349 + true + 160 + 160 + + 0 + + + + 6 +

9

+ 0 + + 1 + 667 + 201349 + true + 6 + 6 + + 0 + +
+ false +
+ + 1258 + New Farming 69 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1258 + 814 + 0 + + + + 1 + 201350 + 0 + + 814 + 18 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Chicken Egg</Text><ID>922159</ID></Title><Desc><Text>Ruffnut wants to pick up juggling. She'll need a lot of eggs to practice.</Text><ID>922162</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 201350 + true + 6 + 6 + + 0 + + + + 230 +

2

+ 0 + + 1 + 975 + 201350 + true + 230 + 230 + + 0 + +
+ false +
+ + 1259 + New Farming 70 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1259 + 815 + 0 + + + + 1 + 201351 + 0 + + 815 + 8 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Corn</Text><ID>922165</ID></Title><Desc><Text>Ruffnut is obsessed with yellow food this week.</Text><ID>922164</ID></Desc></Data> + 0 + false + + + 121 +

2

+ 0 + + 1 + 1926 + 201351 + true + 121 + 121 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 201351 + true + 4 + 4 + + 0 + +
+ false +
+ + 1260 + New Farming 71 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1260 + 816 + 0 + + + + 1 + 201352 + 0 + + 816 + 16 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Corn</Text><ID>922165</ID></Title><Desc><Text>Mulch needs to refill his corn bait supply.</Text><ID>922166</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201352 + true + 4 + 4 + + 0 + + + + 232 +

2

+ 0 + + 1 + 2062 + 201352 + true + 232 + 232 + + 0 + +
+ false +
+ + 1261 + New Farming 72 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,3 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1261 + 817 + 0 + + + + 1 + 201353 + 0 + + 817 + 24 Corn + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Corn</Text><ID>922165</ID></Title><Desc><Text>Hiccup has an idea for a new meal: heat corn to pop them. What a crazy guy!</Text><ID>922168</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 201353 + true + 4 + 4 + + 0 + + + + 343 +

2

+ 0 + + 1 + 2104 + 201353 + true + 343 + 343 + + 0 + +
+ false +
+ + 1263 + New Farming 74 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1263 + 819 + 0 + + + + 1 + 201355 + 0 + + 819 + 15 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip</Text><ID>922169</ID></Title><Desc><Text>Hiccup's supply of Dragon Nip is running low. He needs a lot to help wild dragons!</Text><ID>922172</ID></Desc></Data> + 0 + false + + + 110 +

2

+ 0 + + 1 + 526 + 201355 + true + 110 + 110 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 201355 + true + 3 + 3 + + 0 + +
+ false +
+ + 1264 + New Farming 75 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1264 + 820 + 0 + + + + 1 + 201356 + 0 + + 820 + 20 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip</Text><ID>922169</ID></Title><Desc><Text>Astrid thinks that Stormfly needs a pick-me-up after a hard week.</Text><ID>922174</ID></Desc></Data> + 0 + false + + + 145 +

2

+ 0 + + 1 + 1855 + 201356 + true + 145 + 145 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 201356 + true + 3 + 3 + + 0 + +
+ false +
+ + 1265 + New Farming 76 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1265 + 821 + 0 + + + + 1 + 201357 + 0 + + 821 + 24 Sunflowers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflowers</Text><ID>922179</ID></Title><Desc><Text>Fishlegs created a new salad for Meatlug. He said something about her stocky figure?</Text><ID>922176</ID></Desc></Data> + 0 + false + + + 160 +

2

+ 0 + + 1 + 543 + 201357 + true + 160 + 160 + + 0 + + + + 15 +

9

+ 0 + + 1 + 668 + 201357 + true + 15 + 15 + + 0 + +
+ false +
+ + 1266 + New Farming 77 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1266 + 822 + 0 + + + + 1 + 201358 + 0 + + 822 + 36 Sunflowers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>36</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflower</Text><ID>922177</ID></Title><Desc><Text>Snotlout wants to impress a special lady. I wish him luck.</Text><ID>922178</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 201358 + true + 15 + 15 + + 0 + + + + 230 +

2

+ 0 + + 1 + 975 + 201358 + true + 230 + 230 + + 0 + +
+ false +
+ + 1267 + New Farming 78 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1267 + 823 + 0 + + + + 1 + 201359 + 0 + + 823 + 48 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>48</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sunflowers</Text><ID>922179</ID></Title><Desc><Text>I never expected there would be such a high demand for sunflowers among the tough Vikings of Berk!</Text><ID>922180</ID></Desc></Data> + 0 + false + + + 300 +

2

+ 0 + + 1 + 520 + 201359 + true + 300 + 300 + + 0 + + + + 15 +

9

+ 0 + + 1 + 668 + 201359 + true + 15 + 15 + + 0 + +
+ false +
+ + 1268 + New Farming 79 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1268 + 824 + 0 + + + + 1 + 201360 + 0 + + 824 + 8 Cabbages + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages</Text><ID>922181</ID></Title><Desc><Text>Snotlout is collecting targets for fireball practice. He says cabbages burn in a delightful manner.</Text><ID>922182</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201360 + true + 30 + 30 + + 0 + + + + 162 +

2

+ 0 + + 1 + 2105 + 201360 + true + 162 + 162 + + 0 + +
+ false +
+ + 1269 + New Farming 80 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1269 + 825 + 0 + + + + 1 + 201363 + 0 + + 825 + 16 Cabbages + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages</Text><ID>922181</ID></Title><Desc><Text>Stormfly loves chewing on cabbage. Does she actually eat them or just shred them? I don't know!</Text><ID>922222</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201363 + true + 30 + 30 + + 0 + + + + 304 +

2

+ 0 + + 1 + 2066 + 201363 + true + 304 + 304 + + 0 + +
+ false +
+ + 1270 + New Farming 81 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,7 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1270 + 826 + 0 + + + + 1 + 201364 + 0 + + 826 + 24 Cabbage + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Cabbages</Text><ID>922181</ID></Title><Desc><Text>I want to make my favorite meal: fårikål, a casserole of lamb and cabbage!</Text><ID>922224</ID></Desc></Data> + 0 + false + + + 456 +

2

+ 0 + + 1 + 1461 + 201364 + true + 456 + 456 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 201364 + true + 30 + 30 + + 0 + +
+ false +
+ + 1271 + New Farming 82 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1271 + 827 + 0 + + + + 1 + 201365 + 0 + + 827 + 8 Pumpkins + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins</Text><ID>922225</ID></Title><Desc><Text>Snotlout likes smashing pumpkins? That's not my thing, but I am no Viking warrior!</Text><ID>922226</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201365 + true + 40 + 40 + + 0 + + + + 198 +

2

+ 0 + + 1 + 970 + 201365 + true + 198 + 198 + + 0 + +
+ false +
+ + 1272 + New Farming 83 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1272 + 828 + 0 + + + + 1 + 201366 + 0 + + 828 + 16 Pumpkins + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins</Text><ID>922225</ID></Title><Desc><Text>My good and dear friend! Could you restock my orange-colored surplus?</Text><ID>922228</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201366 + true + 40 + 40 + + 0 + + + + 366 +

2

+ 0 + + 1 + 1873 + 201366 + true + 366 + 366 + + 0 + +
+ false +
+ + 1273 + New Farming 84 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,8 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1273 + 829 + 0 + + + + 1 + 201367 + 0 + + 829 + 24 Pumpkins + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins</Text><ID>922225</ID></Title><Desc><Text>I need more pumpkins for the trip away from Berk. Will you help me out?</Text><ID>922230</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201367 + true + 40 + 40 + + 0 + + + + 534 +

2

+ 0 + + 1 + 2106 + 201367 + true + 534 + 534 + + 0 + +
+ false +
+ + 1274 + New Farming 85 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1274 + 830 + 0 + + + + 1 + 201368 + 0 + + 830 + 6 Toothaches + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Toothache Plants</Text><ID>922235</ID></Title><Desc><Text>Gobber needs some more plants to deal with dragons with rotting teeth.</Text><ID>922232</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201368 + true + 60 + 60 + + 0 + + + + 365 +

2

+ 0 + + 1 + 2107 + 201368 + true + 365 + 365 + + 0 + +
+ false +
+ + 1275 + New Farming 86 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1275 + 831 + 0 + + + + 1 + 201369 + 0 + + 831 + 12 Toothaches + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Toothache Plants</Text><ID>922235</ID></Title><Desc><Text>Phlegma's fascination with this plant just doesn't end! Get her more, more, more!</Text><ID>922234</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201369 + true + 60 + 60 + + 0 + + + + 690 +

2

+ 0 + + 1 + 2108 + 201369 + true + 690 + 690 + + 0 + +
+ false +
+ + 1276 + New Farming 87 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,10 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1276 + 832 + 0 + + + + 1 + 201370 + 0 + + 832 + 18 Toothache Plant + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Toothache Plants</Text><ID>922235</ID></Title><Desc><Text>Heather needs more plants to make the medicine for toothaches.</Text><ID>922236</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 201370 + true + 60 + 60 + + 0 + + + + 1020 +

2

+ 0 + + 1 + 2020 + 201370 + true + 1020 + 1020 + + 0 + +
+ false +
+ + 1277 + New Farming 88 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1277 + 833 + 0 + + + + 1 + 201371 + 0 + + 833 + 5 Lavender + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lavender</Text><ID>922239</ID></Title><Desc><Text>I hear lavender is a favorite flower of some dragons!</Text><ID>922238</ID></Desc></Data> + 0 + false + + + 220 +

2

+ 0 + + 1 + 748 + 201371 + true + 220 + 220 + + 0 + + + + 72 +

9

+ 0 + + 1 + 1999 + 201371 + true + 72 + 72 + + 0 + +
+ false +
+ + 1278 + New Farming 89 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1278 + 834 + 0 + + + + 1 + 201372 + 0 + + 834 + 10 Lavender + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lavender</Text><ID>922239</ID></Title><Desc><Text>Heather is running low on her supply of lavender tea.</Text><ID>922240</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 201372 + true + 72 + 72 + + 0 + + + + 410 +

2

+ 0 + + 1 + 2109 + 201372 + true + 410 + 410 + + 0 + +
+ false +
+ + 1280 + New Farming 91 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1280 + 836 + 0 + + + + 1 + 201374 + 0 + + 836 + 6 Carrots + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Carrots</Text><ID>922247</ID></Title><Desc><Text>I eat carrots by the bushel, my friend, because I like having good eyesight!</Text><ID>922244</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 201374 + true + 56 + 56 + + 0 + + + + 222 +

2

+ 0 + + 1 + 2111 + 201374 + true + 222 + 222 + + 0 + +
+ false +
+ + 1281 + New Farming 92 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1281 + 837 + 0 + + + + 1 + 201375 + 0 + + 837 + 12 Carrots + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Carrots</Text><ID>922247</ID></Title><Desc><Text>Do you want to build a snowman? Astrid does, and she needs some good carrot noses.</Text><ID>922246</ID></Desc></Data> + 0 + false + + + 414 +

2

+ 0 + + 1 + 871 + 201375 + true + 414 + 414 + + 0 + + + + 56 +

9

+ 0 + + 1 + 1998 + 201375 + true + 56 + 56 + + 0 + +
+ false +
+ + 1282 + New Farming 93 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1282 + 838 + 0 + + + + 1 + 201376 + 0 + + 838 + 18 Carrots + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Carrots</Text><ID>922247</ID></Title><Desc><Text>Eret demands carrots for his Thunderdrum! I must oblige.</Text><ID>928952</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 201376 + true + 56 + 56 + + 0 + + + + 596 +

2

+ 0 + + 1 + 2112 + 201376 + true + 596 + 596 + + 0 + +
+ false +
+ + 1283 + New Farming 94 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1283 + 839 + 0 + + + + 1 + 201377 + 0 + + 839 + 10 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes</Text><ID>922253</ID></Title><Desc><Text>I will hide after I deliver the tomatoes to the Thorston twins… I suggest you do, too.</Text><ID>922250</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201377 + true + 30 + 30 + + 0 + + + + 214 +

2

+ 0 + + 1 + 2113 + 201377 + true + 214 + 214 + + 0 + +
+ false +
+ + 1284 + New Farming 95 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1284 + 840 + 0 + + + + 1 + 201378 + 0 + + 840 + 15 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes</Text><ID>922253</ID></Title><Desc><Text>Mulch wants to make soup with tomato base and clams.</Text><ID>922252</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 201378 + true + 30 + 30 + + 0 + + + + 296 +

2

+ 0 + + 1 + 2114 + 201378 + true + 296 + 296 + + 0 + +
+ false +
+ + 1285 + New Farming 96 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,6 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1285 + 841 + 0 + + + + 1 + 201379 + 0 + + 841 + 20 Tomatoes + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes</Text><ID>922253</ID></Title><Desc><Text>Hiccup wants red paint! I think I know exactly what he needs.</Text><ID>922254</ID></Desc></Data> + 0 + false + + + 388 +

2

+ 0 + + 1 + 870 + 201379 + true + 388 + 388 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 201379 + true + 30 + 30 + + 0 + +
+ false +
+ + 1286 + New Farming 97 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1286 + 842 + 0 + + + + 1 + 201380 + 0 + + 842 + 6 Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turkey Feathers</Text><ID>922257</ID></Title><Desc><Text>Fishlegs needs to tickle Meatlug. Something about an 'exciting new rock'?</Text><ID>922256</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 201380 + true + 50 + 50 + + 0 + + + + 84 +

2

+ 0 + + 1 + 2115 + 201380 + true + 84 + 84 + + 0 + +
+ false +
+ + 1287 + New Farming 98 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1287 + 843 + 0 + + + + 1 + 201381 + 0 + + 843 + 12 Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turkey Feathers</Text><ID>922257</ID></Title><Desc><Text>Hiccup wants to try using ink instead of charcoal to write in his journal. Let's get him some quills.</Text><ID>922258</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 201381 + true + 50 + 50 + + 0 + + + + 128 +

2

+ 0 + + 1 + 2116 + 201381 + true + 128 + 128 + + 0 + +
+ false +
+ + 1288 + New Farming 99 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1288 + 844 + 0 + + + + 1 + 201382 + 0 + + 844 + 18 Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turkey Feathers</Text><ID>922257</ID></Title><Desc><Text>Tuffnut wants to fly. Whatever the customer wants, I suppose.</Text><ID>922260</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 201382 + true + 50 + 50 + + 0 + + + + 192 +

2

+ 0 + + 1 + 2117 + 201382 + true + 192 + 192 + + 0 + +
+ false +
+ + 1289 + New Farming 100 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1289 + 845 + 0 + + + + 1 + 201383 + 0 + + 845 + 3 Elderberries + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries</Text><ID>922213</ID></Title><Desc><Text>Snotlout eats elderberries like they're sweet candies.</Text><ID>922210</ID></Desc></Data> + 0 + false + + + 86 +

2

+ 0 + + 1 + 1906 + 201383 + true + 86 + 86 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 201383 + true + 3 + 3 + + 0 + +
+ false +
+ + 1290 + New Farming 101 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1290 + 846 + 0 + + + + 1 + 201384 + 0 + + 846 + 6 Elderberries + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries</Text><ID>922213</ID></Title><Desc><Text>Phlegma thinks that she can use some elderberries to treat the flu. +</Text><ID>922212</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 201384 + true + 3 + 3 + + 0 + + + + 137 +

2

+ 0 + + 1 + 2118 + 201384 + true + 137 + 137 + + 0 + +
+ false +
+ + 1291 + New Farming 102 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,9 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1291 + 847 + 0 + + + + 1 + 201385 + 0 + + 847 + 9 Elderberries + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries</Text><ID>922213</ID></Title><Desc><Text>Fishlegs read that you can use elderberry branches to make flutes. I can't see it, but I always fill demand, with your help.</Text><ID>922214</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 201385 + true + 3 + 3 + + 0 + + + + 188 +

2

+ 0 + + 1 + 2119 + 201385 + true + 188 + 188 + + 0 + +
+ false +
+ + 1292 + New Farming 103 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1292 + 848 + 0 + + + + 1 + 201655 + 0 + + 848 + Bunny Fur + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8895</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bunny Fur</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bunny Fur</Text><ID>922328</ID></Title><Desc><Text>Bunny fur is also called 'lapin.' Astrid's mother wants new fur lining for her helmet!</Text><ID>922327</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201655 + true + 40 + 40 + + 0 + + + + 71 +

2

+ 0 + + 1 + 2120 + 201655 + true + 71 + 71 + + 0 + +
+ false +
+ + 1293 + New Farming 104 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1293 + 849 + 0 + + + + 1 + 201656 + 0 + + 849 + Bunny Fur + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8895</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bunny Fur</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bunny Fur</Text><ID>922328</ID></Title><Desc><Text>Winters are cold in Berk, and I didn't pack enough! I need to make some cozy underpants.</Text><ID>922329</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 201656 + true + 40 + 40 + + 0 + + + + 115 +

2

+ 0 + + 1 + 1102 + 201656 + true + 115 + 115 + + 0 + +
+ false +
+ + 1294 + New Farming 105 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,11 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1294 + 850 + 0 + + + + 1 + 201657 + 0 + + 850 + Bunny Fur, White Wool, Carrot + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8895</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bunny Fur</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bunny Fur, White Wool, Carrots</Text><ID>922330</ID></Title><Desc><Text>Bucket is an amazing artist! His artistic urge requires a white canvas, and I know how to oblige.</Text><ID>922331</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 201657 + true + 56 + 56 + + 0 + + + + 550 +

2

+ 0 + + 1 + 2121 + 201657 + true + 550 + 550 + + 0 + +
+ false +
+ + 1295 + New Farming 106 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,13 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1295 + 851 + 0 + + + + 1 + 201658 + 0 + + 851 + Bunny Fur, Black Wool, Yak Milk + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8895</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bunny Fur</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bunny Fur, Black Wool, Yak Milk</Text><ID>922332</ID></Title><Desc><Text>Gobber would like to enjoy a warm cup of milk while doing his chores!</Text><ID>922333</ID></Desc></Data> + 0 + false + + + 412 +

2

+ 0 + + 1 + 877 + 201658 + true + 412 + 412 + + 0 + + + + 72 +

9

+ 0 + + 1 + 1999 + 201658 + true + 72 + 72 + + 0 + +
+ false +
+ + 1304 + Quest_Stables + 12 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Monstrous and Cool</Text><ID>922467</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-04-2021 06:13:53,01-04-2022 06:13:53 + 0 + false + + + 3 + 1090 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1304 + 880 + 0 + + + 1 + 1304 + 881 + 0 + + + + 1 + 201734 + 0 + + 880 + Stables 1: Talk to Gobber + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The best dragon trainers, like myself, can train multiple dragons. Hookfang totally listens to me, and so do a whole bunch of other dragons. You need to do the same! Talk to Gobber in the Hatchery for more information.</Text><ID>922474</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Oh ho, {{greeting}}, you think you're ready for more dragons? Interesting!</Text><ID>922475</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Title><Desc><Text>Go into the Hatchery and talk to Gobber.</Text><ID>929892</ID></Desc></Data> + 0 + false + + + 881 + Stables 2: Visit Stables + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can find more eggs in the store, or you can complete more quests. Visit the Stables and I'll show you what you'll need to do!</Text><ID>922478</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Great!</Text><ID>922905</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonStableINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the Stables</Text><ID>922476</ID></Title><Desc><Text>Visit the Dragon Stables through the door in the Hatchery.</Text><ID>929893</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201734 + true + 50 + 50 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 201734 + true + 50 + 50 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 201734 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201734 + true + 50 + 50 + + 0 + +
+ false +
+ + 1305 + Quest_Consumables + 12 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Fire of Competition!</Text><ID>922480</ID></Title><Desc><Text>Consumables</Text><ID>922481</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1090 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1305 + 882 + 0 + + + 1 + 1305 + 883 + 0 + + + + 1 + 201735 + 0 + + 882 + Flight Club + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Whoa! We're going to spice up our games! We've added some cool bonuses to get in these tracks that will help you out. Go into Flight Club and try a track, and don't forget to pick up one of the cool bonus crates in there!</Text><ID>922484</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolPortal</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Flight Club</Text><ID>922482</ID></Title><Desc><Text>Go for a run in Flight Club with the new consumables at the Training Grounds.</Text><ID>933196</ID></Desc></Data> + 0 + false + + + 883 + Fireball Frenzy + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>We've added bonus crates to Fireball Frenzy, too! You'll really need to step up your game if you want to be as good as me now. @@Go into Fireball Frenzy and shoot down some shields with ? painted on them!</Text><ID>922492</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You're a natural! Great work, {{Name}}. I'll keep my eye on you.</Text><ID>922493</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Fireball Frenzy</Text><ID>922490</ID></Title><Desc><Text>Enter Fireball Frenzy and look for the shields with the ? painted on them.</Text><ID>922759</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 201735 + true + 50 + 50 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201735 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 201735 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201735 + true + 50 + 50 + + 0 + +
+ false +
+ + 1307 + Cauldron 01 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1307 + 885 + 0 + + + + 1 + 202302 + 0 + + 885 + 6 Dragon Nip 10 Corn + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Dragon Nip, Corn</Text><ID>922508</ID></Title><Desc><Text>Bring 6 Dragon Nip and 10 Corn.</Text><ID>922509</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 9508 + + 1 + 1303 + 202302 + true + 1 + 1 + + 0 + + + false +
+ + 1308 + Cauldron 02 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1308 + 886 + 0 + + + + 1 + 202303 + 0 + + 886 + 1 white wool 2 black wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Black Wool</Text><ID>922512</ID></Title><Desc><Text>Bring 1 White Wool and 2 Black Wool t the cauldron.</Text><ID>922511</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 9508 + + 1 + 1304 + 202303 + true + 1 + 1 + + 0 + + + false +
+ + 1309 + Cauldron 03 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1309 + 887 + 0 + + + + 1 + 202304 + 0 + + 887 + 4 white wool 4 black wool + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Black Wool</Text><ID>922512</ID></Title><Desc><Text>Bring 4 White Wool and 4 Black Wool.</Text><ID>922513</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 9508 + + 1 + 1305 + 202304 + true + 2 + 2 + + 0 + + + false +
+ + 1310 + Cauldron 04 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1310 + 888 + 0 + + + + 1 + 202305 + 0 + + 888 + 1 White Wool 5 Corn 6 Pepper + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Corn, Peppermint</Text><ID>922514</ID></Title><Desc><Text>Bring 1 White Wool, 5 Corn, and 6 Peppermint.</Text><ID>922515</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 9508 + + 1 + 1306 + 202305 + true + 1 + 1 + + 0 + + + false +
+ + 1311 + Cauldron 05 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1311 + 889 + 0 + + + + 1 + 202306 + 0 + + 889 + 8 Black Wool 24 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>NPCs.unity3d/PfKisha</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>NPCs.unity3d/PfKisha</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Wool, Sunflowers</Text><ID>922516</ID></Title><Desc><Text>Bring 8 Black Wool and 24 Sunflowers.</Text><ID>922517</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 9508 + + 1 + 1307 + 202306 + true + 3 + 3 + + 0 + + + false +
+ + 1312 + Cauldron 06 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,4 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1312 + 890 + 0 + + + + 1 + 202307 + 0 + + 890 + White Wool Egg Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Wool, Eggs, Black Wool</Text><ID>922518</ID></Title><Desc><Text>Bring 3 White Wool, 3 Eggs, and 3 Black Wool.</Text><ID>922519</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 9508 + + 1 + 1308 + 202307 + true + 2 + 2 + + 0 + + + false +
+ + 1313 + Cauldron 07 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,4 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1313 + 891 + 0 + + + + 1 + 202308 + 0 + + 891 + 5 eggs 4 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Eggs, Black Wool</Text><ID>922520</ID></Title><Desc><Text>Bring 5 Chicken Eggs and 4 Black Wool.</Text><ID>922521</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 9508 + + 1 + 1309 + 202308 + true + 2 + 2 + + 0 + + + false +
+ + 1314 + Cauldron 08 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1314 + 892 + 0 + + + + 1 + 202309 + 0 + + 892 + 16 Peppermint, 10 Cabbage + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Peppermints, Cabbages</Text><ID>922522</ID></Title><Desc><Text>Bring 16 Peppermints and 10 Cabbages.</Text><ID>922523</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 9508 + + 1 + 1310 + 202309 + true + 2 + 2 + + 0 + + + false +
+ + 1315 + Cauldron 09 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1315 + 893 + 0 + + + + 1 + 202310 + 0 + + 893 + 3 elderberries 4 white wool 24 sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elderberries, White Wool, Sunflowers</Text><ID>922524</ID></Title><Desc><Text>Bring 3 Elderberries, 4 White Wool, and 24 Sunflowers.</Text><ID>922525</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 9508 + + 1 + 1311 + 202310 + true + 3 + 3 + + 0 + + + false +
+ + 1316 + Cauldron 10 + 19 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1316 + 894 + 0 + + + + 1 + 202311 + 0 + + 894 + 8 Eggs 10 Tomatoes 10 Cabbages + <Data><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfCauldronDO</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Eggs, Tomatoes, Cabbages</Text><ID>922526</ID></Title><Desc><Text>Bring 8 Eggs, 10 Tomatoes, and 10 Cabbages.</Text><ID>922527</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 9508 + + 1 + 1312 + 202311 + true + 3 + 3 + + 0 + + + false +
+ + 1317 + Quest_Side 4 + 3 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSide4T05.unity3d/PfGrpQSide4T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Wanted: Berk Watch!</Text><ID>922560</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1155 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1317 + 895 + 0 + + + 1 + 1317 + 896 + 0 + + + 1 + 1317 + 897 + 0 + + + 1 + 1317 + 898 + 0 + + + 1 + 1317 + 899 + 0 + + + 1 + 1317 + 900 + 0 + + + + 1 + 202312 + 0 + + 895 + Look for Gobber's Barrel + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSide4T01.unity3d/PfGrpQSide4T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hiya, {{greeting}}! I think something smells fishy around here, and it's not Mulch's new haul. I can't find the barrel of weapons I keep around my shop. Can you look around Berk and see if you spot it?</Text><ID>922530</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Huh. Well, that's my barrel all right. I'd recognize the smell of my socks anywhere! I just wonder where all the weapons went.</Text><ID>922531</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_QSide4T01</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Gobber's barrel of weapons</Text><ID>922528</ID></Title><Desc><Text>Search for Gobber's missing barrel of weapons in Berk.</Text><ID>922562</ID></Desc></Data> + 0 + false + + + 896 + Talk to Astrid + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I asked Astrid to help me with the search, too. Can you see if she's had any luck with the weapons?</Text><ID>922534</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No sign of those weapons. I wonder if someone took them and just dumped the barrel. It looks like this is a job for… the Berk Watch!</Text><ID>922564</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid at Berk.</Text><ID>936497</ID></Desc></Data> + 0 + false + + + 897 + Talk to Johann + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSide4T05.unity3d/PfGrpQSide4T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Come on, {{Name}}, this is exactly what we needed to get into some action! Put on your Berk Watch medallion and let's solve this mystery. You should let Hiccup know something weird is going on.</Text><ID>922537</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's odd. I spoke with Trader Johann and he said that some of his barrels went missing. He claimed that they were filled with some potentially dangerous items. We should check this out.</Text><ID>922538</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup at Berk.</Text><ID>928248</ID></Desc></Data> + 0 + false + + + 898 + Search for the Barrels + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSide4T06.unity3d/PfGrpQSide4T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dangerous? Not to us! Let's go look for the barrels. I'll search around the school. You get Berk!</Text><ID>922541</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Good eye!</Text><ID>922542</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_QSide4T05</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search for the dangerous barrels in Berk</Text><ID>922539</ID></Title><Desc><Text>Look for Trader Johann's dangerous barrels in Berk.</Text><ID>929773</ID></Desc></Data> + 0 + false + + + 899 + Destroy the Barrels + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSide4T06.unity3d/PfGrpQSide4T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Remember what Johann said--these barrels could be dangerous! Have {{dragon name}} shoot the barrels. Don't get too close!</Text><ID>922545</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_QSide4T05</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfBarrel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the barrels with {{dragon name}}</Text><ID>922543</ID></Title><Desc><Text>Shoot the barrels with your dragon.</Text><ID>929774</ID></Desc></Data> + 0 + false + + + 900 + Talk to Hiccup + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSide4T06.unity3d/PfGrpQSide4T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Raiders! +Don't get close and come back to me, quickly!</Text><ID>922548</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Maybe we haven't seen the last of Viggo's influence in these waters. I'll talk to Astrid about redoubling Berk Watch's efforts. Nice work, {{Name}}!</Text><ID>922549</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to Hiccup</Text><ID>922546</ID></Title><Desc><Text>Come back to Hiccup in Berk.</Text><ID>929775</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202312 + true + 50 + 50 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202312 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202312 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202312 + true + 50 + 50 + + 0 + +
+ false +
+ + 1318 + Quest_Side 5 + 12 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_Botanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mischief of a Twin</Text><ID>922599</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1159 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1318 + 901 + 0 + + + 1 + 1318 + 902 + 0 + + + 2 + 1318 + 1319 + 0 + + + 2 + 1318 + 1320 + 0 + + + 1 + 1318 + 907 + 0 + + + 1 + 1318 + 908 + 0 + + + + 1 + 202313 + 0 + + 1319 + S5T3 + 12 +

1318

+ <Data><Offer><Type>Popup</Type><ID>922594</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I think they released the animals to the wilderness. Will you go there and corral them up for me? I'm missing at least 5 of each animal.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>922595</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Good. I knew I could count on you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Catch Bunnies and Turkeys</Text><ID>922593</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1319 + 903 + 0 + + + 1 + 1319 + 904 + 0 + + + + 1 + 0 + 0 + + 903 + Collect Bunnies + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide5T02.unity3d/PfGrpQSide5T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfDWBunny</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the bunnies in the Wilderness</Text><ID>922569</ID></Title><Desc><Text>Find all 5 bunnies in the Wilderness.</Text><ID>922570</ID></Desc></Data> + 0 + false + + + 904 + Collect Turkeys + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide5T03.unity3d/PfGrpQSide5T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTurkeyDO</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Turkeys in the Wilderness</Text><ID>922571</ID></Title><Desc><Text>Find all 5 turkeys in the Wilderness.</Text><ID>922572</ID></Desc></Data> + 0 + false + + false + + + 1320 + S5T5 + 12 +

1318

+ <Data><Offer><Type>Popup</Type><ID>922597</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hmm.. It looks like I'm missing one rabbit and one turkey. +Maybe they're still at the school. Can you look and see if you can find them at the school?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>922598</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>How did they get up there?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Find the rest</Text><ID>922596</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1320 + 905 + 0 + + + 1 + 1320 + 906 + 0 + + + + 1 + 0 + 0 + + 905 + Find Bunny + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide5T04.unity3d/PfGrpQSide5T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWBunny</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the last bunny in the school</Text><ID>922573</ID></Title><Desc><Text>Find the last bunny at the school.</Text><ID>922574</ID></Desc></Data> + 0 + false + + + 906 + Find Turkey + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide5T05.unity3d/PfGrpQSide5T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTurkeyDO05</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the turkey in the school</Text><ID>922575</ID></Title><Desc><Text>Find the turkey in the school.</Text><ID>922576</ID></Desc></Data> + 0 + false + + false +
+ + 901 + S5T1: Find Ruffnut + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_School_River</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>PfDWRuffnut</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922579</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Have you seen Ruffnut, {{Name}}? She was sneaking around just now and I lost track of her. I don't know why, she just looked really interesting for a moment. Let me know if you track her down, okay?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922580</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>{{Name}}! Shh! +I just did something awesome. Wait one second...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Ruffnut at the school</Text><ID>922577</ID></Title><Desc><Text>Find Ruffnut somewhere at the school.</Text><ID>922578</ID></Desc></Data> + 0 + false + + + 902 + S5T2: Meet Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Where are my turkeys? Where are my rabbits? + +Ruffnut! Tuffnut!@@ {{Name}}, can you come over here? I want your help.</Text><ID>922583</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This is the work of one of the twins, I just know it! +Someone let out my animals and all my pens are empty.</Text><ID>922584</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist at the school.</Text><ID>933154</ID></Desc></Data> + 0 + false + + + 907 + Go back to the Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bring them back to me, {{Name}}.</Text><ID>922587</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you for your help. +You tell Ruffnut and Tuffnut that I have my eye on them!</Text><ID>922588</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return the animals to the Botanist</Text><ID>922585</ID></Title><Desc><Text>Give Phlegma's animals back to her at the school.</Text><ID>933155</ID></Desc></Data> + 0 + false + + + 908 + Talk to Snotlout + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I saw you running around a bit. What's going on? Come back and explain what just happened, will you?</Text><ID>922591</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>So Ruffnut pulled a prank on the Botanist? That's cool, but I bet I could do it even better! I bet if I put my muscles into it, I can do something amazing! Just you wait.</Text><ID>922592</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202313 + true + 300 + 300 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 202313 + true + 70 + 70 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202313 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202313 + true + 50 + 50 + + 0 + +
+ false +
+ + 1321 + New Farming 107 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1321 + 909 + 0 + + + + 1 + 202342 + 0 + + 909 + 6 Flax Flowers + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flowers</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Flax Flowers</Text><ID>922635</ID></Title><Desc><Text>Mulch tells me he needs more nets for his fishing vessel!</Text><ID>922634</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202342 + true + 3 + 3 + + 0 + + + + 29 +

2

+ 0 + + 1 + 2122 + 202342 + true + 29 + 29 + + 0 + +
+ false +
+ + 1322 + New Farming 108 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1322 + 910 + 0 + + + + 1 + 202343 + 0 + + 910 + 12 Flax Flowers + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flowers</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Flax Flowers</Text><ID>922635</ID></Title><Desc><Text>The rope at the well is starting to fray. Hiccup needs more flax to restore it!</Text><ID>922636</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202343 + true + 3 + 3 + + 0 + + + + 58 +

2

+ 0 + + 1 + 2123 + 202343 + true + 58 + 58 + + 0 + +
+ false +
+ + 1324 + New Farming 110 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1324 + 912 + 0 + + + + 1 + 202345 + 0 + + 912 + 12 Flax 6 White Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flowers</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Flax Flowers, White Wool</Text><ID>922639</ID></Title><Desc><Text>Tuffnut wants to make a kite to fly from the Lookout.</Text><ID>922640</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 202345 + true + 4 + 4 + + 0 + + + + 227 +

2

+ 0 + + 1 + 2124 + 202345 + true + 227 + 227 + + 0 + +
+ false +
+ + 1325 + New Farming 111 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,5 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1325 + 913 + 0 + + + + 1 + 202346 + 0 + + 913 + 12 Flax 6 White 12 Sunflower + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flowers</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Flax Flowers, White Wool, Sunflowers</Text><ID>922641</ID></Title><Desc><Text>The Great Hall is dreadfully dreary. Shall we add some life to this building?</Text><ID>922642</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 202346 + true + 15 + 15 + + 0 + + + + 312 +

2

+ 0 + + 1 + 2125 + 202346 + true + 312 + 312 + + 0 + +
+ false +
+ + 1326 + New Farming 112 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1326 + 915 + 0 + + + + 1 + 202347 + 0 + + 915 + 3 Black Beans + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Beans</Text><ID>922647</ID></Title><Desc><Text>Astrid is looking for new feed for Stormfly.</Text><ID>922646</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202347 + true + 3 + 3 + + 0 + + + + 29 +

2

+ 0 + + 1 + 2122 + 202347 + true + 29 + 29 + + 0 + +
+ false +
+ + 1327 + New Farming 113 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1327 + 916 + 0 + + + + 1 + 202348 + 0 + + 916 + 6 Black Beans + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Beans</Text><ID>922647</ID></Title><Desc><Text>Snotlout is looking to share a family dinner with his father, Spitelout.</Text><ID>922648</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202348 + true + 3 + 3 + + 0 + + + + 58 +

2

+ 0 + + 1 + 2123 + 202348 + true + 58 + 58 + + 0 + +
+ false +
+ + 1328 + New Farming 114 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1328 + 917 + 0 + + + + 1 + 202349 + 0 + + 917 + 12 Black Beans + <Data><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Beans</Text><ID>922647</ID></Title><Desc><Text>A flatulence contest between the twins.</Text><ID>922650</ID></Desc></Data> + 0 + false + + + 106 +

2

+ 0 + + 1 + 1103 + 202349 + true + 106 + 106 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 202349 + true + 3 + 3 + + 0 + +
+ false +
+ + 1329 + New Farming 115 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1329 + 918 + 0 + + + + 1 + 202350 + 0 + + 918 + 6 Black Beans 4 Eggs + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Beans, Eggs</Text><ID>922651</ID></Title><Desc><Text>Ruffnut has an interesting idea for a new prank! I hope I never learn the details of it.</Text><ID>922652</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 202350 + true + 6 + 6 + + 0 + + + + 117 +

2

+ 0 + + 1 + 2126 + 202350 + true + 117 + 117 + + 0 + +
+ false +
+ + 1330 + New Farming 116 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,4 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1330 + 919 + 0 + + + + 1 + 202351 + 0 + + 919 + 12 Beans, 8 Eggs, 9 Peppermint + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Black Beans, Eggs, Peppermint</Text><ID>922653</ID></Title><Desc><Text>Hookfang isn't eating anything, and Snotlout is desperate to feed him something.</Text><ID>922654</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 202351 + true + 6 + 6 + + 0 + + + + 371 +

2

+ 0 + + 1 + 2127 + 202351 + true + 371 + 371 + + 0 + +
+ false +
+ + 1331 + Gronckle 02 + 5 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQGronckle02T00.unity3d/PfGrpQGronckle02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Wide, Open Sea</Text><ID>922819</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1338 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1331 + 920 + 0 + + + 1 + 1331 + 921 + 0 + + + 1 + 1331 + 922 + 0 + + + 1 + 1331 + 923 + 0 + + + 2 + 1331 + 1332 + 0 + + + 1 + 1331 + 925 + 0 + + + 1 + 1331 + 926 + 0 + + + 1 + 1331 + 927 + 0 + + + 1 + 1331 + 928 + 0 + + + + 1 + 202352 + 0 + + 1332 + Gronckle 5: Flax + 5 +

1331

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Deliver Flax Flowers</Text><ID>922818</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1332 + 924 + 0 + + + + 1 + 202353 + 0 + + 924 + Gronckle 5 Give Mulch 6 Flax + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Well these fish aren’t going to catch themselves. Since we lost the boat, we’ll need to create special tools to catch these fish. You see, their habitat, or the natural environment that an organism lives in, is in really deep waters. We’ll need a special rod and a longer line to catch these fish. @@ I’ll create a longer line using fibers from flax flowers. You see, fibers from flax flowers can be threaded into fine, thin rope that is both strong and reliable. Grow some flax flowers in your farm and bring me 6 of them.</Text><ID>922602</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Perfect. Give me a moment and I'll get this fishing rod ready.</Text><ID>922603</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flower</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 6 flax flowers to Mulch</Text><ID>922600</ID></Title><Desc><Text>Bring 6 flax flowers to Mulch. You can harvest flax flowers in your farm or buy them in the Store.</Text><ID>928192</ID></Desc></Data> + 0 + false + + + 10 +

6

+ 9544 + + 1 + 1386 + 202353 + true + 10 + 10 + + 0 + +
+ + 1 +

6

+ 9547 + + 1 + 1385 + 202353 + true + 1 + 1 + + 0 + +
+ false + + + 920 + Gronckle 1: Bucket + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Mulch asked me to help him catch some angler fish for Johann the Trader, but I'm not having any luck. Did I forget how? I must be doing it wrong. @@ Can you catch some fish at the school lake?</Text><ID>922606</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wait, I just remembered something important. We can’t catch angler fish at a lake! Angler fish are saltwater fish, so they only live in water that contains large amounts of salt like an ocean. Only freshwater fish live in lakes because they live in water that doesn’t contain salt. @@ Earlier, I took Mulch’s boat into the sea to catch angler fish. I was minding my own business when a giant dragon suddenly appeared! I hopped in my giant bucket and paddled out of there.</Text><ID>922607</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_School_WaterArea</Value></Pair><Pair><Key>Name</Key><Value>PfFish</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch fish from the School Lake</Text><ID>922604</ID></Title><Desc><Text>Go to the school lake and catch 2 freshwater fish.</Text><ID>928193</ID></Desc></Data> + 0 + false + + + 921 + Gronckle 2: Visit + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I had to leave a barrel of really valuable glowworms on the boat. They’re really hard to get, so I can’t lose them… Do you think you can find it for me? It should still be in the boat. I took the boat to my secret fishing spot. @@ The living things that survive in any area is called an ecosystem, and the angler fish has a role to play in their home. They live and thrive in the deep ocean, and that’s the only place you can catch them. +Fly out of the caldera and you can find the boat and the glowworms. Be careful!</Text><ID>922610</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Discover the fate of Mulch's ship</Text><ID>922608</ID></Title><Desc><Text>Fly outside of the caldera to look for Mulch's ship.</Text><ID>926416</ID></Desc></Data> + 0 + false + + + 922 + Gronckle 3: Find + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQGronckle02T03.unity3d/PfGrpQGronckle02T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922628</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>You'll find the barrel on the ship!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfGlowWormBarrel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the barrel of glowworms</Text><ID>922626</ID></Title><Desc><Text>Find the barrel of glowworms by the broken ship.</Text><ID>922627</ID></Desc></Data> + 0 + false + + + 923 + Gronckle 4: Delivery Mulch + <Data><Offer><Type>Popup</Type><ID>922631</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Bring the glowworms back to Mulch. He’ll know what to do.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922632</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Bucket told me what happened. Did you find a big beastie out there?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring the barrel to Mulch</Text><ID>922629</ID></Title><Desc><Text>Bring the barrel of glowworms to Mulch.</Text><ID>922630</ID></Desc></Data> + 0 + false + + + 925 + Gronckle 6: Go to Open Ocean + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You’ll need to fly back out to the sea where you saw Mulch’s boat. Try flying out of the caldera at the School!@@ I've sent a Gronckle ahead to help you: Gronckles can hover very steady, so you can fish from her back, if you don't have your own Gronckle.</Text><ID>922613</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh wow. Mulch's ship IS wrecked!</Text><ID>922614</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGronckle</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGronckle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Gronckle at the open ocean</Text><ID>922611</ID></Title><Desc><Text>Mount the Gronckle at the open ocean</Text><ID>941099</ID></Desc></Data> + 0 + false + + + 926 + Gronckle 7: Hover over the sea + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You'll know when you see the spot - fish are just leaping out of the water there! Make sure you're with a Gronckle.</Text><ID>922616</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Nice job!</Text><ID>922617</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfFishingZoneFlying_01</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly the Gronckle to the fishing spot</Text><ID>922615</ID></Title></Data> + 0 + false + + + 927 + Gronckle 8: Catch 2 Angler Fish + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Alright! Can you catch 2 angler fish? +Remember to use the glowworms as bait. Glowworms have something called [c][3eebff]bioluminescence[/c][ffffff] – their bodies glow! @@ In the deep sea ecosystem, the water is very dark because the sunlight can’t reach it. The glowworm’s light in this dark environment attracts all the fish! @@ The Gronckle's saddlebags will contain your bait, click on those after you find a good spot over the water to fish from.</Text><ID>922620</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Amazing!</Text><ID>922621</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Fishing</Value></Pair><Pair><Key>Name</Key><Value>PfFishAnglerDO</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch 2 angler fish while flying a Gronckle</Text><ID>922618</ID></Title><Desc><Text>Catch 2 angler fish from the ocean. </Text><ID>941100</ID></Desc></Data> + 0 + false + + + 928 + Gronckle 9: Give Mulch + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You should return to Mulch and give him the angler fish.</Text><ID>922624</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Thank you laddie. I didn’t know how I was going to do it! You saved my hide.</Text><ID>922625</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>9580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Angler Fish</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Mulch 2 Angler Fish</Text><ID>922622</ID></Title><Desc><Text>Give 2 Angler Fish to Mulch.</Text><ID>928194</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202352 + true + 50 + 50 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 202352 + true + 250 + 250 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202352 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202352 + true + 200 + 200 + + 0 + +
+ false +
+ + 1333 + Quest Storm01 + 4 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQStorm01T01.unity3d/PfGrpQStorm01T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Prepare for the Big One!</Text><ID>922831</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1099 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1333 + 929 + 0 + + + 1 + 1333 + 930 + 0 + + + 2 + 1333 + 1334 + 0 + + + 1 + 1333 + 932 + 0 + + + 1 + 1333 + 933 + 0 + + + 1 + 1333 + 934 + 0 + + + 1 + 1333 + 935 + 0 + + + + 1 + 202354 + 0 + + 1334 + Storm 3 Bread + 4 +

1333

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Get Bread</Text><ID>922830</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1334 + 931 + 0 + + + + 1 + 202355 + 0 + + 931 + Storm 3: Bread + <Data><Offer><Type>Popup</Type><ID>922691</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We need [c][3eebff]grains[/c][ffffff], too. Any food from wheat, rice, oats, barley, or other cereals are considered grains. We can make a lot of cool foods from grains, like bread and oatmeal! Eating grains can help maintain weight and have a lot of important nutrients. @@ Fishlegs was making a few sandwiches when I spoke to him last. Can you talk to him and get a loaf of bread? +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922692</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There’s a storm coming? Of course you can have my bread. I’ll try to make more.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get bread from Fishlegs</Text><ID>922689</ID></Title><Desc><Text>Talk to Fishlegs and get a loaf of bread from him.</Text><ID>922690</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7978 + + 1 + 1389 + 202355 + true + 1 + 1 + + 0 + +
+ false + + + 929 + Storm 1: Meet Botanist + <Data><Offer><Type>Popup</Type><ID>922695</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey {{Name}}. My dad was talking about getting me more involved with the problems we have around the islands. He’s always telling me, ‘a chief’s first duty is to his people.’ I need to make sure that everyone at the school is safe. @@ +There’s another big storm coming in and we need to get the school ready. [c][3eebff]No matter what we do, we won’t be able to stop the storm from doing damage to the school. But if we prepare, we can lessen the damage![/c][ffffff] @@ Can you talk to Phlegma about how much food we have stored? Storms can kill crops, so we should make sure we have enough to feed everyone before that happens.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922696</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Well, we have enough to feed a lot of people. With the new students and their dragons here, we might not be able to cover everyone.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist in the Lookout.</Text><ID>922694</ID></Desc></Data> + 0 + false + + + 930 + Storm 2: Carrots + <Data><Offer><Type>Popup</Type><ID>922699</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hiccup is gathering the food at the base of the school farm. Let’s make sure to gather the important food groups. Let’s see – we need some [c][3eebff]vegetables, fruits, grains, protein foods,[/c][ffffff] and [c][3eebff]dairy[/c][ffffff] to maintain a healthy diet for everyone. @@ Let’s start with some vegetables. Grow some carrots in your farm and I’ll bring the same amount from mine. Carrots promote eye health and protect vision, so we should store a lot. Bring 6 carrots to Hiccup!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922700</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good! This is a good start. I’ll place it on this picnic table under ‘vegetables.’</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 6 carrots to Hiccup</Text><ID>922697</ID></Title><Desc><Text>Bring 6 carrots to Hiccup. You can grow carrots in your farm or buy them from the store.</Text><ID>922698</ID></Desc></Data> + 0 + false + + + 932 + Storm 4 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We need some milk products or foods made from milk to fill our [c][3eebff]dairy[/c][ffffff] quota. Bring 4 bottles of yak’s milk to Hiccup! You can have yaks in your farm to produce milk. +Drinking milk helps build and maintain your bones and your teeth.</Text><ID>922703</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Delicious!</Text><ID>922704</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 4 bottles of yak milk to Hiccup</Text><ID>922701</ID></Title><Desc><Text>Bring 4 bottles of yak milk to Hiccup. You can get yak milk from the farm or buy them from the store.</Text><ID>929573</ID></Desc></Data> + 0 + false + + + 933 + Storm 5: apples + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQStorm01T04.unity3d/PfGrpQStorm01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922707</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We need [c][3eebff]fruits[/c][ffffff] because they reduce risk of getting many chronic diseases. And, they’re delicious. Find 6 apples in the wilderness!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWApple</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 6 apples in the wilderness</Text><ID>922705</ID></Title><Desc><Text>Find 6 apples in the wilderness.</Text><ID>922706</ID></Desc></Data> + 0 + false + + + 934 + Storm 6: Delivery + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bring the apples to Hiccup.</Text><ID>922710</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We’re so close to the goal. Keep it up!</Text><ID>922711</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7964</Value></Pair><Pair><Key>ItemDescription</Key><Value>Apple</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the apples to Hiccup</Text><ID>922708</ID></Title><Desc><Text>Bring the apples to Hiccup.</Text><ID>922710</ID></Desc></Data> + 0 + false + + + 935 + Storm 7: black beans + <Data><Offer><Type>Popup</Type><ID>922714</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Finally, we need some foods that are rich in protein. You can find that in meats, fish, or beans! You see, proteins help build and repair cells so they’re very important. +Grow some beans in your farm and bring Hiccup 4 bags!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922715</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's great! We're all set. Thanks for your help, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 4 black beans to Hiccup</Text><ID>922712</ID></Title><Desc><Text>Bring 4 black beans to Hiccup. You can grow black beans in your farm or buy them from the store.</Text><ID>922713</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 202354 + true + 250 + 250 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 202354 + true + 70 + 70 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202354 + true + 250 + 250 + + 0 + +
+ + 200 +

9

+ 0 + + 1 + 1387 + 202354 + true + 200 + 200 + + 0 + +
+ + 400 +

12

+ 0 + + 1 + 1388 + 202354 + true + 400 + 400 + + 0 + +
+ false +
+ + 1335 + Quest_Side 6 + 12 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide6T00.unity3d/PfGrpQSide6T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide6T03.unity3d/PfGrpQSide6T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide6T05.unity3d/PfGrpQSide6T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide6T05b.unity3d/PfGrpQSide6T05b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Mystery of the Purloined Boots</Text><ID>922883</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1173 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 1335 + 1336 + 0 + + + 1 + 1335 + 940 + 0 + + + 1 + 1335 + 941 + 0 + + + 1 + 1335 + 942 + 0 + + + 1 + 1335 + 943 + 0 + + + 1 + 1335 + 944 + 0 + + + 1 + 1335 + 945 + 0 + + + 2 + 1335 + 1337 + 0 + + + + 1 + 202378 + 0 + + 1336 + Side 6T01 + 12 +

1335

+ <Data><Offer><Type>Popup</Type><ID>922880</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>{{Name}}! I have a problem. I let out my dad Spitelout's shoes overnight, like I do every week. (If I don't do it, the whole house reeks within a few days!) But they were gone when I came out in the morning! Can you talk to the others and see if there are any more missing boots in the village?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Looking for Boots</Text><ID>922879</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1336 + 936 + 0 + + + 1 + 1336 + 938 + 0 + + + 1 + 1336 + 939 + 0 + + + 1 + 1336 + 937 + 0 + + + + 1 + 0 + 0 + + 936 + Side6T01a: Talk to Astrid + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's the oddest thing! I let out my parents' boots to air overnight but they disappeared. I already checked and the twins aren't behind it. No one better be pulling a prank on me!</Text><ID>922842</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about missing boots</Text><ID>922840</ID></Title><Desc><Text>Talk to Astrid about the missing boots.</Text><ID>936636</ID></Desc></Data> + 0 + false + + + 937 + Side6T01d: Talk to Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm in so much trouble if I can't find my mother's boots! Where could they have gone? I spilled some stew on it last night, too, so I need to find them and clean them.</Text><ID>922845</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about missing boots</Text><ID>922843</ID></Title><Desc><Text>Talk to Fishlegs about the missing boots.</Text><ID>936637</ID></Desc></Data> + 0 + false + + + 938 + Side6T01b: Talk to Hiccup + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm... My boot is where it belongs - on my right foot! I'll keep an eye out for any other strange doings.</Text><ID>922848</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupHello01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about missing boots</Text><ID>922846</ID></Title><Desc><Text>Talk to Hiccup at Berk about missing boots.</Text><ID>936638</ID></Desc></Data> + 0 + false + + + 939 + Side6T01c: Talk to Ruffnut + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>We found our boots just fine. I didn't take any boots, either. I know, I know. It was a perfect opportunity for a prank, but trust me. You don't want to get anywhere near those stinky boots!</Text><ID>922851</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutHello02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut about the boots</Text><ID>922849</ID></Title><Desc><Text>Talk to Ruffnut about the missing boots.</Text><ID>936639</ID></Desc></Data> + 0 + false + + false + + + 1337 + Side6T08 + 12 +

1335

+ <Data><Offer><Type>Popup</Type><ID>922882</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Will you return the boots to Fishlegs and Snotlout? I'll make sure these dragons are okay. Thanks, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Side6T08: Return the Boots</Text><ID>922881</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1337 + 946 + 0 + + + 1 + 1337 + 947 + 0 + + + + 1 + 0 + 0 + + 946 + Side6T08a: Fishlegs + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow! A dragon took the boots? That's really interesting. I wonder what else I can learn about these wild dragons...</Text><ID>922854</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring Fishlegs the missing boots</Text><ID>922852</ID></Title><Desc><Text>Bring Fishlegs the missing boots.</Text><ID>929777</ID></Desc></Data> + 0 + false + + + 947 + Side6T08b: Snotlout + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You got my father's boots back! Wow, thanks. I mean, I could have done it myself if I had the time, but I'm so busy with things to complete for the school... +Thanks.</Text><ID>922857</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return the boots to Snotlout</Text><ID>922855</ID></Title><Desc><Text>Return the boots to Snotlout at the school.</Text><ID>929778</ID></Desc></Data> + 0 + false + + false +
+ + 940 + Side6T02: Fly around Berk + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's our duty as dragon trainers to get to the bottom of this mystery! Search Berk for a sign of the boots, then come back to me when you've found the boots. If you can't find them, come back and tell me.</Text><ID>922860</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No sign of these boots, huh? Where could these things be?</Text><ID>922861</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Look for the boots then talk to Astrid</Text><ID>922858</ID></Title><Desc><Text>Look around Berk for the boots then speak to Astrid.</Text><ID>936641</ID></Desc></Data> + 0 + false + + + 941 + Side6T03: Look at the School + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSide6T03b.unity3d/PfGrpQSide6T03b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922864</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I wonder if someone took the boots over to the school. Would you fly over and look for the boots there?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922865</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There! Those are my father's boots! +Are those... bite marks?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectShoeMetalStrap</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for the missing boots at the school</Text><ID>922862</ID></Title><Desc><Text>Look for the boots at the School.</Text><ID>922863</ID></Desc></Data> + 0 + false + + + 942 + Side6T04: Follow the tracks + <Data><Offer><Type>Popup</Type><ID>922868</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is a great clue! I wonder where these tracks lead. We might even be able to find the missing boots. Will you follow them and try to find the culprit? I'll come over to help out!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the tracks</Text><ID>922866</ID></Title><Desc><Text>Follow the dragon tracks to the Wilderness.</Text><ID>922867</ID></Desc></Data> + 0 + false + + + 943 + Side6T05: Follow Tracks + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_ByBerkExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>922871</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>A wild Deadly Nadder! Be careful. It looks like she's trying to protect her baby so we don't want to startle her.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Follow the tracks in the wilderness</Text><ID>922869</ID></Title><Desc><Text>Follow the tracks in the wilderness, then talk to Astrid.</Text><ID>922870</ID></Desc></Data> + 0 + false + + + 944 + Side6T06: Bring Astrid eggs + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_ByBerkExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922874</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let me handle this one, {{Name}}. I'm pretty good with Deadly Nadders! Can you help me out by bringing me some chicken eggs? That will help soothe these wild animals so that we can approach them.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922875</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank you! This will definitely help out.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Astrid 6 eggs from your farm.</Text><ID>922872</ID></Title><Desc><Text>Bring Astrid 6 eggs. You can get eggs from your farm or purchase them from the store.</Text><ID>922873</ID></Desc></Data> + 0 + false + + + 945 + Side6T07: Collect boots + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQSide6T05c.unity3d/PfGrpQSide6T05c</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922878</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You can grab the boots for Fishlegs and Snotlout. They're against the wall in the cave! I think the Deadly Nadder thought it had food for her baby, but the baby Nadder didn't eat it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectShoe</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather the boots in the cave</Text><ID>922876</ID></Title><Desc><Text>Pick up the boots in the cave in the wilderness.</Text><ID>922877</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202378 + true + 50 + 50 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 202378 + true + 150 + 150 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202378 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202378 + true + 50 + 50 + + 0 + +
+ false +
+ + 1338 + Quest_Lab #11 + 4 +

+ <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Glass as a Spectrum</Text><ID>922982</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1683 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1338 + 948 + 0 + + + 2 + 1338 + 1339 + 0 + + + 2 + 1338 + 1340 + 0 + + + 1 + 1338 + 954 + 0 + + + 2 + 1338 + 1342 + 0 + + + 1 + 1338 + 960 + 0 + + + + 1 + 202387 + 0 + + 1339 + Task 11.2 Talk to Gobber + 4 +

1338

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Gobber about the pickaxe</Text><ID>922975</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1339 + 949 + 0 + + + + 1 + 202388 + 0 + + 949 + Task 11.2 Talk to Gobber + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We’ll need a few more tools to make different colored containers. Will you talk to Gobber and ask him for a pickaxe?</Text><ID>922892</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Sure {{greeting}}, I’ve got a spare pickaxe named Bernice that you can use! Here you go.</Text><ID>922893</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Gobber in the Hatchery about his pickaxe</Text><ID>922890</ID></Title><Desc><Text>Ask Gobber if you could use his pickaxe. He is in New Berk or in the Hatchery.</Text><ID>939179</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 9671 + + 1 + 1433 + 202388 + true + 1 + 1 + + 0 + +
+ false + + + 1340 + Mission 11.3 Quest_Lab_Research + 4 +

1338

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Time for Research</Text><ID>922979</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1340 + 950 + 0 + + + 1 + 1340 + 951 + 0 + + + 2 + 1340 + 1341 + 0 + + + + 1 + 0 + 0 + + 1341 + 11.3.3 Manganese and Cobalt + 4 +

1340

+ <Data><Offer><Type>Popup</Type><ID>922977</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're getting the hang of it! You should be able to find manganese and cobalt nodes in the Wilderness. Will you find them, {{input}} on the pickaxe button, and collect the ores that come out?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>922978</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Amazing job, buddy!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Collect Cobalt and Manganese</Text><ID>922976</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1341 + 953 + 0 + + + 1 + 1341 + 952 + 0 + + + + 1 + 0 + 0 + + 952 + Collect Manganese + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQLab11T03b.unity3d/PfGrpQLab11T03b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfManganeseNode</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOreManganese</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the manganese node and {{input}} on the pickaxe</Text><ID>922894</ID></Title><Desc><Text>Find the manganese node and {{input}} on the pickaxe button. You will find it in the Wilderness.</Text><ID>922895</ID></Desc></Data> + 0 + false + + + 953 + Collect Cobalt + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQLab11T03a.unity3d/PfGrpQLab11T03a</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfCobaltNode</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOreCobalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the cobalt node and {{input}} on the pickaxe</Text><ID>922896</ID></Title><Desc><Text>Find the cobalt node in the Wilderness, {{input}} on the pickaxe button, and collect the ore that come sout.</Text><ID>922897</ID></Desc></Data> + 0 + false + + false +
+ + 950 + 11.3.1 Go to Chromite + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQLab11T03.unity3d/PfGrpQLab11T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922900</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ve seen a lot of nodes of ores and minerals in the Wilderness that could help us out. The ores are created with different minerals and elements that we might be able to use to make colored glass. Elements are substances that are the building block of all matter. @@ Go to the Wilderness to find some minerals to mine. Try looking in the caves! +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922901</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That looks like one! Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_QStory1_3T01_1_NPCGobber</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find chromite ore in the Wilderness</Text><ID>922898</ID></Title><Desc><Text>Find the node of chromite ore in the Wilderness.</Text><ID>922899</ID></Desc></Data> + 0 + false + + + 951 + 11.3.2 Chromite + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQLab11T03.unity3d/PfGrpQLab11T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922904</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Input}} on the pickaxe button and grab any ores that you can mine!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922905</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChromiteNode</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOreChromite</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>{{Input}} on the node and pick chromite</Text><ID>922902</ID></Title><Desc><Text>Pick out chromite from the node by using your pickaxe.</Text><ID>922903</ID></Desc></Data> + 0 + false + + false +
+ + 1342 + Mission 11.5 Quest_Lab_Experiment + 4 +

1338

+ <Data><Offer><Type>Popup</Type><ID>922981</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Let's go into the lab.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Go into the lab</Text><ID>922980</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1342 + 956 + 0 + + + 1 + 1342 + 957 + 0 + + + 1 + 1342 + 958 + 0 + + + + 1 + 0 + 0 + + 956 + 11.5.2 ChromiteSandstone + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfChromiteSandstone</Value></Pair></Objective><Type>Action</Type><Title><Text>Experiment in the lab with chromite</Text><ID>922906</ID></Title><Desc><Text>Experiment with chromite in the lab.</Text><ID>922907</ID></Desc></Data> + 0 + false + + + 957 + 11.5.3 CobaltSandstone + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfCobaltSandstone</Value></Pair></Objective><Type>Action</Type><Title><Text>Experiment in the lab with cobalt</Text><ID>922908</ID></Title><Desc><Text>Experiment in the lab with cobalt.</Text><ID>922909</ID></Desc></Data> + 0 + false + + + 958 + 11.5.4 ManganeseSandstone + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfManganeseSandstone</Value></Pair></Objective><Type>Action</Type><Title><Text>Experiment with manganese in the lab</Text><ID>922910</ID></Title><Desc><Text>Experiment in the lab with manganese.</Text><ID>922911</ID></Desc></Data> + 0 + false + + false +
+ + 948 + Task 11.1 Quest_Lab_Question + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQGronckle06Sandstone.unity3d/PfGrpQGronckle06Sandstone</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>922914</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey! I've been thinking about Meatlug's special ability to make new alloys in her stomach. Gronckle Iron is a little hard to make, but last time you also made something else very interesting, glass. I know you made it by accident, but I think we can find some great uses for it! @@ Um, maybe not a sword or shield, but something simpler, like containers that you can see into. Heather challenged us to create some colored glass to create different containers for the lab. I think we're up for the challenge, buddy! Can you go back to the Wilderness and find three sandstones?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922915</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSandstone</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find sandstones in the wilderness</Text><ID>922912</ID></Title><Desc><Text>Find 3 sandstones in the Wilderness.</Text><ID>922913</ID></Desc></Data> + 0 + false + + + 954 + 11.4 Quest_Lab_Hypothesis + <Data><Offer><Type>Popup</Type><ID>922918</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should talk to Heather to create a hypothesis.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesis11.unity3d/PfUiHypothesis11</Value></Pair></Objective><Type>Meet</Type><Title><Text>Hypothesis with Heather</Text><ID>923193</ID></Title><Desc><Text>Talk to Heather at the school and make a hypothesis.</Text><ID>922917</ID></Desc></Data> + 0 + false + + + 960 + 11.6 Quest_Lab_Conclusion + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You were able to make colored containers! Your hypothesis was proven to be {{result}}. Will you go back to Hiccup with the rest of the colored glass? +Thanks for your help, {{Name}}. I'm so excited with the result!</Text><ID>922924</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, that worked out great! I wonder what else we can do with glass? +I'll try to come up with some other cool things that you, me and Meatlug could make together. Thanks, {{Name}}!</Text><ID>922925</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>9671</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Return to Hiccup with the colored glass</Text><ID>922922</ID></Title><Desc><Text>Return to Hiccup with the colored glass.</Text><ID>939180</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 202387 + true + 100 + 100 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 202387 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202387 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202387 + true + 350 + 350 + + 0 + +
+ false +
+ + 1343 + Quest_Side 8 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Explore the Dark Depths</Text><ID>922983</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1338 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1343 + 961 + 0 + + + 1 + 1343 + 962 + 0 + + + 1 + 1343 + 963 + 0 + + + 1 + 1343 + 964 + 0 + + + 1 + 1343 + 965 + 0 + + + 1 + 1343 + 966 + 0 + + + 1 + 1343 + 967 + 0 + + + + 1 + 202392 + 0 + + 961 + Side8.1 Find the Cave Entrance + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ve been thinking about the Berserkers ever since you found their shield at the Lookout, when you were helping me with Gronckle Iron. I think it’s past time that we tightened our defenses, and we should start with Berk. The caves under Berk could be a problem; we haven’t explored them very much so Dagur could use them against us. @@ I think some Whispering Deaths might have opened some tunnels to get there. Can you look for a Whispering Death tunnel in Berk to get to the caves?</Text><ID>922931</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Here are the caves! Wow. This is a bit dark, don’t you think?</Text><ID>922932</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Whispering Death hole by the Great Hall</Text><ID>922929</ID></Title><Desc><Text>Find the cave entrance in Berk. It is a large hole in the ground by the Great Hall.</Text><ID>922984</ID></Desc></Data> + 0 + false + + + 962 + Side8.2 Find the Spiders + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You’ll need to be careful to not step on the animals here. You might have a hard time adjusting to the light, but the animals that live in caves have evolved and adapted over the years to be able to function in low light! @@ Bats, for instance, use echolocation to ‘see’ where they are going. Bats emit a high-pitched sound that humans cannot hear which bounces off objects. The sound is then received, giving it information about the object’s shape, direction, distance, and texture. Bats are nocturnal. They are active at night and sleep during the day. @@ Will you explore the cave and see if there’s anything interesting down here? Be careful!</Text><ID>922935</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, those spiders are really creepy! These spiders look like they have evolved to live in caves. Animals that only live in dark caves are called troglobites. They have highly developed senses of hearing, touch, and smell!</Text><ID>922936</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Spiders</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the caves</Text><ID>922933</ID></Title><Desc><Text>Explore the caves to find some creatures.</Text><ID>922985</ID></Desc></Data> + 0 + false + + + 963 + Side8.3 Find the lake + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Are you wondering how troglobites eat down in these caves? Sometimes, excessive rain can wash plants, leaves, and other nutritional things into caves. Another food source is bat dung – or guano, as it's called scientifically. Fungi and bacteria in the caves decompose the guano into essential foods and nutrients. @@ Don't get caught in the webs, {{Name}}. Will you explore the cave and see if there's anything worrying down here? Be careful!</Text><ID>922939</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, there's an underground lake here! That's very interesting! There must be an opening under Berk that allows the ocean water in. I bet Berserkers could get inside the cave and get to the village.</Text><ID>922940</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Lake</Value></Pair><Pair><Key>Range</Key><Value>11</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the center of the caves</Text><ID>922937</ID></Title><Desc><Text>Look for the lake within the caves.</Text><ID>929779</ID></Desc></Data> + 0 + false + + + 964 + Side8.4 Collect cave fish + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should stop here and catch some fish. You won’t find fish like this anywhere else!</Text><ID>922943</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Aren’t these fish interesting? They evolved to adapt to life in dark waters, similarly to how fish live in the deep ocean.</Text><ID>922944</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Lake</Value></Pair><Pair><Key>Name</Key><Value>PfFishBlindCaveDO</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch 2 Blindfish in the caves</Text><ID>922941</ID></Title><Desc><Text>Catch 2 Blindfish in the underground lake.</Text><ID>922987</ID></Desc></Data> + 0 + false + + + 965 + Side8.5 Collect Egg Crate + <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQSide8T05.unity3d/PfGrpQSide8T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The entrance to the caves is worrying, but I think we can handle it with some vigilance. Do you see anything else that could be a problem down there? </Text><ID>922947</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoa! How did that get there? Did the Outcasts leave some eggs in the caves?</Text><ID>922948</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfWhisperingDeathNest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for dangers in the cave</Text><ID>922945</ID></Title><Desc><Text>Find the crate of Whispering Death eggs in the cave below Berk.</Text><ID>922988</ID></Desc></Data> + 0 + false + + + 966 + Side8.6 Cave Entrance + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We'll need to keep a closer eye on these caves. Who knows what else is here? +Come back to the entrance of the caves so that you can come back to Berk!</Text><ID>922951</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Exit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the entrance of the cave</Text><ID>922949</ID></Title><Desc><Text>Return to the entrance of the cave. Follow the arrows if you don't know the way back.</Text><ID>922989</ID></Desc></Data> + 0 + false + + + 967 + Side 8.7 Return to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Input}} on the rope and come back up to the surface. When you're back, come talk to me at New Berk!</Text><ID>922973</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for helping out, {{Name}}. Why don't you take one of these Whispering Death eggs for safekeeping? I'm sure you'll be able to train this dragon well.</Text><ID>922974</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the rope and talk to Hiccup in Berk</Text><ID>922971</ID></Title><Desc><Text>{{Input}} on the rope to return to Berk. Talk to Hiccup when you return.</Text><ID>936499</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 202392 + true + 250 + 250 + + 0 + + + + 200 +

12

+ 0 + + 1 + 914 + 202392 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202392 + true + 350 + 350 + + 0 + +
+ + 1 +

6

+ 8975 + + 1 + 1446 + 202392 + true + 1 + 1 + + 0 + +
+ false +
+ + 1344 + Quest_Side #9 + 10 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Uh oh - Illness in Berk!</Text><ID>923177</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1626 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1344 + 968 + 0 + + + 1 + 1344 + 969 + 0 + + + 1 + 1344 + 970 + 0 + + + 1 + 1344 + 971 + 0 + + + + 1 + 202401 + 0 + + 968 + Side 9.1 Talk to Heather + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Bad news, bad news! I was minding my own business and reading a book to Meatlug when Snotlout came to tease and bother me. I’m used to such boorish behavior from Snotlout, but he sneezed all over me – twice! @@I know that he and his father have been sick all week, and now I’m worried that I’ll catch his fever. Will you talk to Heather and see what I could do to avoid catching the illness?</Text><ID>923148</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Fishlegs is concerned about falling sick? There are a few things he could do to help himself.</Text><ID>923149</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather at the school.</Text><ID>923147</ID></Desc></Data> + 0 + false + + + 969 + Side 9.2 Talk to Botanist + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Our bodies have something called an immune system to help defend us against sickness. There are tiny invaders known as pathogens that are all around us. They are bacteria and viruses that could possibly get us sick. Our saliva, skin, and tears help protect us from most of the pathogens. @@ White blood cells within our blood will fight off anything that gets past the first line of defense. +Talk to the Botanist - I'm sure she'll have good ideas on how to help Fishlegs stay healthy!</Text><ID>923152</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>One of the best ways to stay healthy is to [c][3eebff]eat a balanced diet and get plenty of rest[/c][ffffff]. Here – I’ve written down a plan for Fishlegs to follow. If he eats what is on this paper, he will be able to get the vitamins he needs to keep him healthy!</Text><ID>923153</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist at the Lookout</Text><ID>923150</ID></Title><Desc><Text>Talk to the Botanist at the Lookout.</Text><ID>929771</ID></Desc></Data> + 0 + false + + + 970 + Side 9.3 Return to Fishlegs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Fishlegs could wash his hands with soap and water, too – I’ve seen him with filthy hands after he comes back from one of his dragon riding sessions! Finally, he needs to get some more exercise. If he gets his body moving, it will be stronger against illnesses! @@ Return to Fishlegs with this advice. He needs to listen to me if he wants to avoid getting sick.</Text><ID>923156</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thanks for your help, {{Name}}. While you were gone, I was reading in some of my books about how my body can help me avoid getting sick. These [c][3eebff]white blood cells[/c][ffffff] create antibodies in my body that bind to [c][3eebff]pathogens[/c][ffffff] to get rid of them! I guess my body can help me remain healthy, so I should take care of it!</Text><ID>923157</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Fishlegs with the advice</Text><ID>923154</ID></Title><Desc><Text>Return to Fishlegs with the advice. You can find him at the school.</Text><ID>936635</ID></Desc></Data> + 0 + false + + + 971 + Side 9.4 Play Fireball Frenzy + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Phlegma is right about me needing to exercise, but to make it more fun, I’m going to bring along my girl Meatlug too! Will you join me? Let’s go into Fireball Frenzy and have a blast shooting targets.</Text><ID>923160</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That felt great! I’ll listen to this advice and hopefully I won’t get sick. I remember what happened the last time Eel Pox swept through the village. Maybe we’ll be luckier this time!</Text><ID>923161</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair></Objective><Type>Game</Type><Title><Text>Play Fireball Frenzy</Text><ID>922490</ID></Title><Desc><Text>Get your body active by playing Fireball Frenzy at the Training Grounds.</Text><ID>923159</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202401 + true + 50 + 50 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202401 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202401 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202401 + true + 50 + 50 + + 0 + +
+ false +
+ + 1345 + New Farming 117 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1345 + 972 + 0 + + + + 1 + 202405 + 0 + + 972 + 8 White Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9893</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Pumpkins</Text><ID>923014</ID></Title><Desc><Text>Ruffnut has a crazy idea about carving faces into white pumpkins. What a concept!</Text><ID>923015</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202405 + true + 3 + 3 + + 0 + + + + 36 +

2

+ 0 + + 1 + 2128 + 202405 + true + 36 + 36 + + 0 + +
+ false +
+ + 1346 + New Farming 118 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1346 + 973 + 0 + + + + 1 + 202406 + 0 + + 973 + 16 White Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9893</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Pumpkin</Text><ID>923018</ID></Title><Desc><Text>Taste test time: Fishlegs loves pumpkin pie. Does he also like white pumpkin pie?</Text><ID>923017</ID></Desc></Data> + 0 + false + + + 72 +

2

+ 0 + + 1 + 613 + 202406 + true + 72 + 72 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 202406 + true + 3 + 3 + + 0 + +
+ false +
+ + 1347 + New Farming 119 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1347 + 974 + 0 + + + + 1 + 202407 + 0 + + 974 + 24 White Pumpkin + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9893</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Pumpkin</Text><ID>923018</ID></Title><Desc><Text>Snotlout wants a field of pumpkins, so he can go smashing them tonight.</Text><ID>923019</ID></Desc></Data> + 0 + false + + + 118 +

2

+ 0 + + 1 + 1911 + 202407 + true + 118 + 118 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 202407 + true + 3 + 3 + + 0 + +
+ false +
+ + 1349 + New Farming 121 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1349 + 976 + 0 + + + + 1 + 202409 + 0 + + 976 + 8 White Pumpkin, 8 Pumpkin, 6 Black Beans + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9893</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>White Pumpkin, Pumpkin, Black Bean</Text><ID>923022</ID></Title><Desc><Text>Phlegma wants some variety in her cornucopia tonight.</Text><ID>923023</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 202409 + true + 40 + 40 + + 0 + + + + 297 +

2

+ 0 + + 1 + 2130 + 202409 + true + 297 + 297 + + 0 + +
+ false +
+ + 1350 + New Farming 122 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1350 + 977 + 0 + + + + 1 + 202410 + 0 + + 977 + 3 Spider Silk + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9914</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spider Silk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Spider Silk</Text><ID>923028</ID></Title><Desc><Text>Tuffnut isn’t here right now; he wants to run into spider webs. Silk might work.</Text><ID>923025</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 202410 + true + 3 + 3 + + 0 + + + + 71 +

2

+ 0 + + 1 + 2120 + 202410 + true + 71 + 71 + + 0 + +
+ false +
+ + 1351 + New Farming 123 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1351 + 978 + 0 + + + + 1 + 202411 + 0 + + 978 + 6 Spider Silk + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9914</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spider Silk</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Spider Silk</Text><ID>923028</ID></Title><Desc><Text>I am not a fan of spiders, but many of my customers love the silk!</Text><ID>923027</ID></Desc></Data> + 0 + false + + + 142 +

2

+ 0 + + 1 + 969 + 202411 + true + 142 + 142 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 202411 + true + 3 + 3 + + 0 + +
+ false +
+ + 1352 + New Farming 124 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1352 + 979 + 0 + + + + 1 + 202412 + 0 + + 979 + 9 Spider Silk + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9914</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spider Silk</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Spider Silk</Text><ID>923028</ID></Title><Desc><Text>Astrid wants to make some strong rope for a new harness idea.</Text><ID>923029</ID></Desc></Data> + 0 + false + + + 213 +

2

+ 0 + + 1 + 854 + 202412 + true + 213 + 213 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 202412 + true + 3 + 3 + + 0 + +
+ false +
+ + 1353 + New Farming 125 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1353 + 980 + 0 + + + + 1 + 202413 + 0 + + 980 + 3 Spider Silk, 5 White Wool, 5 Black Wool + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9914</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spider Silk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Spider Silk, White Wool, Black Wool</Text><ID>923030</ID></Title><Desc><Text>Mulch is thinking about a new fabric that might help him in the open sea.</Text><ID>923031</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 202413 + true + 4 + 4 + + 0 + + + + 386 +

2

+ 0 + + 1 + 2131 + 202413 + true + 386 + 386 + + 0 + +
+ false +
+ + 1354 + New Farming 126 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,2 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1354 + 981 + 0 + + + + 1 + 202414 + 0 + + 981 + 3 Spider Silk, 5 Yak Milk + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9914</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spider Silk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Spider Silk, Yak Milk</Text><ID>923032</ID></Title><Desc><Text>Gobber is preparing for an outing over the next weekend.</Text><ID>923033</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 202414 + true + 72 + 72 + + 0 + + + + 881 +

2

+ 0 + + 1 + 2132 + 202414 + true + 881 + 881 + + 0 + +
+ false +
+ + 1357 + Quest_Racing01 + 11 +

+ <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQRacing01T07.unity3d/PfGrpQRacing01T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dawn of the Dragon Racers</Text><ID>923176</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1110 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1357 + 983 + 0 + + + 1 + 1357 + 984 + 0 + + + 1 + 1357 + 985 + 0 + + + 1 + 1357 + 986 + 0 + + + 1 + 1357 + 987 + 0 + + + 1 + 1357 + 988 + 0 + + + 1 + 1357 + 989 + 0 + + + 1 + 1357 + 990 + 0 + + + + 1 + 202416 + 0 + + 983 + Racing01T01 Visit the Top + <Data><Offer><Type>Popup</Type><ID>923118</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Arg! {{Name}}! Did you hear about this neat idea for racing? We thought about adding a bit of flair into the race by placing sheep into the course! The twins just had to let all the sheep loose! Can you help me find them? Go up near Flight Club to spot the missing sheep.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923119</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hmm... Where could they be?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FlightSchoolDOExit</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair></Objective><Type>Visit</Type><Title><Text>Walk near Flight Club to look for sheep</Text><ID>923116</ID></Title><Desc><Text>Go to a vantage point in the Training Grounds to look for sheep.</Text><ID>923117</ID></Desc></Data> + 0 + false + + + 984 + Racing01T02 Find at Training + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQRacing01T02.unity3d/PfGrpQRacing01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923122</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh! There they are! Why don't you go gather them up for me?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923123</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Four down, sixteen more to go! I'll gather them here by the Thunder Run Racing tower as you find them.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSheepTarget</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find all the sheep at the Training Grounds</Text><ID>923120</ID></Title><Desc><Text>Find all the sheep at the Training Grounds.</Text><ID>923121</ID></Desc></Data> + 0 + false + + + 985 + Racing01T03 Find at School + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQRacing01T03.unity3d/PfGrpQRacing01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923126</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I bet Ruffnut and Tuffnut let some loose at the school, too. Can you search for them?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>921108</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great job!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSheepTarget</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 4 racing sheep at the school</Text><ID>923124</ID></Title><Desc><Text>Find 4 racing sheep at the School.</Text><ID>923125</ID></Desc></Data> + 0 + false + + + 986 + Racing01T04 Find at Lookout + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQRacing01T04.unity3d/PfGrpQRacing01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923130</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's search the top of the school caldera. Find 4 more sheep at the Lookout!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923131</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow, you have some eagle eyes!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSheepTarget</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 4 sheep at the Lookout</Text><ID>923128</ID></Title><Desc><Text>Find 4 sheep at the Lookout.</Text><ID>923129</ID></Desc></Data> + 0 + false + + + 987 + Racing01T05 Find at Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQRacing01T05.unity3d/PfGrpQRacing01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923134</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I bet Ruffnut would have wanted to 'return the sheep to the wild.' Let's check the Wilderness for 4 more sheep.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923135</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I have to admit it. You're pretty amazing.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSheepTarget</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 4 sheep at the Wilderness</Text><ID>923132</ID></Title><Desc><Text>Find 4 more racing sheep at the Wilderness.</Text><ID>923133</ID></Desc></Data> + 0 + false + + + 988 + Racing01T06 Find at Berk + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQRacing01T06.unity3d/PfGrpQRacing01T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>They wouldn't have taken the sheep all the way to old Berk, would they? +Let's check Berk for 4 more sheep.</Text><ID>923138</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSheepTarget</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 4 sheep at Berk</Text><ID>923136</ID></Title><Desc><Text>Find 4 racing sheep at Berk.</Text><ID>936494</ID></Desc></Data> + 0 + false + + + 989 + Racing01T07 Come back to Astrid + <Data><Offer><Type>Popup</Type><ID>923141</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That's all of them. Come back to me!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to Astrid at the Training Grounds</Text><ID>923139</ID></Title><Desc><Text>Talk to Astrid at the Training Grounds.</Text><ID>923140</ID></Desc></Data> + 0 + false + + + 990 + Racing01T08 Race + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I feel like you should reap the benefits of all your hard work. Get into Thunder Run Racing and keep an eye out for the racing sheep! You can pick them up for a short burst of speed.</Text><ID>923144</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank you so much for helping me out, {{Name}}. I hope you enjoy the new races! I'll give you some sheep as a reward. Open your inventory, {{input}} on the sheep and claim them for your farm!</Text><ID>923145</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfRacingPortalTraining</Value></Pair><Pair><Key>Name</Key><Value>DragonRacing</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Race in Thunder Run Racing</Text><ID>923142</ID></Title><Desc><Text>Race a course in Thunder Run Racing.</Text><ID>936576</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 202416 + true + 250 + 250 + + 0 + + + + 150 +

8

+ 0 + + 1 + 622 + 202416 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202416 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 9982 + + 1 + 1492 + 202416 + true + 1 + 1 + + 0 + +
+ false +
+ + 1361 + Quest Spooky #1 + 5 +

+ <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQSpooky01T00.unity3d/PfGrpQSpooky01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Monster in the Caves</Text><ID>923173</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1343 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1361 + 995 + 0 + + + 1 + 1361 + 996 + 0 + + + 1 + 1361 + 997 + 0 + + + 1 + 1361 + 998 + 0 + + + 1 + 1361 + 999 + 0 + + + 1 + 1361 + 1000 + 0 + + + + 1 + 202417 + 0 + + 995 + Spooky01T01: Talk to Fishlegs + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Good morning, my friend. I'd take off my hat but I’m afraid it’s attached to my head. I'm also afraid that a lot of Vikings - including myself - are afraid now, too. Hey, that rhymes!... wait. @@ Anyway, all of us have been hearing strange noises coming from beneath Berk. They say that a monster has been spotted during the night! @@ Will you talk to Fishlegs and see what you can find out? My bucket can't take this kind of stress.</Text><ID>923056</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Our mutual bucket-wearing friend is right! Many Vikings have told me about this so-called monster. They haven't… seen it, exactly… but they can hear it roar at night. I think that it’s coming from the caves!</Text><ID>923057</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs about the scary noise.</Text><ID>929568</ID></Desc></Data> + 0 + false + + + 996 + Spooky01T02: Enter the Caves + <Data><Offer><Type>Popup</Type><ID>923060</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don’t do well with monsters… Oh dear. The entrance of the cave is in Berk, through a hole a Whispering Death made by the Great Hall. Why don’t you go down there and see what you can find?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923061</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ah! It's the monster!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the caves</Text><ID>923058</ID></Title><Desc><Text>Enter the caves through the Whispering Death hole in Berk.</Text><ID>923059</ID></Desc></Data> + 0 + false + + + 997 + Spooky01T03: Explore caves + <Data><Offer><Type>Popup</Type><ID>923064</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! Don’t worry. There’s generally a reasonable explanation behind things! If we use science, we can understand what’s really going on, and maybe it would be less scary. Will you explore the caves and see if you can find out what’s really going on?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923065</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It’s not a monster, it’s the sound of the wind! Sound is a type of energy made by vibrations. When the vibrations are fast, you hear a high note. When they’re slow, you hear a low note. The wind traveling through this entrance made it roar like a monster, and the sound echoed through the cave and into Berk! Whew.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle05</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Boneknapper</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the source of the noise</Text><ID>923062</ID></Title><Desc><Text>Explore the caves until you find the source of the noise.</Text><ID>923063</ID></Desc></Data> + 0 + false + + + 998 + Spooky01T04: Investigate the Bones + <Data><Offer><Type>Popup</Type><ID>923068</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Is that a pile of bones over there? What could have possibly brought them there? There are two types of skeletons out there: endoskeletons and exoskeletons. The endoskeleton is the internal support structure of an animal’s body. It can grow with the organism and is generally found in animals that are large enough to pet. @@ The Exoskeleton is the external outer shell of an animal, and is a rigid covering. It does not grow, so the animal needs to molt out of it. Generally, insects and other small animals have exoskeletons! @@ That looks like a pile of bones from endoskeletons. Will you go closer and check it out?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Boneknapper02</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the bone pile</Text><ID>923066</ID></Title><Desc><Text>Investigate the bone pile.</Text><ID>923067</ID></Desc></Data> + 0 + false + + + 999 + Spooky01T05: Return to Hiccup + <Data><Offer><Type>Popup</Type><ID>923071</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Look out! It's a Boneknapper! Talk to Hiccup at Berk, {{Name}}, and he’ll tell you about the last time we met the Boneknapper.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923072</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There's a Boneknapper down there? Last time, Gobber was convinced that the Boneknapper was attacking him to steal his treasure. Well, as it turns out, the Boneknapper was following him! We found out firsthand how ferocious the dragon is.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/SpookyQuest01.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup in Berk</Text><ID>923069</ID></Title><Desc><Text>Talk to Hiccup in Berk.</Text><ID>923070</ID></Desc></Data> + 0 + false + + + 1000 + Spooky01T06: Talk to Bucket + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Boneknapper is special in that it creates a suit of armor around itself by collecting bones from different dragons. Gobber had the one bone piece that would complete the boneknapper’s armor, so he was chasing Gobber! I wonder why this Boneknapper is here. @@ Will you return to Bucket and tell him the news?</Text><ID>923075</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>It's not a monster? That's great! I can already feel my bucket loosening up nicely.</Text><ID>923076</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket</Text><ID>923073</ID></Title><Desc><Text>Talk to Bucket at Berk.</Text><ID>929569</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202417 + true + 60 + 60 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202417 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202417 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202417 + true + 350 + 350 + + 0 + +
+ false +
+ + 1362 + Quest Spooky #2 + 5 +

+ <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Boneknapper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQSpooky02T00.unity3d/PfGrpQSpooky02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Help the Boneknapper!</Text><ID>923175</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1361 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1362 + 1001 + 0 + + + 1 + 1362 + 1002 + 0 + + + 1 + 1362 + 1003 + 0 + + + 1 + 1362 + 1004 + 0 + + + 2 + 1362 + 1363 + 0 + + + 1 + 1362 + 1005 + 0 + + + 1 + 1362 + 1007 + 0 + + + 1 + 1362 + 1008 + 0 + + + 1 + 1362 + 1009 + 0 + + + 1 + 1362 + 1010 + 0 + + + + 1 + 202423 + 0 + + 1363 + Spooky02T05: Ask Bucket + 5 +

1362

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ask Bucket</Text><ID>923174</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1363 + 1006 + 0 + + + + 1 + 202424 + 0 + + 1006 + Spooky02T05: Ask Bucket + <Data><Offer><Type>Popup</Type><ID>923079</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Back to the drawing board! Bucket was interested in learning about the Boneknapper’s fate, too. Go back to Berk and ask him what he thinks we should do.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923080</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text> I bet the Boneknapper baby would be just fine if it had a bucket. Buckets solve more problems than you might think! +Here, you can have this one. It’s the smallest one I’ve got. +</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Bucket for his hypothesis</Text><ID>923077</ID></Title><Desc><Text>Meet Bucket at Berk and ask him for his hypothesis.</Text><ID>923078</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7979 + + 1 + 1489 + 202424 + true + 1 + 1 + + 0 + +
+ false + + + 1001 + Spooky02T01: Enter Caves + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Thanks for your help with the Boneknapper but I'm afraid the dragon is still howling at night.@@Can you go to the caves below Berk and figure out why the dragon is there? Hiccup said he will meet you by the Boneknapper.</Text><ID>923083</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I think I figured out why the Boneknapper is here. Look! It's her baby! I think the Boneknapper created a nest. Don’t get too close or the mother might get upset.</Text><ID>923084</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Boneknapper</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the caves to find the Boneknapper</Text><ID>923081</ID></Title><Desc><Text>Enter the caves of Berk and find the Boneknapper.</Text><ID>936480</ID></Desc></Data> + 0 + false + + + 1002 + Spooky02T02: Meet Botanist + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_GreatHallExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923087</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The baby Boneknapper looks upset. In my experience, wild dragons tend to be very protective and aggressive when the baby dragon is not well. Let’s use the scientific method to figure out what could be wrong with the dragon. We’ll start with some research. @@ We don’t know what will make the baby Boneknapper happy. Why don’t we ask some Vikings for help? The Botanist was interested in the Boneknapper, so maybe she’ll have some advice. +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923088</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Wild animals sometimes get malnourished because they can’t find enough to eat in the wild. Maybe the Boneknapper baby is hungry? I would give the baby some food.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Botanist</Text><ID>923085</ID></Title><Desc><Text>Meet the Botanist and ask her for her advice.</Text><ID>923086</ID></Desc></Data> + 0 + false + + + 1003 + Spooky02T03: Bring Hiccup 1 ear of corn + <Data><Offer><Type>Popup</Type><ID>923091</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you get two chicken eggs and give it to me so we can test the Botanist’s hypothesis? You can get them in your farm or buy them from the store.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922915</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Hiccup 2 eggs</Text><ID>923089</ID></Title><Desc><Text>Bring Hiccup 2 eggs. You can get them in your farm or buy them from the store.</Text><ID>923090</ID></Desc></Data> + 0 + false + + + 1004 + Spooky02T04: Give corn to the Boneknapper + <Data><Offer><Type>Popup</Type><ID>923095</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Give the baby Boneknapper the eggs. Let’s see if that makes it happy!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923096</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm. It was a good theory, but it looks like Phlegma’s hypothesis was not true.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Boneknapper02</Value></Pair><Pair><Key>Range</Key><Value>16</Value></Pair></Objective><Type>Visit</Type><Title><Text>Give eggs to the baby Boneknapper and observe</Text><ID>923093</ID></Title><Desc><Text>Give the eggs to the baby Boneknapper and observe its actions.</Text><ID>923094</ID></Desc></Data> + 0 + false + + + 1005 + Spooky02T06: Return to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Bucket’s hypothesis is… interesting! But hey, we’ll try it. Come back to me and we’ll give the baby dragon the bucket.</Text><ID>923099</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7979</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bucket</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Hiccup with the bucket</Text><ID>923097</ID></Title><Desc><Text>Return to Hiccup with the bucket.</Text><ID>929571</ID></Desc></Data> + 0 + false + + + 1007 + Spooky02T07: Give the dragon bucket + <Data><Offer><Type>Popup</Type><ID>923102</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's see what happens if you give the baby the bucket!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Boneknapper02</Value></Pair><Pair><Key>Range</Key><Value>16</Value></Pair></Objective><Type>Visit</Type><Title><Text>Give the baby Boneknapper the bucket</Text><ID>923100</ID></Title><Desc><Text>Give the baby Boneknapper the bucket.</Text><ID>923101</ID></Desc></Data> + 0 + false + + + 1008 + Spooky02T08: Look for a bone piece + <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQSpooky02T08.unity3d/PfGrpQSpooky02T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923105</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That’s odd. The baby put the bucket on its head. +Wait! I wonder if Bucket is on the right track. The Boneknapper baby placed the bucket on its head on its own. @@ We know that Boneknappers protect themselves by wearing an armor of bones, like a sort of exoskeleton. This baby tried to protect its head! Do you think that it’s missing a bone piece? Let’s search the cave for a bone that could fit its head.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923106</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That just might do the trick!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBabyBonePiece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look in the caves for a piece of bone to match the Boneknapper</Text><ID>923103</ID></Title><Desc><Text>Look for a piece of bone to match the Boneknapper.</Text><ID>923104</ID></Desc></Data> + 0 + false + + + 1009 + Spooky02T09: Give the bone piece + <Data><Offer><Type>Popup</Type><ID>923109</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Bring the bone piece to the baby. Maybe it will work!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Boneknapper02</Value></Pair><Pair><Key>Range</Key><Value>16</Value></Pair></Objective><Type>Visit</Type><Title><Text>Give the bone piece to the baby Boneknapper</Text><ID>923107</ID></Title><Desc><Text>Give the bone piece to the baby Boneknapper.</Text><ID>923108</ID></Desc></Data> + 0 + false + + + 1010 + Spooky02T10: Return to Bucket + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, that fits perfectly! Great find! @@ It looks like the Boneknapper and her baby are pleased with you, {{Name}}. The last Boneknapper to visit Berk didn't stay for very long, so I think these dragons will leave soon too. It looks like we solved the problem and there won't be any more howling! Can you return to Bucket and tell him the good news?</Text><ID>923112</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Thank goodness Berk can finally get some sleep. Hiccup is a really smart chieftain. You've both done great work!</Text><ID>923113</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Bucket with the good news</Text><ID>923110</ID></Title><Desc><Text>Return to Bucket with the good news.</Text><ID>929572</ID></Desc></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 202423 + true + 35 + 35 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 202423 + true + 250 + 250 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202423 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202423 + true + 50 + 50 + + 0 + +
+ false +
+ + 1390 + Quest Storm02 + 4 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQStorm02T00.unity3d/PfGrpQStorm02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_FarmingExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Simplest of Machines</Text><ID>923242</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1333 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1390 + 1037 + 0 + + + 2 + 1390 + 1391 + 0 + + + 1 + 1390 + 1039 + 0 + + + 2 + 1390 + 1392 + 0 + + + 2 + 1390 + 1393 + 0 + + + 1 + 1390 + 1042 + 0 + + + 1 + 1390 + 1043 + 0 + + + 1 + 1390 + 1066 + 0 + + + + 1 + 202464 + 0 + + 1391 + Storm02T02 + 4 +

1390

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber.</Text><ID>923241</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1391 + 1038 + 0 + + + + 1 + 202485 + 0 + + 1038 + Storm02T02 + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The first simple machine we’ll need is the screw. A screw is a twisted inclined plane. It holds things together! Gobber will have a lot of them – he needs them for his duties as blacksmith. Will you go to Berk and ask him for a few?</Text><ID>923213</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I have a lot of screws loose! You can have some of them. Is Hiccup working on a new project?</Text><ID>923214</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Go talk to Gobber in the Hatchery.</Text><ID>936481</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 10495 + + 1 + 1552 + 202485 + true + 1 + 1 + + 0 + +
+ false + + + 1392 + Storm02T04 + 4 +

1390

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1392 + 1040 + 0 + + + + 1 + 202486 + 0 + + 1040 + Storm02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ve been hard at work with those logs while you were gone. I think we’ll need another important simple machine to get the food to the school building: a pulley. I think Mulch uses them for his ships. Will you go ask him for one?</Text><ID>923205</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Pulleys are very important for sailors. It’s made out of one or more wheels with a rope wrapped around them. It allows us to move something up and down or back and forth along the rope. Here, you can have one.</Text><ID>923206</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch about the pulley system.</Text><ID>936482</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 10496 + + 1 + 1553 + 202486 + true + 1 + 1 + + 0 + +
+ false +
+ + 1393 + Storm02T05 + 4 +

1390

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1393 + 1041 + 0 + + + + 1 + 0 + 0 + + 1041 + Storm02T05 + <Data><Offer><Type>Popup</Type><ID>923209</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We’re almost ready to move the food! I’ve asked the Botanist to load up her cart with the food. Can you ask her what is the state of the cart?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923210</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Yes, the cart is ready. I’ve already placed it where Hiccup would like it to be. Carts are really useful because they utilize wheels to move with less energy for a longer time. Wheels are fixed to an axle, or a rod, placed in the middle of the wheel. When the axle rotates, the wheel rotates as well! This allows the wheel to move further for little work.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist about her cart.</Text><ID>923208</ID></Desc></Data> + 0 + false + + false +
+ + 1037 + Storm02T01 + <Data><Offer><Type>Popup</Type><ID>923217</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}! Thank you for helping us out earlier by gathering food. We now have a lot, in case a storm disrupts our food supply! We’ll need to find a way to move it down to the school building. @@ Luckily, we don’t have to carry it down ourselves. We can create simple machines to help us out. These inventions will help us do our jobs easier because when we put energy into a simple machine, they boost it to a much larger scale! Let’s get some materials to make these machines. Can you go to the Wilderness and gather 10 pieces of wood?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923218</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's a great job! We'll need a lot of wood to create these things.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 10 pieces of wood</Text><ID>923215</ID></Title><Desc><Text>Gather 10 pieces of wood from the wilderness.</Text><ID>923216</ID></Desc></Data> + 0 + false + + + 1039 + Storm02T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Come back to me with the screws, and we’ll get started on the next simple machine.</Text><ID>923221</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Gobber does good work. I knew I could rely on him.</Text><ID>923222</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>10495</Value></Pair><Pair><Key>ItemDescription</Key><Value>Screw</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Hiccup</Text><ID>923219</ID></Title><Desc><Text>Return to Hiccup with the screws.</Text><ID>929575</ID></Desc></Data> + 0 + false + + + 1042 + Storm02T06 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQStorm02T06.unity3d/PfGrpQStorm02T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>923225</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I just put a ramp down onto the hill. A ramp, or inclined plane as it is also called, is a flat surface that connects a lower level to a higher level. We can use it to move the cart to higher hills with ease! You should go see where I placed it!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923226</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You see? The yaks and the cart's wheels will have no problem taking the cart there.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ramp</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair></Objective><Type>Visit</Type><Title><Text>Bring the ramp to the hill</Text><ID>923223</ID></Title><Desc><Text>Bring the ramp to the hill at the Lookout.</Text><ID>923224</ID></Desc></Data> + 0 + false + + + 1043 + Storm02T07 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQStorm02T06.unity3d/PfGrpQStorm02T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfLookoutCraneNormal</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923229</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The yak will pull the cart without any help. You can just follow it up to the top of the hill! I built a simple machine that uses pulleys to bring things to the lower plane! You’ll see it when you get there.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Lever</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the cart up the hill</Text><ID>923227</ID></Title><Desc><Text>Follow the cart up the hill at the Lookout.</Text><ID>923228</ID></Desc></Data> + 0 + false + + + 1066 + Storm02T08 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Isn’t that cool? You can slowly lower the rope on this gear to lower the food! Thanks for your help, {{Name}}. We’ll be able to get this food to the school in no time.</Text><ID>923232</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>10496</ItemID><Quantity>1</Quantity></RemoveItem><Type>Visit</Type><Title><Text>Look at the pulley</Text><ID>923230</ID></Title><Desc><Text>Look at the pulley.</Text><ID>939165</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202464 + true + 50 + 50 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 202464 + true + 200 + 200 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202464 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202464 + true + 200 + 200 + + 0 + +
+ false +
+ + 1508 + Quest Prism 01 + 15 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Splendor of Light</Text><ID>923237</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1390 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1508 + 1188 + 0 + + + 1 + 1508 + 1189 + 0 + + + 1 + 1508 + 1190 + 0 + + + 1 + 1508 + 1191 + 0 + + + 1 + 1508 + 1192 + 0 + + + 1 + 1508 + 1193 + 0 + + + + 1 + 202600 + 0 + + 1188 + Prism01T01 Find the Plate + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQPrism01T01.unity3d/PfGrpQPrism01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923184</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey {{Name}}, do you have some time to help me out? I got inspired in the Lab after you created all that glass with Meatlug. I was hoping to find another use for it, so I enlisted Snotlout’s help! @@ Unfortunately, his father Spitelout called him for an errand and Snotlout left my glass plate in the Wilderness. Will you go to the Wilderness and look for it?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923185</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There’s the glass plate! Notice how you can look through it? That means that the glass is transparent.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfGlassLensePrism</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the glass plate in the Wilderness</Text><ID>923182</ID></Title><Desc><Text>Find Heather's glass plate in the Wilderness.</Text><ID>923183</ID></Desc></Data> + 0 + false + + + 1189 + Prism01T02 Go to the spot in the Wilderness + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfUiMissionVisit.unity3d/PfUiMissionVisit</Asset><Location>PfMarker_Prism</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Say, do you want to help me with my experiment since Snotlout bailed on me? I wanted to see what would happen if we shined light through the glass. I mean, we can see through it. Will it treat sunlight any differently? @@ Take the glass plate and place it in the sun at the top of the mountain. You can follow the quest arrow to the good area.</Text><ID>923188</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926506</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting! Notice how the light is passing through the glass? The light is [c][3eebff]transmitting[/c][ffffff] through it, but it changed its focus. @@ Normally, light travels in a straight line. The shape of the glass is changing the direction of the light (that's called [c][3eebff]refraction[/c][ffffff]). Because the plate I created is curved outward, or [c][3eebff]convex[/c][ffffff], it focuses the light into a tight area!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Prism</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Place the plate at the top of the mountain</Text><ID>923186</ID></Title><Desc><Text>Place the plate at the top of the mountain.</Text><ID>926505</ID></Desc></Data> + 0 + false + + + 1190 + Prism01T03 Meet Heather + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQPrism01T02.unity3d/PfGrpQPrism01T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>923191</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>So the convex shape of the plate made the light focus. Let’s try another shape. Will you bring me the glass plate? I’ll give you another shape that you can use to conduct experiments.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923192</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I wonder what will happen with this prism. I can’t wait to find out!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give the lens back to Heather</Text><ID>923189</ID></Title><Desc><Text>Give the lens back to Heather.</Text><ID>923190</ID></Desc></Data> + 0 + false + + + 1191 + Prism01T04 Make a hypothesis + <Data><Offer><Type>Popup</Type><ID>923195</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The prism is made out of a lot of flat surfaces, with angles between them. That will cause the light to bend sharply, I think. How do you think the light will react?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesisPrism.unity3d/PfUiHypothesisPrism</Value></Pair></Objective><Type>Meet</Type><Title><Text>Hypothesis with Heather</Text><ID>923193</ID></Title><Desc><Text>Click on Heather and make a hypothesis.</Text><ID>923194</ID></Desc></Data> + 0 + false + + + 1192 + Prism01T05 Bring Prism to the wilderness + <Data><Offer><Type>Popup</Type><ID>923198</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well, let’s test out your hypothesis! Will you take the prism to the tip of Dragon’s Peak? I think the prism will be able to catch direct sunlight there. Then we can see if our theory is true!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Prism</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Bring the prism to the Wilderness</Text><ID>923196</ID></Title><Desc><Text>Bring the prism to the Wilderness.</Text><ID>923197</ID></Desc></Data> + 0 + false + + + 1193 + Prism01T06 Come back to Heather + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQPrism01T04.unity3d/PfGrpQPrism01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>923201</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow! That’s amazing! The light refracted and separated, making the different colors appear! This happened because different colors of light travel at different speeds through different materials. Since the colors moved at different speeds, the light separated! @@ Humans can only see a certain range of color, also called the visible spectrum. When light splits, we can see the different colors of the range in the same way. We can see red, orange, yellow, green, blue, indigo, and violet. A good way to remember it is to call it ROY G. BIV. @@ What an exciting day! Will you bring me back the prism?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923202</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I’m surprised that we were able to learn something so important through this simple device. Thank you so much for helping me with my experiment, {{Name}}. I’m sure we’ll be able to use this discovery soon.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to Heather</Text><ID>923199</ID></Title><Desc><Text>Meet Heather in the School.</Text><ID>923200</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 202600 + true + 80 + 80 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202600 + true + 250 + 250 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202600 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202600 + true + 200 + 200 + + 0 + +
+ false +
+ + 1529 + Quest Storm03 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Raging Storm</Text><ID>923325</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1390 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1529 + 1225 + 0 + + + 1 + 1529 + 1226 + 0 + + + 1 + 1529 + 1227 + 0 + + + 1 + 1529 + 1228 + 0 + + + 1 + 1529 + 1229 + 0 + + + 1 + 1529 + 1230 + 0 + + + 1 + 1529 + 1231 + 0 + + + 1 + 1529 + 1232 + 0 + + + 1 + 1529 + 1233 + 0 + + + + 1 + 202668 + 0 + + 1225 + Storm03T01 Meet Others + <Data><Offer><Type>Popup</Type><ID>923245</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The storm is coming! Bucket’s head is swelling in his bucket, Gothi’s bones are aching, and the animals are all huddled in their pens. We can’t stop it from hitting the school, but all the preparations we made will help lessen the damage! @@ Meet me in the great hall at the school. We’ll ride out the storm there!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDamagedDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Great Hall</Text><ID>923243</ID></Title><Desc><Text>Find shelter from the storm within the Great Hall at the school.</Text><ID>923244</ID></Desc></Data> + 0 + false + + + 1226 + Storm03T02 Roof + <Data><Offer><Type>Popup</Type><ID>923248</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoa! Watch out!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923249</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wow, look at all this water! + +Step back. {{Name}} and I got this. @@ We’re going to need some buckets. + +Lots of buckets.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDamagedDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Watch out!</Text><ID>923247</ID></Title><Desc><Text>Watch out!</Text><ID>923247</ID></Desc></Data> + 0 + false + + + 1227 + Storm03T03 Debris + <Data><Setup><Scene>GreatHallSchoolIntDamagedDO</Scene><Asset>RS_DATA/PfGrpQStorm03T03.unity3d/PfGrpQStorm03T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923252</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The roof broke, but it could have been a lot worse. Let’s clean up the room by gathering the debris.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923253</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You've done a bang-up job!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDamagedDO</Value></Pair><Pair><Key>Name</Key><Value>PfWoodDebris</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair></Objective><Type>Collect</Type><Title><Text>Clear 8 pieces of debris from the Great Hall</Text><ID>923250</ID></Title><Desc><Text>Clear 8 pieces of debris from the Great Hall.</Text><ID>923251</ID></Desc></Data> + 0 + false + + + 1228 + Storm03T04 Back to School + <Data><Setup><Asset>RS_DATA/PfGrpQStorm03T04.unity3d/PfGrpQStorm03T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>923256</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that the storm has ended, let’s go back outside and see how badly it hit the school. I hope we can fix everything that broke!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to the school</Text><ID>923254</ID></Title><Desc><Text>Go back to the school.</Text><ID>923255</ID></Desc></Data> + 0 + false + + + 1229 + Storm03T05 Rainbow + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQStorm03T05.unity3d/PfGrpQStorm03T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>923259</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. That's... amazing.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923260</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The interesting thing is that the rainbow is an arc of light that makes up the color spectrum. You saw the color spectrum when you refracted the light with a prism. A raindrop and a prism are similar in many ways. They are both transparent, transmit light, refract light, and serve as a lens to create a beautiful sight.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the rainbow</Text><ID>923257</ID></Title><Desc><Text>Look at the rainbow.</Text><ID>923258</ID></Desc></Data> + 0 + false + + + 1230 + Storm03T06 Clear Debris + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQStorm03T06.unity3d/PfGrpQStorm03T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923263</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The wind and the rain smashed wood from the buildings and spread it across the school. Natural processes can cause natural hazards. We can’t eliminate these hazards, but we can take steps to reduce the damage they cause to us. @@ Let's get to work! Can you help clean up by gathering the debris? +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923264</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job. We have a lot to do, but it’s a good start.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfWoodDebris</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Collect</Type><Title><Text>Clean up 6 pieces of debris at the school</Text><ID>923261</ID></Title><Desc><Text>Help clean up the school by picking up 6 pieces of debris.</Text><ID>923262</ID></Desc></Data> + 0 + false + + + 1231 + Storm03T07 Botanist + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923267</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Can you talk to the Botanist and see how badly the storm damaged our food supply? She’s by the Hatchery.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923268</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The storm destroyed some of our crops, but the food we gathered will help us through the shortage. Thank you so much for helping gather them previously.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Botanist at the School</Text><ID>923265</ID></Title><Desc><Text>Talk to the Botanist about the food supply.</Text><ID>923266</ID></Desc></Data> + 0 + false + + + 1232 + Storm03T08 Wood + <Data><Offer><Type>Popup</Type><ID>923271</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Bucket, Mulch, and Gobber are going to be patching up the broken buildings, but we’ll need more resources. Will you chop trees down in the Wilderness and bring me 6 wood logs?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923272</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thank you. This will go a long way to fixing a lot of the buildings that got damaged. The storm hurt the school, but we’ll get through it together as a community. No, as a family.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver 6 wood logs to Heather</Text><ID>923269</ID></Title><Desc><Text>Give 6 logs of wood to Heather. You can chop wood logs at the Wilderness.</Text><ID>923270</ID></Desc></Data> + 0 + false + + + 1233 + Storm03T09 Meet Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! While you were helping Heather with the other buildings, I've figured out a great solution for the ruined roof. Meet me by the house and see what we've done!</Text><ID>923274</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Glass allows light to pass through it because it’s transparent, and it keeps the elements out of the Great Hall. With this, the sunlight will brighten the inside of the Great Hall and fill the room with cheer. @@ Thank you, {{Name}}. The storm hit, but we were ready because of your help. When the next problem comes up, I know I can count on you.</Text><ID>923275</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup at the School</Text><ID>941122</ID></Title><Desc><Text>Talk to Hiccup by the School</Text><ID>941123</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 202668 + true + 250 + 250 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 202668 + true + 85 + 85 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202668 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202668 + true + 200 + 200 + + 0 + +
+ false +
+ + 1530 + Quest Storm04 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Time for Celebration</Text><ID>923335</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1529 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1530 + 1238 + 0 + + + 2 + 1530 + 1531 + 0 + + + 1 + 1530 + 1242 + 0 + + + 1 + 1530 + 1243 + 0 + + + 1 + 1530 + 1244 + 0 + + + 2 + 1530 + 1535 + 0 + + + 1 + 1530 + 1245 + 0 + + + 1 + 1530 + 1249 + 0 + + + 1 + 1530 + 1250 + 0 + + + + 1 + 202672 + 0 + + 1531 + Storm04T02 + 11 +

1530

+ <Data><Offer><Type>Popup</Type><ID>923330</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Next on the list: party decorations! Go to the Wilderness and pick whichever flower you like best. We’ll use it as inspiration for our decorations. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Choose a Flower</Text><ID>923329</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + some + false + 1 + 1 + + 2 + 1531 + 1532 + 0 + + + 2 + 1531 + 1533 + 0 + + + 2 + 1531 + 1534 + 0 + + + + 1 + 0 + 0 + + 1532 + Storm04T02 Blue + 11 +

1531

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect the Blue Anemone</Text><ID>923326</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1532 + 1239 + 0 + + + + 1 + 0 + 0 + + 1239 + Storm04T02Blue + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQStorm04T01Blue.unity3d/PfGrpQStorm04T01Blue</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>923284</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>One of my favorite colors. Blue anemones it is!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantBlueAnemone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Choose the flower for the decoration</Text><ID>923282</ID></Title><Desc><Text>Choose the type of flower you want in the Great Hall.</Text><ID>923283</ID></Desc></Data> + 0 + false + + false +
+ + 1533 + Storm04T02Red + 11 +

1531

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Choose the Red Dahlia</Text><ID>923327</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1533 + 1240 + 0 + + + + 1 + 0 + 0 + + 1240 + Storm04T02Red + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQStorm04T01Red.unity3d/PfGrpQStorm04T01Red</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>923278</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Red Dahlias! What a brilliant choice!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantRedDahlia</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Choose a flower for a decoration</Text><ID>923276</ID></Title><Desc><Text>Choose a flower for a decoration.</Text><ID>923277</ID></Desc></Data> + 0 + false + + false +
+ + 1534 + Storm04T02White + 11 +

1531

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Find the White Flower</Text><ID>923328</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1534 + 1241 + 0 + + + + 1 + 0 + 0 + + 1241 + Storm04T02White + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQStorm04T01White.unity3d/PfGrpQStorm04T01White</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>923281</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great choice. Let’s fill the Great Hall with lilies!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWPlantSnowdonLilly</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Choose a flower for decorations</Text><ID>923279</ID></Title><Desc><Text>Collect the white Snowdon Lily for the decoration.</Text><ID>923280</ID></Desc></Data> + 0 + false + + false +
+ false + + + 1535 + Storm04T06 + 11 +

1530

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_NPC01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_NPC02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_NPC05</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_NPC03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_NPC04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Go to the party</Text><ID>923334</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + some + false + 1 + 1 + + 2 + 1535 + 1536 + 0 + + + 2 + 1535 + 1537 + 0 + + + 2 + 1535 + 1538 + 0 + + + + 1 + 0 + 0 + + 1536 + Storm04T06Blue + 11 +

1535

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpQStorm04T02Blue.unity3d/PfGrpQStorm04T02Blue</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Go to the Great Hall</Text><ID>923331</ID></Title></Data> + false + 0 + + + 3 + 1532 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1536 + 1246 + 0 + + + + 1 + 0 + 0 + + 1246 + Storm04T06Blue + <Data><Offer><Type>Popup</Type><ID>923287</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hurry to the Great Hall. Everyone’s here!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>923296</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, what a great surprise party! I didn't even see it coming.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Join the party in the Great Hall</Text><ID>923289</ID></Title><Desc><Text>Join the party in the Great Hall.</Text><ID>923290</ID></Desc></Data> + 0 + false + + false +
+ + 1537 + Storm04T06Red + 11 +

1535

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpQStorm04T02Red.unity3d/PfGrpQStorm04T02Red</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Go to the Party in the Great Hall</Text><ID>923332</ID></Title></Data> + false + 0 + + + 3 + 1533 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1537 + 1247 + 0 + + + + 1 + 0 + 0 + + 1247 + Storm04T06Red + <Data><Offer><Type>Popup</Type><ID>923295</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hurry to the Great Hall. Everyone's here!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>923296</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, what a great surprise party! I didn't even see it coming.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Join the party in the Great Hall</Text><ID>923289</ID></Title><Desc><Text>Join the party in the Great Hall.</Text><ID>923290</ID></Desc></Data> + 0 + false + + false +
+ + 1538 + Storm04T06White + 11 +

1535

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpQStorm04T02White.unity3d/PfGrpQStorm04T02White</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Go to the Party</Text><ID>923334</ID></Title></Data> + false + 0 + + + 3 + 1534 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1538 + 1248 + 0 + + + + 1 + 0 + 0 + + 1248 + Storm04T06 White + <Data><Offer><Type>Popup</Type><ID>923295</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hurry to the Great Hall. Everyone's here!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923296</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, what a great surprise party! I didn't even see it coming.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Join the party at the Great Hall</Text><ID>923293</ID></Title><Desc><Text>Join the party at the Great Hall.</Text><ID>923294</ID></Desc></Data> + 0 + false + + false +
+ false +
+ + 1238 + Storm04T01: Deliver Food + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey, {{Name}}! What do you think about throwing a party to celebrate all the hard work we've done? It'll be an “after-storm” party! @@ Don’t tell the others yet! I want it to be a surprise. We’ll need some extra supplies: 4 chicken eggs, 4 corn, 2 brown trout, and 1 eel. Bring everything back to me!</Text><ID>923299</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank you! I'll start preparing the food.</Text><ID>923300</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7139</Value></Pair><Pair><Key>ItemDescription</Key><Value>Brown Trout</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7140</Value></Pair><Pair><Key>ItemDescription</Key><Value>Eel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Astrid 4 chicken eggs, 4 ears of corn, 2 brown trout, and 1 eel</Text><ID>923297</ID></Title><Desc><Text>Give Astrid 4 chicken eggs, 4 ears of corn, 2 brown trout, and 1 eel.</Text><ID>934028</ID></Desc></Data> + 0 + false + + + 1242 + Storm04T03 Botanist + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfGrpQStorm04T01White</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfGrpQStorm04T01Red</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfGrpQStorm04T01Blue</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>923323</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We’ll need some help making the decorations. Show the flower to Phlegma. She’ll know what to do!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923324</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>What a beautiful flower! Astrid told me about the plan. +Don’t worry. I can keep a secret. The decorations will be done soon.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Show the flower to the Botanist at the Lookout</Text><ID>923321</ID></Title><Desc><Text>Meet the Botanist at the Lookout.</Text><ID>923322</ID></Desc></Data> + 0 + false + + + 1243 + Storm04T04 Hiccup + <Data><Offer><Type>Popup</Type><ID>923303</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I’m almost done setting up, but Hiccup keeps asking me questions! I think he knows we’re up to something. @@ Could you distract him for me? We need a little more time.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923304</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What is going on with Astrid? She seems really busy. I tried to ask, but she keeps running off to do something. If you see her, let her know I am free to help if she needs me.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup and distract him</Text><ID>923301</ID></Title><Desc><Text>Talk to Hiccup to distract him from Astrid's plan.</Text><ID>923302</ID></Desc></Data> + 0 + false + + + 1244 + Storm04T05 Headmaster + <Data><Offer><Type>Popup</Type><ID>923307</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Everything’s almost ready. Time to invite our guests! Can you please ask the Headmaster to send out the invitations?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923308</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Invitations? I just sent them out. Everyone should be on their way.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster about the invitation</Text><ID>923305</ID></Title><Desc><Text>Talk to the Headmaster about the invitations for the celebration.</Text><ID>923306</ID></Desc></Data> + 0 + false + + + 1245 + Storm04T07 Fishlegs + <Data><Offer><Type>Popup</Type><ID>923311</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The party is a huge success! I couldn't have done it without you. Looks like everyone is enjoying themselves. Go on, mingle with your guests!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923312</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't go to many parties, but this one is a lot of fun. Thanks for inviting me!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 1249 + Storm04T08 Tuffnut + <Data><Offer><Type>Popup</Type><ID>923319</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Uh oh... Tuffnut doesn't look so good. Maybe you should check up on him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923320</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hey, {{Name}}. What did Astrid put in this soup? It tastes weird... and it makes my toes tingle.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutIdle01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check up on Tuffnut</Text><ID>923317</ID></Title><Desc><Text>Talk to Tuffnut.</Text><ID>923318</ID></Desc></Data> + 0 + false + + + 1250 + Storm04T09 Hiccup + <Data><Offer><Type>Popup</Type><ID>923315</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Ew! I think it's eel. Astrid's cooking is going to be the end of us. You should say hi to Hiccup over there... before my brother barfs all over your shoes.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923316</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Everyone's spirits needed a lift after that terrible storm. This party was just what we needed. Thank you for helping Astrid bring us all together!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about the party</Text><ID>923313</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 202672 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 202672 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202672 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202672 + true + 350 + 350 + + 0 + +
+ false +
+ + 1575 + Quest Lens01 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Light Dilemma</Text><ID>923366</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1530 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1575 + 1297 + 0 + + + 1 + 1575 + 1298 + 0 + + + 1 + 1575 + 1299 + 0 + + + 1 + 1575 + 1300 + 0 + + + 1 + 1575 + 1301 + 0 + + + 1 + 1575 + 1302 + 0 + + + 1 + 1575 + 1303 + 0 + + + 1 + 1575 + 1304 + 0 + + + + 1 + 202684 + 0 + + 1297 + Lens01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Hiccup told me about how much work you did to help repair the damages that the storm caused our school. Great job! I heard you and Hiccup placed a skylight within the Great Hall at the school to cover the wrecked hole in the roof. I think it does a great job of keeping out the rain and lighting up the room. @@ Have you seen the new Great Hall? You should go inside and take a look.</Text><ID>923338</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923547</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Your glass discovery lets the sunlight in but keeps the rain out. Your glass prisms and panes can bend or transmit light. This is truly a remarkable discovery! @@ The school shall start researching how light energy propagates. I’ll look to you for help. +</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the School Great Hall</Text><ID>923336</ID></Title><Desc><Text>Visit the School Great Hall.</Text><ID>923546</ID></Desc></Data> + 0 + false + + + 1298 + Lens01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>For now, I was hoping to spread even more light into the Great Hall somehow. Talk to Heather and see if you can find a solution.</Text><ID>923341</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's an interesting idea. I love solving puzzles; I wonder if we can figure this out using the science we've already discovered.</Text><ID>923342</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather.</Text><ID>926651</ID></Desc></Data> + 0 + false + + + 1299 + Lens01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let me think... during our experiment with glass prisms in the wilderness, we found out that light can [c][3eebff]refract[/c][ffffff] - or change direction - when it travels through a shaped glass. I wonder if we can direct the light that comes through the skylight and spread it out into the whole room! @@ We can do that through lenses. A [c][3eebff]lens[/c][ffffff] is a piece of glass (or other transparent substance), with curved sides for focusing or dispersing light. For instance, the lens in your eye is a [c][3eebff]convex[/c][ffffff] lens. It focuses light rays on the back of your eye. That’s how your mind sees what your eyes see. @@ Our hypothesis is: "Any [c][3eebff]lens[/c][ffffff] will refract the light and fill the room with light." I know that Hiccup was trying to make glass lenses for a telescope. Can you talk to him and see if he can give us a lens?</Text><ID>923345</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Heather told you about the lenses I made? Well, hear me out. I had this crazy idea about telescopes. We have one at the school, but it's pretty small. It can fit in our hand. What if we made a telescope that was as large as Heather's laboratory? We might even be able to see across the ocean and discover new dragons! @@ Well, more of my crazy ideas later. I mean, you didn't come to hear me ramble. Here, you can have this lens for the Great Hall!</Text><ID>923346</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 1300 + Lens01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Take this lens to the Great Hall, {{Name}}. I hope Heather's hypothesis turns out to be true!</Text><ID>923349</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>923551</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Whoa! Okay, we just proved our hypothesis was [c][3eebff]false[/c][ffffff]! Be careful. That spot is pretty hot.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take the lens to the Great Hall</Text><ID>923347</ID></Title><Desc><Text>Take the lens to the Great Hall.</Text><ID>923550</ID></Desc></Data> + 0 + false + + + 1301 + Lens01T05 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQGronckle06Sandstone.unity3d/PfGrpQGronckle06Sandstone</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>[c][3eebff]Concave[/c][ffffff] and [c][3eebff]convex[/c][ffffff] lenses both refract light rays, changing the focus of the light. This lens that Hiccup gave you is a [c][3eebff]convex[/c][ffffff] lens. It’s thicker in the middle than at the edges. That shape helps to converge, or direct, the light into one focal point. So we now know that a convex lens will [c][3eebff]not[/c][ffffff] diffuse the light. @@ Let's try a [c][3eebff]concave[/c][ffffff] lens. I bet Hiccup has one, but we can't just take all his glass. Will you help gather some sandstone in the Wilderness? He can use that to make more glass.</Text><ID>923352</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Nicely done!</Text><ID>923353</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSandstone</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 4 sandstone in the Wilderness</Text><ID>923350</ID></Title><Desc><Text>Find 4 pieces of sandstone in the Wilderness.</Text><ID>923552</ID></Desc></Data> + 0 + false + + + 1302 + Lens01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks for restocking my supplies, {{Name}}. I was starting to run low! Bring the sandstone to me and I’ll craft you a concave lens.</Text><ID>923356</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I can definitely use this to make more glass. Hope this concave lens works out better for you than the convex one!</Text><ID>923357</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>9273</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sandstone</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the sandstone to Hiccup</Text><ID>923354</ID></Title><Desc><Text>Give the sandstone to Hiccup.</Text><ID>929566</ID></Desc></Data> + 0 + false + + + 1303 + Lens01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Okay, we've revised our hypothesis to state that "A [c][3eebff]concave[/c][ffffff] lens will spread out the light in the Great Hall and make it brighter." Come back to the Great Hall and we’ll test it out!</Text><ID>923360</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Yes! How exciting! It worked!</Text><ID>923361</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>See the concave lens in the Great Hall</Text><ID>923358</ID></Title><Desc><Text>Visit the Great Hall at the school.</Text><ID>923554</ID></Desc></Data> + 0 + false + + + 1304 + Lens01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I love it when an experiment falls into place. Tell the Headmaster that we've worked our magic and got exactly what he wanted. Of course, by 'work our magic' I mean 'figured out the problem through science!'</Text><ID>923364</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I knew I could count on you. Good job.</Text><ID>923365</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text><ID>922008</ID></Title><Desc><Text>Talk to the Headmaster.</Text><ID>936127</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 202684 + true + 75 + 75 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202684 + true + 250 + 250 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202684 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202684 + true + 200 + 200 + + 0 + +
+ false +
+ + 1579 + Quest Astronomy01 + 12 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Sentry Point</Text><ID>923566</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1530 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1579 + 1329 + 0 + + + 1 + 1579 + 1330 + 0 + + + 1 + 1579 + 1331 + 0 + + + 1 + 1579 + 1332 + 0 + + + 1 + 1579 + 1333 + 0 + + + 1 + 1579 + 1334 + 0 + + + 1 + 1579 + 1335 + 0 + + + 1 + 1579 + 1336 + 0 + + + 1 + 1579 + 1337 + 0 + + + + 1 + 202707 + 0 + + 1329 + Astronomy01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You know, Astrid is always looking for ways to make Berk safer. I think if we set up a lookout spot out in the ocean, we could keep an eye out for enemy ships. Great idea, right? @@ So Hookfang and I flew out into the ocean and found the perfect place. Any ships heading to the school need to pass by these sea stacks, so we'll spot them long before they are a threat to us. @@ Also, it's a really beautiful place. @@ I think you'll understand how great it is when you see it. Besides, I need your help to set up Hiccup's telescope to see the ships. Fly out through the crack in the caldera and fly straight towards the ocean. I'll meet you there!</Text><ID>923512</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Good! It's a bit hard flying without daylight, but you seem to be handling it just fine.</Text><ID>923513</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to Snotlout's vantage point through the caldera</Text><ID>923510</ID></Title><Desc><Text>Fly to Snotlout's vantage point. You can find this by flying through the crack in the wall in the caldera.</Text><ID>936477</ID></Desc></Data> + 0 + false + + + 1330 + Astronomy01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Welcome to Snotlout's Sentry Station! Let me show you around. +Do you see the cresting water on the surface of the ocean? Fly down there and meet the animals!</Text><ID>923516</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Narwhals! They're so happy to see us! Pretty cool, huh?</Text><ID>923517</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Narwhal</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the narwhals in the water</Text><ID>923514</ID></Title><Desc><Text>Look at the narwhals in the water.</Text><ID>923595</ID></Desc></Data> + 0 + false + + + 1331 + Astronomy01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Ooh, what about the perfect view? We have a great look of the ocean and an amazing view of that island on the horizon. You should take a closer look!</Text><ID>923520</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>See? This is the perfect place! I [c][3eebff]do[/c][ffffff] know what I'm doing. I know, it's incredible.</Text><ID>923521</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Caldera</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the caldera in the horizon</Text><ID>923518</ID></Title><Desc><Text>Look at the caldera in the horizon.</Text><ID>923596</ID></Desc></Data> + 0 + false + + + 1332 + Astronomy01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Come back to me and help me set up this telescope! Then we'll be good to g-o.</Text><ID>923524</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, shoot! I just knocked the telescope into the water! It sank so quickly. +Now there's [c][3eebff]no[/c][ffffff] telescope. You've got to help me, {{Name}}! Please!</Text><ID>923525</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 1333 + Astronomy01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Could you tell Hiccup that we need a new telescope? I would do it myself, but I'm busy... um... looking out for Berserker ships! Gotta keep the school safe, and all. Tell Astrid I'm on the job!</Text><ID>923528</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Snotlout lost the telescope on accident? In the ocean?! That sounds, well, just like him. @@ Luckily, I was already thinking about replacing it! Our recent experiments with lenses gave me some interesting ideas. Here's the latest prototype!</Text><ID>923529</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at the school.</Text><ID>923598</ID></Title><Desc><Text>Talk to Hiccup at the school.</Text><ID>923598</ID></Desc></Data> + 0 + false + + + 1334 + Astronomy01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This telescope is slightly bigger and more powerful. It uses a [c][3eebff]concave[/c][ffffff] lens as the eyepiece and a [c][3eebff]convex[/c][ffffff] lens as the objective lens — the lens that is farther away from you. The image is [c][3eebff]magnified[/c][ffffff] through the lenses. We'll be able to look at things that are even farther away. @@ Snotlout did have a good idea. A vantage point in the ocean will help us spot danger before it reaches us. Will you take this new telescope to him?</Text><ID>923532</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You got Hiccup to replace the telescope? Thank you, thank you, thank you!</Text><ID>923533</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Replace the telescope at Snotlout's Sentry Station</Text><ID>923530</ID></Title><Desc><Text>Replace the telescope at Snotlout's Sentry Station.</Text><ID>936478</ID></Desc></Data> + 0 + false + + + 1335 + Astronomy01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>{{Input}} on the telescope and look on the horizon for Berserker ships, {{Name}}.</Text><ID>923536</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>No ships and you can see for miles around. Our experiment is a success! You and I make a great team!</Text><ID>923537</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Location</Key><Value>PfTelescopeAstro</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the telescope to look for Berserkers</Text><ID>923534</ID></Title><Desc><Text>Use the telescope and scan the horizon to look for Berserkers.</Text><ID>936571</ID></Desc></Data> + 0 + false + + + 1336 + Astronomy01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}. I thought I could come out and see how the new telescope worked. I’m glad it was a success! @@ You know, this view is really great. There are fewer lights from the school and you can see more of the stars. Since we're here, maybe we can use the telescope to get a closer look at the moon. @@ [c][3eebff]The moon goes through different phases. We vikings know the different phases of the moon very well. We use them to keep track of the time of year.[/c][ffffff] Let’s see what phase the moon is in right now.</Text><ID>923540</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's a [c][3eebff]waxing crescent moon[/c][ffffff]. During this phase, only part of the moon is beginning to show. We say that the moon is 'waxing' because the moon becomes a bit more visible for a little bit longer each passing night. @@ The moon goes through eight phases as it circles around the Earth, once every 29.5 days.</Text><ID>923541</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the telescope to look at the moon</Text><ID>923538</ID></Title><Desc><Text>Use the telescope to look at the moon.</Text><ID>923601</ID></Desc></Data> + 0 + false + + + 1337 + Astronomy01T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, you guys made the telescope better than before... all thanks to me? That's awesome! If I hadn't lost the lens, Hiccup wouldn't have thought of making improvements. Uh, you're welcome!</Text><ID>923544</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Losing the telescope wasn't exactly helpful, Snotlout. We should try to find it at some point. But for now, I'm glad the new telescope worked out. Thanks for your help, {{Name}}.</Text><ID>923545</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enjoy Snotlout's Sentry Station</Text><ID>923542</ID></Title><Desc><Text>Enjoy Snotlout's Sentry Station.</Text><ID>929550</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202707 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202707 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202707 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202707 + true + 200 + 200 + + 0 + +
+ false +
+ + 1605 + Arctic_Groncicle01 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle01T01.unity3d/PfGrpArcticGroncicle01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_BeachToBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Bucket's Icy Problem</Text><ID>923556</ID></Title><Desc><Text>Bucket's ship has been wrecked by a mysterious ice blast</Text><ID>923557</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1605 + 1361 + 0 + + + 1 + 1605 + 1362 + 0 + + + 1 + 1605 + 1364 + 0 + + + 1 + 1605 + 1365 + 0 + + + + 1 + 202708 + 0 + + 1361 + Groncicle01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Bucket was last seen bringing up a shipment of parchment from some traders, but his ship is missing and he is nowhere to be found… @@Check the waters around the School or Berk and find our missing Berkian!</Text><ID>923432</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Goodness! What a scary moment.</Text><ID>923433</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Bucket at Berk</Text><ID>923430</ID></Title><Desc><Text>Search near the shore of Berk to find Bucket's ship.</Text><ID>936446</ID></Desc></Data> + 0 + false + + + 1362 + Groncicle01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I was on my way from Berk to the School of Dragons when the inside of my ship suddenly exploded in ice! Will you help me figure out what happened? Jump on the broken shards of my ship.</Text><ID>923436</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Is that a baby dragon, {{Name}}?</Text><ID>923437</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MiddleBoat</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the shipwreck</Text><ID>923434</ID></Title><Desc><Text>Jump to the middle of the wrecked ship to find out what happened</Text><ID>941466</ID></Desc></Data> + 0 + false + + + 1364 + Groncicle01T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>PfMarker_MiddleBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Oh! A trader told me I picked up an Orb of Frozen Futures. It must have been a dragon egg. Can you {{input}} on the baby dragon and lead him to Hiccup?</Text><ID>923444</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestArcticExpansion.unity3d/SndDragGronciclePersonality01</Asset><NPC>PfDWBucket</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow! What an amazing feller! Hey there, little guy. I've never seen a dragon like this before! He looks a little bit like a Gronckle, but clearly he's a new species. He looks like a Gronckle made of icicles… maybe he could be called a [c][3eebff]Groncicle![/c][ffffff]</Text><ID>923445</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron20</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup_01</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>15</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the dragon and lead him to Hiccup</Text><ID>923442</ID></Title><Desc><Text>Lead the baby Groncicle off the ship and take it to Hiccup</Text><ID>941467</ID></Desc><Reminder><Text>Don't leave the baby dragon behind!</Text><ID>936204</ID></Reminder><Failure><Text>Oh no! You left the dragon behind!</Text><ID>936205</ID></Failure></Data> + 0 + false + + + 1365 + Groncicle01T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, what an interesting little guy. I can't wait to learn more about him! +Will you tell Mulch what's going on? Maybe he can help Bucket get back on his feet.</Text><ID>923448</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I'm sure we can figure something out for my bucketed friend! I'm sure you and Hiccup will figure out the situation with the baby dragon. You always do!</Text><ID>923449</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak to Mulch</Text><ID>923446</ID></Title><Desc><Text>Tell Mulch about the baby dragon</Text><ID>941468</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 202708 + true + 75 + 75 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202708 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202708 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202708 + true + 50 + 50 + + 0 + +
+ false +
+ + 1607 + Arctic_Groncicle03 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Homey Habitat</Text><ID>923560</ID></Title><Desc><Text>The baby Groncicle needs to be built a nest so that he can rest comfortably in his new habitat.</Text><ID>923561</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1606 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1607 + 1373 + 0 + + + 1 + 1607 + 1374 + 0 + + + 1 + 1607 + 1375 + 0 + + + 1 + 1607 + 1376 + 0 + + + 1 + 1607 + 1716 + 0 + + + + 1 + 202710 + 0 + + 1373 + Groncicle03T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_SnowField</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Look at that! Our frosty pal seems much happier now that we're here. If we search around, we could probably find other Groncicles--maybe even a nest! Unless he's the only one of his kind... Like Toothless. @@ Well, it's too early to give up hope. I'm sure we'll find more of his kind. +First, we should build him a small nest so that he's comfortable. How about that snow field over there?</Text><ID>923480</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>On second thought, this snow field is pretty exposed. There's no protection from the icy wind coming in from the sea.</Text><ID>923481</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnowField</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for a nesting spot on the island</Text><ID>923478</ID></Title><Desc><Text>Find a safe place to build a nest for the baby Groncicle</Text><ID>941476</ID></Desc></Data> + 0 + false + + + 1374 + Groncicle03T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_NestingSite</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That wooded area over there might be a better spot for a nest. Lead the way!</Text><ID>923484</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This spot is perfect. Trees provide shelter for many creatures, including dragons. No sight of other dragons yet. We'll keep our eyes peeled. In the meantime, let's make him a cozy nest.</Text><ID>923485</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NestingSite</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a sheltered spot for the nest</Text><ID>923482</ID></Title><Desc><Text>The snow field is too exposed. Find a more sheltered spot to build the baby Groncicle's nest</Text><ID>941477</ID></Desc></Data> + 0 + false + + + 1375 + Groncicle03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>He seems to like soft snow, so let's build his nest out of the fresh snow from the tree branches instead of the hard-packed snow on the ground. Try hitting that tree with your axe to knock some of the snow off its branches.</Text><ID>923488</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect!</Text><ID>922915</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTreeArctic</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSnowPile</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>{{Input}} on the tree and knock snow off of its branches</Text><ID>923486</ID></Title><Desc><Text>Hit the tree with your axe to knock the snow off its branches</Text><ID>941478</ID></Desc></Data> + 0 + false + + + 1376 + Groncicle03T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_NestingSite</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now bring the snow to the spot we picked out. We'll make a nice nest for him.</Text><ID>923492</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It looks great, {{Name}}!</Text><ID>923493</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NestingSite</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Bring snow to make the nest</Text><ID>923490</ID></Title><Desc><Text>Build a small nest out of snow for the baby Groncicle</Text><ID>941479</ID></Desc></Data> + 0 + false + + + 1716 + Groncicle03T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle03T05.unity3d/PfGrpArcticGroncicle03T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>He obviously loves his new nest. Good work! Come back to camp and talk to me, {{Name}}.</Text><ID>926103</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Don't worry, he'll be more comfortable away from the warm campfires. Just remember to visit him every once in a while. Toothless and I will keep an eye on him too. Thanks for the help!</Text><ID>926104</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup about the Groncicle's new nest</Text><ID>941480</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 202710 + true + 75 + 75 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202710 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202710 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202710 + true + 50 + 50 + + 0 + +
+ false +
+ + 1608 + Arctic_Groncicle05 + 23 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Delicious Diet</Text><ID>923562</ID></Title><Desc><Text>The baby Groncicle is hungry and needs to be fed arctic fish.</Text><ID>923563</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1607 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1608 + 1381 + 0 + + + 1 + 1608 + 1382 + 0 + + + 1 + 1608 + 1383 + 0 + + + + 1 + 202711 + 0 + + 1381 + Groncicle05T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_FishingGroncicle</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The Groncicle looks hungry. There should be a fishing hole nearby.</Text><ID>923569</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestArcticExpansion.unity3d/SndDragBabyStomach</Asset><NPC>PfDWGroncicleNPC</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>Since the arctic is the Groncicle's natural habitat, his main diet probably consists of arctic fish.</Text><ID>923570</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishingGroncicle</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a fishing hole</Text><ID>923567</ID></Title><Desc><Text>The baby Groncicle is hungry and needs to be fed arctic fish. Find a fishing hole nearby</Text><ID>941484</ID></Desc></Data> + 0 + false + + + 1382 + Groncicle05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>One large Arctic Char should do nicely.</Text><ID>923573</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The baby Groncicle loves the Arctic Char.</Text><ID>923574</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>10984</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Char</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Feed 1 Arctic Char to the baby Groncicle</Text><ID>923571</ID></Title><Desc><Text>Feed 1 Arctic Char to the baby Groncicle</Text><ID>923571</ID></Desc></Data> + 0 + false + + + 1383 + Groncicle05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The baby Groncicle is not hungry anymore, but now he looks bored. Give him 1 dragon nip to keep him entertained.</Text><ID>925964</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The baby Groncicle loves the dragon nip. He's happy and full. It seems Groncicles like dragon nip like most other dragons; he didn't take to it at the School because he wanted to be back in his natural habitat.</Text><ID>926111</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 1 Dragon Nip to the baby Groncicle</Text><ID>923575</ID></Title><Desc><Text>Give 1 Dragon Nip to the baby Groncicle</Text><ID>923575</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202711 + true + 50 + 50 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202711 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202711 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202711 + true + 50 + 50 + + 0 + +
+ false +
+ + 1611 + Arctic_SpeedStinger01 + 34 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger01T00.unity3d/PfGrpArcticSpeedStinger01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Dragon Mystery</Text><ID>925974</ID></Title><Desc><Text>SpeedStinger footprints in snow</Text><ID>925975</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1624 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1611 + 1384 + 0 + + + 1 + 1611 + 1385 + 0 + + + 1 + 1611 + 1386 + 0 + + + 1 + 1611 + 1387 + 0 + + + + 1 + 202713 + 0 + + 1384 + SpeedStinger01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfFootprints</NPC><Text>You notice mysterious footprints in the snow. Where do they go?</Text><ID>923580</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{dragon name}} sniffs the air uneasily.</Text><ID>923581</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GeothermalEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the mysterious footprints</Text><ID>923578</ID></Title><Desc><Text>Follow the mysterious footprints</Text><ID>941612</ID></Desc></Data> + 0 + false + + + 1385 + SpeedStinger01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The footprints lead further into the woods.</Text><ID>923584</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>A pack of Speed Stingers! They don't look happy with you and {{dragon name}}.</Text><ID>923585</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the footprints</Text><ID>923582</ID></Title><Desc><Text>Follow the footprints further into the woods</Text><ID>941613</ID></Desc></Data> + 0 + false + + + 1386 + SpeedStinger01T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWSpeedStingerNPC</Asset><Location>PfMarker_SpeedStingerStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfPlayer</NPC><Text>The Speed Stingers aren't backing down. Escape them by not letting them get too close to you as you run away!</Text><ID>923588</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That was a close call!</Text><ID>923589</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>15</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>1</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpeedStingerNPC</Value></Pair></Objective><Type>Chase</Type><Title><Text>Escape from the Speed Stinger!</Text><ID>923586</ID></Title><Desc><Text>Run away from the Speed Stinger that chases you</Text><ID>941614</ID></Desc><Reminder><Text>Get away from the Speed Stinger!</Text><ID>936230</ID></Reminder><Failure><Text>Oh no! The Speed Stinger caught you!</Text><ID>936231</ID></Failure></Data> + 0 + false + + + 1387 + SpeedStinger01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hiccup needs to know about the dangerous Speed Stinger pack.</Text><ID>923592</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Speed Stingers here in the arctic? That's amazing! I've encountered Speed Stingers before. Their stings can cause temporary paralysis that can take hours to wear off. @@ We'll have to be more careful when we go back to study the pack. Now that you have experience with Speed Stingers, you can get up real close to observe them. It's the perfect opportunity to expand our knowledge on these dragons!</Text><ID>923593</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Tell Hiccup about the Speed Stingers</Text><ID>941615</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202713 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202713 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202713 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202713 + true + 50 + 50 + + 0 + +
+ false +
+ + 1612 + Arctic_Mildew01 + 24 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Return of Mildew!</Text><ID>923605</ID></Title><Desc><Text>You've found Mildew in the Arctic.</Text><ID>923606</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1615 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1612 + 1388 + 0 + + + 1 + 1612 + 1389 + 0 + + + 1 + 1612 + 1390 + 0 + + + 1 + 1612 + 1391 + 0 + + + + 1 + 202720 + 0 + + 1388 + Mildew01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Ah! How did you find us? Fungus and I moved all the way out here in this frozen wasteland so I wouldn't have to deal with these awful dragons! And here they are, bothering me once again. I found this island first, and I don't want any dragons here! That includes your stupid {{dragon name}}. @@ Look! My poor sheep Fungus is scared of your dragon. It's your fault! {{Input}} on him and try to calm him down.</Text><ID>923672</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Hmph. Fungus seems to like you. He doesn't react like this with anyone.</Text><ID>923673</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFungus</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Fungus</Text><ID>923670</ID></Title><Desc><Text>{{Input}} on Fungus, the sheep standing next to Mildew</Text><ID>941509</ID></Desc></Data> + 0 + false + + + 1389 + Mildew01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I guess I can trust you if Fungus does. He's never led me astray before. I suppose I'll let you help me. @@ This island gets very cold and it's terrible on my old bones. And poor Fungus! He can barely sleep at night. I want you to build a fire. You can start by gathering 4 wood logs from the trees by my house.</Text><ID>923676</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Good! Looks like you remember how to do things instead of relying on your dragon all the time. Vikings these days have forgotten how to do some honest work, not like in my day!</Text><ID>923677</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_MildewTrees</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop 4 wood logs from the trees</Text><ID>923674</ID></Title><Desc><Text>Gather 4 wood logs by using the Chop action on trees in Icestorm Island</Text><ID>941510</ID></Desc></Data> + 0 + false + + + 1390 + Mildew01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Bring the wood back to me.</Text><ID>923680</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Well, those logs aren't the worst I've ever seen. I guess they’ll do the job.</Text><ID>923681</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the wood to Mildew</Text><ID>923678</ID></Title><Desc><Text>Bring the wood to Mildew in Icestorm Island</Text><ID>941511</ID></Desc></Data> + 0 + false + + + 1391 + Mildew01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I'll put it in the campfire here. Start the fire for me, {{Name}}. {{Input}} on the rock and use your axe to make sparks!</Text><ID>923684</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Doesn't it feel good to accomplish things without relying on your dragon? Maybe there's some hope for you after all.</Text><ID>923685</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfFirePitMildew</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfFirePitMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the rock and start a fire</Text><ID>923682</ID></Title><Desc><Text>{{Input}} on the rock by Mildew and start a fire</Text><ID>941512</ID></Desc></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 202720 + true + 150 + 150 + + 0 + + + + 600 +

1

+ 0 + + 1 + 541 + 202720 + true + 600 + 600 + + 0 + +
+ false +
+ + 1613 + Arctic_SpeedStinger06 + 24 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Frozen Fungus</Text><ID>923952</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1658 + 0 + false + + + 3 + 1614 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1613 + 1392 + 0 + + + 1 + 1613 + 1393 + 0 + + + 1 + 1613 + 1394 + 0 + + + 1 + 1613 + 1395 + 0 + + + 1 + 1613 + 1396 + 0 + + + + 1 + 202758 + 0 + + 1392 + SpeedStinger06T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger06T01.unity3d/PfGrpArcticSpeedStinger06T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Horrible dragons! How could they do such a thing to my poor sheep? My poor Fungus can't move--he's as stiff as a board! @@ I found him lying on the ground over there. Figure out what happened so you can fix what your dragons have done.</Text><ID>923897</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>A dragon claw! See? I told you it was those blasted dragons.</Text><ID>923898</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSpeedStingerTalon</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find out what happened to Fungus</Text><ID>923895</ID></Title><Desc><Text>Find the dragon claw at Icestorm Island</Text><ID>941637</ID></Desc></Data> + 0 + false + + + 1393 + SpeedStinger06T02 + <Data><Offer><Type>Popup</Type><Asset> PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I wouldn't know what kind of dragon that claw belongs to. They're all the same to me. Ask Hiccup and then find me a cure. Quickly!</Text><ID>923901</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset> PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh boy... Mildew's worked up again? What is he yelling about this time?</Text><ID>923902</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1394 + SpeedStinger06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Incredible! This claw belongs to a Speed Stinger. I'm still trying to learn more about them. They are known to paralyze prey with their poisonous barbed tails. Speed Stingers can paralyze a human, dragon, or sheep with just one sting. The paralysis wears off eventually, but it could take hours or even days. @@ Talk to the Botanist about finding a way to speed up Fungus' recovery. Anti-paralysis medicine could come in handy in the future, especially if we're going to live alongside the Speed Stingers.</Text><ID>923905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>There is no immediate cure for a Speed Stinger's sting, but there is a way to speed up the healing process.</Text><ID>923906</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist at the Lookout</Text><ID>923150</ID></Title><Desc><Text>Talk to Phlegma at the Lookout</Text><ID>920750</ID></Desc></Data> + 0 + false + + + 1395 + SpeedStinger06T04 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger06T04.unity3d/PfGrpArcticSpeedStinger06T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>There are plants that have natural muscle-relaxing properties that can help. Please fetch me a Skullcap plant and a Lobelia plant from the Wilderness.</Text><ID>923909</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Those are correct. Well done!</Text><ID>923910</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFlower</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Skullcap and Lobelia plants in the Wilderness</Text><ID>923907</ID></Title><Desc><Text>Find the Skullcap and Lobelia plants in the Wilderness</Text><ID>923907</ID></Desc></Data> + 0 + false + + + 1396 + SpeedStinger06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Now we need to mix these plants together to make the medicine. Take them to the lab and talk to Heather.</Text><ID>923913</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Giving medicine to a paralyzed sheep is not easy. We need to find some way to get the sheep to eat the medicine. Let me think about this for a minute...</Text><ID>923914</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>11176</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Heather by the Lab</Text><ID>923911</ID></Title><Desc><Text>Talk to Heather by the Lab</Text><ID>923911</ID></Desc></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 202758 + true + 200 + 200 + + 0 + + + + 400 +

1

+ 0 + + 1 + 418 + 202758 + true + 400 + 400 + + 0 + +
+ false +
+ + 1614 + Arctic_Mildew02 + 24 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Where's My Beloved Friend?</Text><ID>923935</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1612 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1614 + 1397 + 0 + + + 1 + 1614 + 1399 + 0 + + + 1 + 1614 + 1400 + 0 + + + 1 + 1614 + 1401 + 0 + + + + 1 + 202759 + 0 + + 1397 + Mildew02T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew02T01.unity3d/PfGrpArcticMildew02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWFungus</Asset><Location>PfMarker_FungusLost</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Those demons! What did your dragons do to my precious Fungus? I can't find him anywhere! If Fungus isn't returned to me soon, I'll take it up with all of Berk. I demand that you find him at once!</Text><ID>923688</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>That's Fungus's wool! I would recognize it anywhere.</Text><ID>923689</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectWoolWhiteDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Search for Fungus or a clue to his location</Text><ID>923686</ID></Title><Desc><Text>Find a tuft of Fungus' wool at Icestorm Island</Text><ID>941513</ID></Desc></Data> + 0 + false + + + 1399 + Mildew02T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew02T03.unity3d/PfGrpArcticMildew02T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWFungus</Asset><Location>PfMarker_FungusLost</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Keep looking for clues. Hurry! His little hooves are probably frozen by now.</Text><ID>923696</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>More wool. My Fungus must be close by.</Text><ID>923697</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectWoolWhiteDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find another clue to Fungus's whereabouts</Text><ID>923694</ID></Title><Desc><Text>Find another tuft of Fungus's wool</Text><ID>941514</ID></Desc></Data> + 0 + false + + + 1400 + Mildew02T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWFungus</Asset><Location>PfMarker_FungusLost</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Look around for him. He can't be far from here!</Text><ID>923700</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Fungus seems safe and calm. He must have wandered off while grazing.</Text><ID>923701</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FungusLost</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for another clue</Text><ID>923698</ID></Title><Desc><Text>Find Fungus at the summit of Icestorm Island</Text><ID>941515</ID></Desc></Data> + 0 + false + + + 1401 + Mildew02T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWFungus</Asset><Location>PfMarker_FungusLost</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Those terrible dragons must have chased him into the woods. He's probably in shock. Bring him home quickly!</Text><ID>923704</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Don't worry, Fungus. I won't let those demons scare you off again. @@ Why are you still here, dragon trainer? Go on, take your horrible pet elsewhere!</Text><ID>923705</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MildewHouse</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFungus</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Fungus and lead him to Mildew</Text><ID>923702</ID></Title><Desc><Text>{{Input}} on Fungus to lead him back to Mildew's Hut</Text><ID>941516</ID></Desc><Reminder><Text>Don't leave Fungus behind!</Text><ID>936216</ID></Reminder><Failure><Text>Oh no! Where's Fungus?</Text><ID>936217</ID></Failure></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 202759 + true + 150 + 150 + + 0 + + + + 500 +

1

+ 0 + + 1 + 518 + 202759 + true + 500 + 500 + + 0 + +
+ false +
+ + 1615 + Arctic_Ruins02 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Settling In</Text><ID>923947</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1617 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1615 + 1402 + 0 + + + 2 + 1615 + 1616 + 0 + + + 1 + 1615 + 1404 + 0 + + + 1 + 1615 + 1406 + 0 + + + + 1 + 202760 + 0 + + 1616 + Ruins02T02 + 4 +

1615

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Speak to Stoick</Text><ID>923946</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1616 + 1403 + 0 + + + + 1 + 202780 + 0 + + 1403 + Ruins02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Please tell Valka the good news and ask her if she thinks we should devote some of the clan's resources to building a new expansion of the school.</Text><ID>923787</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>A new island sounds like an amazing opportunity to find new dragons. Of course, we should expand the school.</Text><ID>923788</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka in New Berk</Text><ID>923785</ID></Title><Desc><Text>Talk to Valka in New Berk</Text><ID>941332</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11134 + + 1 + 1928 + 202780 + true + 1 + 1 + + 0 + +
+ false + + + 1402 + Ruins02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We have to tell the others about our discovery. Go back to the school and speak with the Headmaster. He'll be excited to spread the news!</Text><ID>923791</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>You ran into the Archaeologist on an arctic island? Yes, I remember when he used to live on Berk. He left years ago to explore distant lands. I'm glad to hear he is doing well and helping you explore this exciting new land! @@ We should build a small expansion of the school there to study the arctic environment. Knowledge is gained by exploring the unknown.</Text><ID>923792</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report to the Headmaster</Text><ID>923789</ID></Title><Desc><Text>Talk to the Headmaster at the School</Text><ID>925741</ID></Desc></Data> + 0 + false + + + 1404 + Ruins02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Take these building supplies and deliver them to Gobber. He should be in charge of constructing the buildings.</Text><ID>923795</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>We're expanding the school? This is right up my alley! I've got so many great ideas, I hardly know where to start. +We're going to need more building supplies than that!</Text><ID>923796</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber in Berk</Text><ID>924674</ID></Desc></Data> + 0 + false + + + 1406 + Ruins02T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberArcticCamp</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Tell you what, {{greeting}}, you take those building supplies and fly to the arctic island. I'll load up Stokehead with more supplies, and then we'll meet you there. @@ Once we land, you can give me the building supplies. Let's get going! I can hardly wait.</Text><ID>923799</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Thanks, {{greeting}}. Don't worry. The dorms will be built faster than you can say yak milk stew! +Well, maybe not that fast... but close!</Text><ID>923800</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>11134</Value></Pair><Pair><Key>ItemDescription</Key><Value>Building Stones</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the supplies to Gobber in the Arctic</Text><ID>923797</ID></Title><Desc><Text>Deliver the building supplies to Gobber in the Arctic</Text><ID>941592</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202760 + true + 300 + 300 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 202760 + true + 70 + 70 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202760 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202760 + true + 50 + 50 + + 0 + +
+ false +
+ + 1617 + Arctic_Archaeologist01 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Fellow Explorers</Text><ID>923931</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1657 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1617 + 1405 + 0 + + + 1 + 1617 + 1407 + 0 + + + 1 + 1617 + 1411 + 0 + + + 1 + 1617 + 1413 + 0 + + + + 1 + 202761 + 0 + + 1405 + Archaeologist01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I was hardly cold inside the igloo. That was a great idea to make that with you, {{Name}}. +Hey, who is that friendly-looking fellow? Maybe he's the one who owns this camp.</Text><ID>923609</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hello there! I was wondering who built an igloo in the middle of my camp. Pleased to meet you! @@ Actually, I could really use your help. These dragons appeared in my camp out of nowhere! I would shoo them away myself, but I don't have any weapons with me...</Text><ID>923610</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the stranger</Text><ID>923607</ID></Title><Desc><Text>{{Input}} on the stranger located in the camp</Text><ID>941449</ID></Desc></Data> + 0 + false + + + 1407 + Archaeologist01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's okay, these dragons are our friends. They don't mean any harm. A lot of things have changed in Berk over the years! +{{Name}}, show him that he has nothing to worry about. Can you ask {{dragon name}} to light that fire pit for us?</Text><ID>923613</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupIdle04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Trained dragons? Incredible! I've never seen such a thing. I don't mean to offend, but I'd still rather not get too close to them. Though I suppose exploring this inhospitable place would be so much easier with a dragon...</Text><ID>923614</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonLitFirePit</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonLitFirePit</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Light the fire pit in the camp</Text><ID>923611</ID></Title><Desc><Text>{{Input}} on the fire pit to have your dragon shoot it</Text><ID>941450</ID></Desc></Data> + 0 + false + + + 1411 + Archaeologist01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I've been working alone on this icy island for years. It's such a pleasure to finally have some company. Please, let me share my work with you! {{Input}} on the stone slab on this table.</Text><ID>923617</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Marvelous piece of work, isn't it? It's an ancient rock carving--or in scientific terms--a [c][3eebff]petroglyph[/c][ffffff]. This [c][3eebff]petroglyph[/c][ffffff] depicts a viking civilization that once lived on this desolate isle. @@ As you can see, it's been broken. The other pieces were scattered across the entire island. For years, I've been slowly recovering and putting the missing pieces back together.</Text><ID>923618</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Tablet</Value></Pair><Pair><Key>Name</Key><Value>UseTablet</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the treasure tablet</Text><ID>923615</ID></Title><Desc><Text>{{Input}} the tablet on the table near the Archaeologist</Text><ID>941451</ID></Desc></Data> + 0 + false + + + 1413 + Archaeologist01T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist01T04.unity3d/PfGrpArcticArchaeologist01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I believe this ancient petroglyph holds the answer to finding their legendary treasure. I am always getting closer to the answer, though I am constantly hindered by this insufferable weather. @@ If you could help me get some of this snow off of my things, I'd very much appreciate it.</Text><ID>923621</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wonderful! Thank you so much. Archaeological work will go much faster with you and {{dragon name}}'s help. I would be honored to work alongside you!</Text><ID>923622</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMeltableSnow01</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfMeltableSnow01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Melt the snow pile in the camp</Text><ID>923619</ID></Title><Desc><Text>{{Input}} on the pile of snow in the camp to melt them</Text><ID>941452</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202761 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202761 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202761 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202761 + true + 50 + 50 + + 0 + +
+ false +
+ + 1618 + Arctic_Groncicle06 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Family Ties</Text><ID>923933</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1625 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1618 + 1408 + 0 + + + 1 + 1618 + 1409 + 0 + + + 1 + 1618 + 1410 + 0 + + + 1 + 1618 + 1412 + 0 + + + 1 + 1618 + 1414 + 0 + + + 1 + 1618 + 1415 + 0 + + + + 1 + 202762 + 0 + + 1408 + Groncicle06T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle06T01.unity3d/PfGrpArcticGroncicle06T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>PfMarker_NestingSite</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You found an ancient city in the caves? Wow! That's amazing. I want to see this too! @@ Oh, I nearly forgot. I visited our little Groncicle buddy and he looked a little restless. He likes you a lot, {{Name}}. Could you go keep an eye on him? {{Input}} on him to let him wander around but don't let him out of your sight!</Text><ID>923625</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Our little buddy wants to explore the Ice Caves. Maybe he wants to see the city too!</Text><ID>923626</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker19</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Spline</Key><Value>PfGrpArcticGroncicle06T01</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Groncicle and follow him where he goes</Text><ID>923623</ID></Title><Desc><Text>{{Input}} on the Groncicle and follow him to the entrance of the ice caves</Text><ID>941487</ID></Desc><Reminder><Text>Follow the Groncicle!</Text><ID>936210</ID></Reminder><Failure><Text>Oh no! You failed the task!</Text><ID>936211</ID></Failure></Data> + 0 + false + + + 1409 + Groncicle06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, he shouldn't go alone. Go into the Ice Caves with him {{Name}}.</Text><ID>923629</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Ice Caves</Text><ID>926408</ID></Title><Desc><Text>Enter the Ice Caves with the baby Groncicle</Text><ID>941488</ID></Desc></Data> + 0 + false + + + 1410 + Groncicle06T03 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle06T03.unity3d/PfGrpArcticGroncicle06T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>PfMarker_Entrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>His nose is leading him somewhere... Could he be following another dragon's scent trail? Whatever he's tracking, he sure is excited about it! @@ {{Input}} on the baby Groncicle to keep following him.</Text><ID>923632</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A family of Groncicles! They must live here in the Ice Caves. What an amazing discovery! Now we can see Groncicles in their natural habitat and learn about how they uniquely function as a dragon species.</Text><ID>923633</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker10</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Spline</Key><Value>PfGrpArcticGroncicle06T03</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow the Groncicle</Text><ID>923630</ID></Title><Desc><Text>Follow the baby Groncicle to the Groncicle Nest</Text><ID>941489</ID></Desc><Reminder><Text>Get closer to the Groncicle!</Text><ID>936212</ID></Reminder><Failure><Text>Oh no! The Groncicle left you behind!</Text><ID>936213</ID></Failure></Data> + 0 + false + + + 1412 + Groncicle06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Look at how they've constructed their nest. It's different than any other dragon nest I've seen. Walk over to the other side of their nest to get a closer look.</Text><ID>923636</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It looks like the Groncicles collect soft snow and use it to pad their nest. They must have eaten the snow to generate their ice breath to build the strong structure. This nest-building behavior seems to be unique to their species.</Text><ID>923637</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GroncicleNest</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the pile of snow</Text><ID>923634</ID></Title><Desc><Text>Go to the pile of snow on the other side of the nest</Text><ID>941490</ID></Desc></Data> + 0 + false + + + 1414 + Groncicle06T05 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle06T05.unity3d/PfGrpArcticGroncicle06T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, the Groncicles are really comfortable around you, {{Name}}! It seems like the Groncicles are a peaceful, non-aggressive dragon species--a distinct behavioral trait. They're much friendlier than Monstrous Nightmares or Speed Stingers. @@ Go ahead, try petting one of the adults. {{Input}} on the adult Groncicle to interact with it.</Text><ID>923640</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Aw, I guess Groncicles are just big softies! Along with behavioral traits, the Groncicles have physical traits, or characteristics, that also distinguish them as a species. @@ Notice how the baby Groncicle shares many of the same physical traits as the adult Groncicles? That's because traits are passed down from parents to their offspring.</Text><ID>923641</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGroncicle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on an adult Groncicle</Text><ID>923638</ID></Title><Desc><Text>{{Input}} on an adult Groncicle to pet it</Text><ID>941491</ID></Desc></Data> + 0 + false + + + 1415 + Groncicle06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Some examples of inheritable traits in dragons are wingspan, tail length, markings, and body color. Dragon trainers want to understand all there is to know about dragons. Come find me and we'll test your dragon knowledge.</Text><ID>923644</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're doing great, {{Name}}! I'm glad you helped our little buddy find his long-lost family. +I only hope we can do the same for Toothless. Someday...</Text><ID>923645</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupToothless01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizArcticGroncicle06T06.unity3d/PfUiQuizArcticGroncicle06T06</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup and answer his quiz</Text><ID>923642</ID></Title><Desc><Text>{{Input}} on Hiccup and answer his question</Text><ID>941492</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202762 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202762 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202762 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202762 + true + 200 + 200 + + 0 + +
+ false +
+ + 1619 + Arctic_Groncicle07 + 23 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Fixing Mildew's Mess</Text><ID>923934</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1623 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1619 + 1416 + 0 + + + 1 + 1619 + 1418 + 0 + + + 1 + 1619 + 1420 + 0 + + + 1 + 1619 + 1421 + 0 + + + 2 + 1619 + 1686 + 0 + + + 1 + 1619 + 1419 + 0 + + + + 1 + 202763 + 0 + + 1686 + Groncicle07T05 + 23 +

1619

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>{{Input}} on the Groncicle</Text><ID>926013</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1686 + 1697 + 0 + + + + 1 + 202924 + 0 + + 1697 + Groncicle07T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The Groncicle is eager to be with his dragon trainer. {{Input}} on the dragon to train him.</Text><ID>926120</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the Groncicle</Text><ID>926013</ID></Title><Desc><Text>{{Input}} on the Groncicle to train him</Text><ID>941493</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11136 + + 1 + 1946 + 202924 + true + 1 + 1 + + 0 + +
+ false + + + 1416 + Groncicle07T01 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle07T01.unity3d/PfGrpArcticGroncicle07T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The Groncicles are slowly rebuilding their nest. They could use your help gathering snow to make the ice for their nest. Find a pile of fresh snow.</Text><ID>923648</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSnowPile</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find snow to rebuild the nest</Text><ID>923646</ID></Title><Desc><Text>Find a pile of fresh snow to bring to the nest</Text><ID>941494</ID></Desc></Data> + 0 + false + + + 1418 + Groncicle07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>Because the Groncicles have been busy rebuilding their nest, they haven't had time to fish for food. @@ Three large arctic char would be a filling meal for the Groncicle family. You should fish them and give them to the Groncicle.</Text><ID>923656</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestArcticExpansion.unity3d/SndDragBabyStomach</Asset><NPC>PfDWGroncicleNPC</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>They seem grateful for the help.</Text><ID>923657</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>10984</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Char</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the Groncicle 3 Arctic Char</Text><ID>923654</ID></Title><Desc><Text>Bring 3 Arctic Char to the Groncicles to feed them</Text><ID>941495</ID></Desc></Data> + 0 + false + + + 1419 + Groncicle07T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>The Groncicle is ready to rebuild his nest! He nods at you excitedly. You should bring him out as your dragon, {{input}} on the nest, and shoot an iceball at it.</Text><ID>923660</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGroncicleNPC</NPC><Text>You've repaired the damage that Mildew has done to the nest and restored the trust between the Vikings and the Groncicle family. {{dragon name}} is eager to follow his new dragon trainer.</Text><ID>923661</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GroncicleNest</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfGroncicleNestDestTargetable_ArcticINT</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the destroyed nest and fire your Groncicle's iceball</Text><ID>923658</ID></Title><Desc><Text>{{Input}} on the destroyed nest and fire your Groncicle's iceball</Text><ID>923658</ID></Desc></Data> + 0 + false + + + 1420 + Groncicle07T03 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle07T04.unity3d/PfGrpArcticGroncicle07T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The nest needs to be strengthened using the Groncicle's ice 'fireballs'. @@ The Groncicle needs to eat more snow to produce ice. Good thing there is plenty of fresh snow around the Ruins!</Text><ID>923664</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Groncicle will turn this snow into strong ice.</Text><ID>923665</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSnowPile</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find snow to feed the Groncicle</Text><ID>923662</ID></Title><Desc><Text>Bring the snow piles to the Groncicle to feed him</Text><ID>941496</ID></Desc></Data> + 0 + false + + + 1421 + Groncicle07T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Groncicle will turn this snow into strong ice. You should go back to the Groncicle and give the snow to him.</Text><ID>923668</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>11143</Value></Pair><Pair><Key>ItemDescription</Key><Value>Snow Pile</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the snow to the Groncicle</Text><ID>923666</ID></Title><Desc><Text>Bring the snow to the Groncicle</Text><ID>923666</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202763 + true + 60 + 60 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202763 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202763 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202763 + true + 50 + 50 + + 0 + +
+ false +
+ + 1620 + Arctic_Mildew06 + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWFungus</Asset><Location>PfMarker_HiddenCove03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_CavePaintings</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Unwelcome Visitors</Text><ID>923940</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1669 + 0 + false + + + 3 + 1661 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1620 + 1422 + 0 + + + 1 + 1620 + 1423 + 0 + + + 1 + 1620 + 1424 + 0 + + + 1 + 1620 + 1425 + 0 + + + 1 + 1620 + 1426 + 0 + + + 2 + 1620 + 1621 + 0 + + + 1 + 1620 + 1428 + 0 + + + 1 + 1620 + 1429 + 0 + + + 2 + 1620 + 1637 + 0 + + + + 1 + 202764 + 0 + + 1621 + Mildew06T06 + 25 +

1620

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1621 + 1691 + 0 + + + 1 + 1621 + 1427 + 0 + + + + 1 + 202779 + 0 + + 1427 + Mildew06T06 + <Data><Setup><Scene>HubArctic01DO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's see what's inside. Open your backpack and {{input}} on the treasure chest.</Text><ID>923751</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Another clue? Fantastic! Luckily, this is out of the Berserker hands. Who knows what damage they could do?</Text><ID>923752</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11137</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the chest in your backpack</Text><ID>923749</ID></Title><Desc><Text>Open the metal chest in your backpack to get another clue tablet</Text><ID>941527</ID></Desc></Data> + 0 + false + + + 1691 + Mildew06T06a + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Why don't you take the chest to the Archaeologist? It could be important.</Text><ID>926184</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm glad to see you safe, my friend! Oh, what's that?</Text><ID>926185</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Ruins</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist in the Ice Caves</Text><ID>926182</ID></Title><Desc><Text>Meet the Archaeologist in the Ice Caves</Text><ID>941528</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11696 + + 1 + 1978 + 202779 + true + 1 + 1 + + 0 + +
+ false + + + 1637 + Mildew06T09 + 25 +

1620

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Go to the Groncicle Statue in the ruins</Text><ID>923939</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1637 + 1430 + 0 + + + + 1 + 202784 + 0 + + 1430 + Mildew06T09 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticMildew06T09.unity3d/PfGrpArcticMildew06T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Head to the ancient city. Perhaps there is a clue you can find by digging at the spot that's shown on the ancient tablet. Something must be buried there!</Text><ID>923783</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There it is... the last piece of the puzzle!</Text><ID>923784</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWDirtPatch</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWClueTablet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>{{Input}} on the dirt mound at the statue in the Ice Caves</Text><ID>923781</ID></Title><Desc><Text>Go to the ruins in the Ice Caves and {{input}} on the foot of the Groncicle statue</Text><ID>941529</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11191 + + 1 + 1985 + 202784 + true + 1 + 1 + + 0 + +
+ false +
+ + 1422 + Mildew06T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWMildew</Asset><Location>PfMarker_HiddenCove01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew06T01.unity3d/PfGrpArcticMildew06T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}, how nice of you to stop by! I was just speaking to your friend, that Mildew fellow. He was asking me all about the ancient stone map fragments and the possibility of finding artifacts on this island. It's good to see him so inspired by our work! @@ Can you invite him to the Viking ruins? I would love to show him what we've found. Go north from his house! I think I saw him going that way.</Text><ID>923755</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>A Berserker ship! Why is Mildew with the Berserkers? Is he working with them?</Text><ID>923756</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AboveHiddenCove</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Mildew at Icestorm Island</Text><ID>923753</ID></Title><Desc><Text>Find Mildew near the cove at Icestorm Island</Text><ID>941530</ID></Desc></Data> + 0 + false + + + 1423 + Mildew06T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Berserkers may try to steal the ancient tablets and take the artifacts for themselves! You must warn Hiccup immediately.</Text><ID>923759</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What?! Mildew is working with the Berserkers? This is not good, {{Name}}. They'll take the artifacts for themselves and all of our hard-earned work will be wasted. Not to mention, they'll probably wreak havoc in the Ice Caves looking for it.</Text><ID>923760</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at camp</Text><ID>923757</ID></Title><Desc><Text>Talk to Hiccup at the camp in Icestorm Island</Text><ID>924476</ID></Desc></Data> + 0 + false + + + 1424 + Mildew06T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, Toothless and I will scope out the situation at the cove. I need you to warn the Archaeologist. He's in the Ice Caves exploring the ruins. Hurry!</Text><ID>923763</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The Berserkers are here? We used to have peace between Berk and the Berserkers, but ever since Dagur took over they've been a thorn in my side! I need to hide all my research so they don't steal my artifacts... again!</Text><ID>923764</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist in the Ice Caves</Text><ID>926182</ID></Title><Desc><Text>Talk to the Archaeologist in the Ice Caves</Text><ID>926182</ID></Desc></Data> + 0 + false + + + 1425 + Mildew06T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWMildew</Asset><Location>PfMarker_HiddenCove02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiddenCoveHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_HiddenCoveToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}? I'm going to need some help over here. Meet me where the Berserker ship was docked.</Text><ID>923767</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I did not lead the Berserkers to this island, Hiccup. How could you accuse me of such a thing? I'm hurt!</Text><ID>923768</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Mildew and talk to him</Text><ID>923765</ID></Title><Desc><Text>Go to where the Berserker ship was docked to talk to Mildew</Text><ID>941531</ID></Desc></Data> + 0 + false + + + 1426 + Mildew06T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew06T02.unity3d/PfGrpArcticMildew06T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Come on, Mildew. I saw that Berserker ship sailing away. I know you were speaking with them. As soon as they saw me and Toothless, they dropped everything and fled! @@ You know, Mildew… if you truly have nothing to do with the Berserkers, I'm sure you wouldn't mind if we took back what they stole, right? They left that chest in the water during their escape. Could you pick it up, {{Name}}?</Text><ID>923771</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArcticChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the metal chest in the water</Text><ID>923769</ID></Title><Desc><Text>Collect the metal chest floating in the water</Text><ID>941532</ID></Desc></Data> + 0 + false + + + 1428 + Mildew06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We'll need some time to find the last piece of the treasure tablet. Perhaps I am being paranoid, but I fear the Berserkers will return in greater numbers. We don't have much time! @@ Could you look through the telescope and scan the horizon for Berserker ships?</Text><ID>923775</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What a relief! This device is quite useful to us, my friend. We'll need to keep using it to keep an eye out for the Berserkers. We need as much warning as possible before they come back!</Text><ID>923776</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Telescope</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>11137</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>Look through the telescope</Text><ID>921543</ID></Title><Desc><Text>Look through the telescope and scan the horizon for Berserker ships</Text><ID>941533</ID></Desc></Data> + 0 + false + + + 1429 + Mildew06T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's find the last piece of the tablet before we run out of time! Look at the last clue in your backpack.</Text><ID>923779</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That seems familiar. Do you think there's a place in the ruins that looks like that?</Text><ID>923780</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11696</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the tablet.</Text><ID>923777</ID></Title><Desc><Text>Open your backpack and look at the tablet</Text><ID>941534</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 202764 + true + 250 + 250 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 202764 + true + 70 + 70 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202764 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202764 + true + 50 + 50 + + 0 + +
+ false +
+ + 1622 + Arctic_Mildew04 + 24 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew04T00.unity3d/PfGrpArcticMildew04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dirty, Rotten Thieves</Text><ID>924688</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1618 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1622 + 1431 + 0 + + + 1 + 1622 + 1432 + 0 + + + 1 + 1622 + 1433 + 0 + + + 1 + 1622 + 1434 + 0 + + + 1 + 1622 + 1435 + 0 + + + + 1 + 202765 + 0 + + 1431 + Mildew04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>What did I tell you? Dragons are untrustworthy creatures. They'd take your dinner straight off your plate. What miserable things! @@ Don't act like you don't know what I mean, {{Name}}. Some dragons had a little feast in my cabbage patch. Their bite marks are all over my cabbages! How am I supposed to eat now? Go on. Tell Hiccup about this insult. He better fix this for me, right away!</Text><ID>923708</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Cabbages? Well, I guess some undiscovered dragon could potentially like cabbages, but it's not really a favorite dish for most dragons.</Text><ID>923709</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find and talk to Hiccup</Text><ID>923706</ID></Title><Desc><Text>Find Hiccup near camp on Icestorm Island and talk to him.</Text><ID>926170</ID></Desc></Data> + 0 + false + + + 1432 + Mildew04T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew04T04.unity3d/PfGrpArcticMildew04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I bet that it wasn't dragons at all. There might be something else going on. Go back to Mildew's farm and look for clues, {{Name}}.</Text><ID>923712</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Interesting! Are those arctic hares tracks? They must be nibbling on Mildew's food!</Text><ID>923713</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron19</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MildewHares</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the cabbage patch</Text><ID>923710</ID></Title><Desc><Text>Search for clues around cabbage patch near Mildew's house. </Text><ID>926171</ID></Desc></Data> + 0 + false + + + 1433 + Mildew04T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew04T04.unity3d/PfGrpArcticMildew04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's no wonder that Mildew didn't spot them. Arctic hares rely on being hidden from predators to survive, using a technique called camouflage. @@ Camouflage is a defense or tactic to hide or conceal a person, animal, or thing with their natural surroundings. Organisms use camouflage to hide their movement, identity, and location. This allows a prey to avoid predators, and for predators to sneak up on a prey. @@ Maybe you can get a little bit closer and take a good look at their fur. Move really slowly or you'll spook them!</Text><ID>923716</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, it's no surprise they run away when we get closer. They have white fur to camouflage themselves in the snow, but when predators spot them they need to get away!</Text><ID>923717</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MildewTrees</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Arctic Hare</Text><ID>923714</ID></Title><Desc><Text>Walk towards the white hares near Mildew's cabbage patch</Text><ID>941524</ID></Desc></Data> + 0 + false + + + 1434 + Mildew04T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_MildewStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should tell Mildew about the hares eating his cabbages.</Text><ID>923720</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Bah! I've been a farmer for many years, {{Name}}, and there isn't a rabbit out there that can get to my cabbages without me seeing them. They're brown, they're ugly, and they're almost as bad as dragons!</Text><ID>923721</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Mildew about the arctic hares</Text><ID>923718</ID></Title><Desc><Text>{{Input}} on Mildew to tell him about the animals</Text><ID>941525</ID></Desc></Data> + 0 + false + + + 1435 + Mildew04T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_MildewStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Camouflage? I've never heard of it. @@ Don't expect me to take you at your word, {{Name}}. Catch me one of these rabbits while I'm watching, or show me that they've been here. {{Input}} on me before you go. I want to see this with my own eyes.</Text><ID>923724</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Well, {{Name}}. I owe you an apology. Those are definitely rabbit tracks. Don't expect me to be nicer to your dragons though! If the hares didn't get to them first, your dragon would have. I'm sure of it!</Text><ID>923725</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MildewTrees</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Mildew and show him the footprints</Text><ID>923722</ID></Title><Desc><Text>{{Input}} on Mildew and escort him to the cabbage patch so he can see the footprints for himself</Text><ID>941526</ID></Desc><Reminder><Text>Don't leave Mildew behind!</Text><ID>936218</ID></Reminder><Failure><Text>Oh no! You left Mildew behind!</Text><ID>936219</ID></Failure></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 202765 + true + 200 + 200 + + 0 + + + + 400 +

1

+ 0 + + 1 + 418 + 202765 + true + 400 + 400 + + 0 + +
+ false +
+ + 1623 + Arctic_Mildew05 + 26 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWMildew</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFungus</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticMildew05T00.unity3d/PfGrpArcticMildew05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Trail of Destruction</Text><ID>923937</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1660 + 0 + false + + + 3 + 1618 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1623 + 1436 + 0 + + + 1 + 1623 + 1437 + 0 + + + 1 + 1623 + 1438 + 0 + + + 1 + 1623 + 1439 + 0 + + + 1 + 1623 + 1440 + 0 + + + 1 + 1623 + 1441 + 0 + + + + 1 + 202766 + 0 + + 1436 + Mildew05T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew05T01.unity3d/PfGrpArcticMildew05T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfBrokenTree</NPC><Text>These saplings have been destroyed recently. Follow the trail of broken trees to find who did this.</Text><ID>923728</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceCaveEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the trail of destroyed trees</Text><ID>923726</ID></Title><Desc><Text>Follow the trampled trees at Icestorm Island. </Text><ID>926175</ID></Desc></Data> + 0 + false + + + 1437 + Mildew05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The trail of destruction leads into the Ice Caves. Who would do such a thing? Follow the trail to solve the mystery.</Text><ID>923731</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It's the baby Groncicle you rescued. He's grown up!</Text><ID>923732</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Ice Caves</Text><ID>926408</ID></Title><Desc><Text>Walk into the Ice Caves at Icestorm Island to see what is inside. </Text><ID>926176</ID></Desc></Data> + 0 + false + + + 1438 + Mildew05T03 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle06T03.unity3d/PfGrpArcticGroncicle06T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_MildewNest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWGroncicleNPC</Asset><Location>PfMarker_GroncicleStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Groncicle looks sad and confused. You should follow him.</Text><ID>923735</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Ah, {{Name}}. What a pleasant surprise! Oh, don't worry. I was just leaving. I got what I came here for. It's been an interesting treasure hunt, and I managed to get rid of some pesky neighbors in the process. It's a good day!</Text><ID>923736</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker10</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>Spline</Key><Value>PfGrpArcticGroncicle06T03</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Groncicle and follow him</Text><ID>923733</ID></Title><Desc><Text>Walk further into the Ice Caves and follow the Groncicle.</Text><ID>926177</ID></Desc><Reminder><Text>Keep close to the Groncicle!</Text><ID>936220</ID></Reminder><Failure><Text>Oh no! The Groncicle left you behind!</Text><ID>936213</ID></Failure></Data> + 0 + false + + + 1439 + Mildew05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That sounds ominous. You should talk to Hiccup.</Text><ID>923739</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Mildew destroyed the Groncicle nest and stole their eggs? That's terrible! I wonder if he's done anything else to them. @@ As dragon trainers, it's our duty to protect dragons and their habitats from being destroyed. I'll talk to Mildew and make sure he doesn't try anything like this again. Thanks for looking out for the Groncicles, {{Name}}.</Text><ID>923740</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go tell Hiccup about Mildew</Text><ID>923737</ID></Title><Desc><Text>Go talk to Hiccup at the camp in Icestorm Island.</Text><ID>926178</ID></Desc></Data> + 0 + false + + + 1440 + Mildew05T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew05T05.unity3d/PfGrpArcticMildew05T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you fly around his house with {{dragon name}} and look for anything suspicious? We'll want to check just in case he's done anything to harm the Groncicles.</Text><ID>923743</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Stolen eggs! The Groncicles will be very happy to get these back.</Text><ID>923744</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWGroncicleEgg</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Fly around Mildew's house and the sea to look for clues</Text><ID>923741</ID></Title><Desc><Text>Collect all the Groncicle eggs you can find. </Text><ID>926179</ID></Desc></Data> + 0 + false + + + 1441 + Mildew05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Take the Groncicle eggs back to the Groncicle nest.</Text><ID>923747</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Groncicles are overjoyed to get their eggs back. Great job!</Text><ID>923748</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGroncicleNPC</Value></Pair><Pair><Key>ItemID</Key><Value>10980</Value></Pair><Pair><Key>ItemDescription</Key><Value>Frozen Groncicle Egg</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the eggs to the Groncicles</Text><ID>923745</ID></Title><Desc><Text>Go visit the ice caves to bring back the Groncicle eggs. </Text><ID>927652</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202766 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202766 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202766 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202766 + true + 50 + 50 + + 0 + +
+ false +
+ + 1624 + Arctic_Ruins03 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Lay of the Land</Text><ID>923948</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1615 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 1624 + 1643 + 0 + + + 1 + 1624 + 1443 + 0 + + + 2 + 1624 + 1644 + 0 + + + 1 + 1624 + 1445 + 0 + + + 2 + 1624 + 1645 + 0 + + + 2 + 1624 + 1654 + 0 + + + 1 + 1624 + 1447 + 0 + + + 1 + 1624 + 1698 + 0 + + + 1 + 1624 + 1699 + 0 + + + + 1 + 202767 + 0 + + 1643 + Ruins03T01 + 4 +

1624

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Fly above the camp area</Text><ID>924228</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1643 + 1442 + 0 + + + + 1 + 202786 + 0 + + 1442 + Ruins03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}! How would you like to help me map out the island? Our map might help future explorers, and it's the perfect opportunity to get familiar with our surroundings. @@ Let's start with the area around our camp. Fly above the camp to get a better view.</Text><ID>923803</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Isn't the view great up there? [c][3eebff]Maps are drawn with an aerial view[/c][ffffff]. Being up in the air on a dragon is the best way to determine the shape of the land and the relative location of landmarks.</Text><ID>923804</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AboveCamp</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly above the camp</Text><ID>923801</ID></Title><Desc><Text>Fly your dragon high above the camp in the arctic to survey the area</Text><ID>941593</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 10981 + + 1 + 1742 + 202786 + true + 1 + 1 + + 0 + +
+ false + + + 1644 + Ruins03T03 + 4 +

1624

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Fly above Viking statue</Text><ID>924243</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1644 + 1444 + 0 + + + + 1 + 202787 + 0 + + 1444 + Ruins03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's keep following the shore to the other side of the island. That huge Viking statue over there is a perfect landmark. Fly over the statue so we can survey the area around it.</Text><ID>923811</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Landmarks are recognizable natural or man-made features used for navigation. They stand out from the environment and are usually visible from long distances. @@ For example, this Viking statue and the glacier near camp are both large, unique objects that are easy to spot from a distance. We should definitely include them in our map.</Text><ID>923812</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AboveSnowyViking</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly above the viking statue</Text><ID>923809</ID></Title><Desc><Text>Fly above the viking statue in the arctic</Text><ID>941594</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 10982 + + 1 + 1743 + 202787 + true + 1 + 1 + + 0 + +
+ false +
+ + 1645 + Ruins03T05 + 4 +

1624

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Fly over the center of the island</Text><ID>924244</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1645 + 1446 + 0 + + + + 1 + 202788 + 0 + + 1446 + Ruins03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There must be a quick way to map out the other side of the island... +I know! We can probably map out the rest of the island by flying up higher. @@ Are you feeling brave, {{Name}}? Let's fly high above the center of the island and look down.</Text><ID>923819</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Isn't the view spectacular? Only the most skilled dragon fliers can enjoy these sights!</Text><ID>923820</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AboveIsland</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly over the center of the island</Text><ID>924244</ID></Title><Desc><Text>Fly your dragon over the middle of the Arctic Island</Text><ID>941595</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 10983 + + 1 + 1744 + 202788 + true + 1 + 1 + + 0 + +
+ false +
+ + 1654 + Ruins03T06 + 4 +

1624

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Return to Hiccup</Text><ID>923219</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1654 + 1558 + 0 + + + + 1 + 202795 + 0 + + 1558 + Ruins03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Come back to me and give me the map pieces. I'll glue them together for you!</Text><ID>924344</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Movie</Type><Asset>RS_MOVIES/HiccupMap.ogg</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>10981</Value></Pair><Pair><Key>ItemDescription</Key><Value>First Arctic Map Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>10982</Value></Pair><Pair><Key>ItemDescription</Key><Value>Second Arctic Map Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>10983</Value></Pair><Pair><Key>ItemDescription</Key><Value>Third Arctic Map Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the map pieces to Hiccup</Text><ID>924342</ID></Title><Desc><Text>Give the map pieces to Hiccup</Text><ID>924342</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11002 + + 1 + 1852 + 202795 + true + 1 + 1 + + 0 + +
+ false +
+ + 1443 + Ruins03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great work! Now open your inventory and view the map.</Text><ID>923807</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We only have one piece right now, but we'll keep exploring and glue more pieces together until the map is complete.</Text><ID>923808</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>10981</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the map piece</Text><ID>923813</ID></Title><Desc><Text>{{Input}} on your backpack, then find the map piece in your inventory</Text><ID>941596</ID></Desc></Data> + 0 + false + + + 1445 + Ruins03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Huh? Is that a Viking hut on that cliff? It looks like there's a cabbage patch too, but it doesn't look like anyone's home right now. @@ Well, we can check it out after we're done mapping the island. The second part of the map turned out great! Take a glance at it in your inventory.</Text><ID>923815</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There are many types of maps, but the map we're making is a called a [c][3eebff]physical map[/c][ffffff]. Instead of marking roads or villages, we're drawing out the physical features of the island, like bodies of water, land masses, and landmarks.</Text><ID>923816</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron20</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>10982</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the map piece</Text><ID>923813</ID></Title><Desc><Text>Open your backpack and {{Input}} on the new map piece</Text><ID>941597</ID></Desc></Data> + 0 + false + + + 1447 + Ruins03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All done! Take a look at the completed map in your backpack.</Text><ID>924239</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Looks good! Now that we've mapped out the entire island, we should give it a name. How about Icestorm Island? +Welcome to Icestorm Island, the iciest rock in the arctic sea!</Text><ID>924240</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGoodJob</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11002</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the map</Text><ID>923821</ID></Title><Desc><Text>{{Input}} your backpack to view the map in your inventory</Text><ID>941598</ID></Desc></Data> + 0 + false + + + 1698 + Ruins03T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Did you notice something odd on the way back to the camp? I thought I spotted something interesting. Will you fly back up toward the hill above the camp and look for anything out of the ordinary?</Text><ID>926301</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These are some large footprints. I wonder what sort of dragon could have made this imprint...</Text><ID>926302</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearSpeedStingerWood</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the footprints on the hill</Text><ID>926299</ID></Title><Desc><Text>Fly up to the strange footprints in the hill</Text><ID>941599</ID></Desc></Data> + 0 + false + + + 1699 + Ruins03T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There are more footprints on the other side of the hill. You should investigate.</Text><ID>926305</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What could have caused these footprints?</Text><ID>926306</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Avalanche</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the footprints on the other side of the hill</Text><ID>926303</ID></Title><Desc><Text>Look at the footprints on the other side of the hill</Text><ID>926303</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202767 + true + 50 + 50 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202767 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202767 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202767 + true + 200 + 200 + + 0 + +
+ false +
+ + 1625 + Arctic_SpeedStinger04 + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger04T00.unity3d/PfGrpArcticSpeedStinger04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Hunting the Hunters</Text><ID>923950</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1642 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1625 + 1448 + 0 + + + 1 + 1625 + 1449 + 0 + + + 1 + 1625 + 1450 + 0 + + + 1 + 1625 + 1451 + 0 + + + 1 + 1625 + 1452 + 0 + + + 1 + 1625 + 1453 + 0 + + + + 1 + 202768 + 0 + + 1448 + SpeedStinger04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}! I'm glad you stopped by. I was out digging earlier today when I hit something hidden under the snow with my shovel. It sprang closed and snapped my shovel in half! @@ I jumped back out of fright. I thought it was a dragon lurking under the snow. Then I realized, it wasn't a dragon, it was a dragon trap! Since you're a dragon expert, would you mind taking a look at it?</Text><ID>923845</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>A strange device, isn't it? It's very likely that this trap was set by the same Vikings that built the ancient city.</Text><ID>923846</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Trap</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the trap on the hillside</Text><ID>923843</ID></Title><Desc><Text>Go investigate the ancient trap on the snowy slope near the Speed Stinger area</Text><ID>941625</ID></Desc></Data> + 0 + false + + + 1449 + SpeedStinger04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This trap is very dangerous, and I would bet there are others just like it hidden under the snow. We must disable them before an unwary Viking or dragon sets them off on accident. @@ Look for other traps in the area. Tread carefully!</Text><ID>923849</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This trap was placed close to the Speed Stinger cave. Those cave paintings we found in the ruins revealed that these ancient vikings lived in harmony with the Groncicles, but perhaps the Speed Stingers were seen as a threat.</Text><ID>923850</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GeothermalEntrance</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find other traps near the Speed Stingers</Text><ID>923847</ID></Title><Desc><Text>Go find other traps near the Speed Stinger nest</Text><ID>941626</ID></Desc></Data> + 0 + false + + + 1450 + SpeedStinger04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hiccup mentioned that Speed Stingers are aggressive dragons. I can see why the ancient Vikings did not want them near their city, and yet we should still disengage these traps. It's the right thing to do. @@ Try shooting a fireball at the trap. Maybe you can set it off without getting too close to it.</Text><ID>923853</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well done!</Text><ID>923854</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GeothermalEntrance</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrapSnapperArctic02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the trap and shoot it</Text><ID>923851</ID></Title><Desc><Text>Use your dragon to shoot a fireball at the trap</Text><ID>941627</ID></Desc></Data> + 0 + false + + + 1451 + SpeedStinger04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Are there any more? We need to sweep the area. Look for another trap and disengage it with a fireball.</Text><ID>923857</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Excellent work!</Text><ID>923858</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Trap</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrapSnapperArctic01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Return to the trap, {{input}} it and shoot it</Text><ID>923855</ID></Title><Desc><Text>Find one more trap near the Speed Stinger nest and shoot a fireball at it</Text><ID>941628</ID></Desc></Data> + 0 + false + + + 1452 + SpeedStinger04T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfGrpArcticSpeedStinger04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I think that's all of them. Would you please collect all of the traps for me? Now that they're safe to handle, I'd like to study them!</Text><ID>923861</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fantastic!</Text><ID>923862</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfTrapSnapperClosed</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the disarmed traps</Text><ID>923859</ID></Title><Desc><Text>Collect the disarmed traps</Text><ID>923859</ID></Desc></Data> + 0 + false + + + 1453 + SpeedStinger04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Please bring the traps back to camp.</Text><ID>923865</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you so much for retrieving the traps for me! Now we won't have to worry about anyone hurting themselves while roaming the island.</Text><ID>923866</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11181</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ancient Dragon Trap</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the traps to the Archaeologist</Text><ID>923863</ID></Title><Desc><Text>Bring the traps back to the Archaeologist at the camp</Text><ID>941629</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202768 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202768 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202768 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202768 + true + 50 + 50 + + 0 + +
+ false +
+ + 1626 + Venus01 + 5 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQVenus01T00.unity3d/PfGrpQVenus01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Case of the Lost Sheep</Text><ID>923962</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1085 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1626 + 1469 + 0 + + + 1 + 1626 + 1476 + 0 + + + 1 + 1626 + 1477 + 0 + + + 1 + 1626 + 1478 + 0 + + + 1 + 1626 + 1479 + 0 + + + 1 + 1626 + 1480 + 0 + + + 1 + 1626 + 1481 + 0 + + + 1 + 1626 + 1483 + 0 + + + 1 + 1626 + 1484 + 0 + + + 1 + 1626 + 1488 + 0 + + + + 1 + 202769 + 0 + + 1469 + Venus01T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQVenus01T01.unity3d/PfGrpQVenus01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>My job is to make sure all of the sheep come back to the pens at the end of the day. I put buckets on their heads to make sure that I have them all. I have an extra one, which means I'm missing a sheep! I've looked all around this place but I can't find him. Can you look for clues to figure out where he could be?</Text><ID>923929</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>That looks just like my sheep's bite marks! I'd recognize them anywhere.</Text><ID>923930</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Botanist</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for clues</Text><ID>924204</ID></Title><Desc><Text>Look for clues.</Text><ID>924379</ID></Desc></Data> + 0 + false + + + 1476 + Venus01T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQVenus01T02.unity3d/PfGrpQVenus01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>So, where could the sheep be? Maybe you can follow the eaten bushes to another clue.</Text><ID>924188</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Ah! The droppings are fresh. The sheep must be nearby!</Text><ID>924189</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfSheepPoop</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for more clues</Text><ID>924186</ID></Title><Desc><Text>Look for more clues to find Bucket's sheep.</Text><ID>924375</ID></Desc></Data> + 0 + false + + + 1477 + Venus01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>To the Wilderness! We'll find that sheep soon.</Text><ID>924192</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>What is that? It looks like a plant — it has roots that go down into the ground — but it has jaws? How did the sheep get in its mouth?</Text><ID>924193</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearArctic</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Wilderness and look for the sheep</Text><ID>924190</ID></Title><Desc><Text>Go to the Wilderness to look for the sheep.</Text><ID>924376</ID></Desc></Data> + 0 + false + + + 1478 + Venus01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Well, this is a mystery! Please talk to Phlegma, the Botanist. She'll know how to handle these plants.</Text><ID>924208</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Interesting. You say it's a giant plant but it has an appendage that looks like a mouth? That sounds like a [c][3eebff]Venus Flytrap[/c][ffffff]! It's a very interesting plant that doesn't usually live within the climate of Berk. Plant seeds can get to new islands on the back of an animal, carried through the breeze, or packaged by ship. That must have happened here.</Text><ID>924209</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist in the Lookout</Text><ID>924206</ID></Title><Desc><Text>Talk to the Botanist in the Lookout.</Text><ID>922694</ID></Desc></Data> + 0 + false + + + 1479 + Venus01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The Venus Flytrap is a really special plant with special appendages. If you understand the parts of a normal plant, you'll be able to understand the Venus Flytrap. @@ The [c][3eebff]roots[/c][ffffff] of a plant hold the plant into the soil and takes in nutrients and water needed for growth. The [c][3eebff]stem[/c][ffffff] holds up and supports the plant. The stem carries the nutrients and water from the roots to the leaves.</Text><ID>924212</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBPlantParts01.unity3d/PfUiMissionActionDBPlantParts01</Asset><NPC>PfDWBotanist</NPC><Text>Look at the image!</Text><ID>924213</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the parts of the plant</Text><ID>924210</ID></Title><Desc><Text>Look at the parts of the plant.</Text><ID>924381</ID></Desc></Data> + 0 + false + + + 1480 + Venus01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The [c][3eebff]leaves[/c][ffffff] capture sunlight and use it to make food through a process called [c][3eebff]photosynthesis[/c][ffffff]. +[c][3eebff]Flowers[/c][ffffff] attract pollinators like birds and insects, and are used to make seeds. </Text><ID>932854</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>932958</ID><Asset>RS_DATA/PfUiMissionActionDBPlantParts02.unity3d/PfUiMissionActionDBPlantParts02</Asset><NPC>PfDWBotanist</NPC><Text>Look at the flowers!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>[c][3eebff]Seeds[/c][ffffff] are used to create new plants. The [c][3eebff]fruits[/c][ffffff] provide a covering for seeds.</Text><ID>932855</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932959</ID><Asset>RS_DATA/PfUiMissionActionDBPlantParts03.unity3d/PfUiMissionActionDBPlantParts03</Asset><NPC>PfDWBotanist</NPC><Text>Look at the seeds!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the parts</Text><ID>924214</ID></Title><Desc><Text>Look at more plant parts.</Text><ID>924382</ID></Desc></Data> + 0 + false + + + 1481 + Venus01T07 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_HubArctic01DOExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I want to see this with my own eyes. I'll meet you at the Wilderness!</Text><ID>924196</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>What a beautiful and dangerous plant!</Text><ID>924197</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearArctic</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to the sheep in the Wilderness</Text><ID>924194</ID></Title><Desc><Text>Go back to the sheep in the Wilderness.</Text><ID>924377</ID></Desc></Data> + 0 + false + + + 1483 + Venus01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We’re facing two problems. A Venus Flytrap doesn't reopen its trap until it digests its food. Also, this plant doesn't belong here. It's an invasive species, and it could ruin the ecosystem here if it is allowed to survive. We've seen this plant on Berk before. We let the plants grow then, and it became a really big problem. @@ This is not the best solution, but we should save that sheep right now. We'll try to figure out a better way if this plant problem appears again. You should tell {{dragon name}} to shoot a fireball at it. Let's nip this problem in the bud!</Text><ID>924200</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfVenusFlyTrap</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>VenusFlyTrap</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Venus Flytrap</Text><ID>924198</ID></Title><Desc><Text>Shoot the Venus Flytrap.</Text><ID>924378</ID></Desc></Data> + 0 + false + + + 1484 + Venus01T09 + <Data><Offer><Type>Popup</Type><ID>924203</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Now, grab the sheep safely.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWildernessWhiteSheep</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the sheep</Text><ID>924201</ID></Title><Desc><Text>Grab the sheep.</Text><ID>924202</ID></Desc></Data> + 0 + false + + + 1488 + Venus01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We saved the sheep! Give him back to Bucket, {{Name}}. Hopefully we won't see more of these plants at the island.</Text><ID>924222</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>You're the best! You never let me down. Now all my sheep are happy and safe!</Text><ID>924223</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give the sheep to Bucket</Text><ID>924220</ID></Title><Desc><Text>Give the sheep to Bucket.</Text><ID>924385</ID></Desc></Data> + 0 + false + + + 40 +

2

+ 0 + + 1 + 22 + 202769 + true + 40 + 40 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202769 + true + 250 + 250 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202769 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202769 + true + 200 + 200 + + 0 + +
+ false +
+ + 1628 + Arctic_SpeedStinger05 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Slippery Slope</Text><ID>926018</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1658 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1628 + 1459 + 0 + + + 1 + 1628 + 1460 + 0 + + + 1 + 1628 + 1461 + 0 + + + 1 + 1628 + 1462 + 0 + + + 1 + 1628 + 1463 + 0 + + + 1 + 1628 + 1464 + 0 + + + 1 + 1628 + 1465 + 0 + + + 1 + 1628 + 1694 + 0 + + + + 1 + 202771 + 0 + + 1459 + SpeedStinger05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Have you seen that long, narrow tunnel in the Ice Caves? @@I'd like to know where it leads... Unfortunately, it's too narrow to fly through on a dragon and way too steep and slippery to walk up on foot. @@Why don't you head over to the tunnel's entrance? I know we can think of something if we put our minds to it!</Text><ID>923869</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There has to be a way up! My curiosity is killing me.</Text><ID>923870</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NarrowTunnel</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the tunnel in the Ice Caves</Text><ID>923867</ID></Title><Desc><Text>Go to the entrance of the tunnel located within the Ice Caves</Text><ID>941630</ID></Desc></Data> + 0 + false + + + 1460 + SpeedStinger05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay, I have a weird idea, but hear me out. Speed Stingers have sharp claws and very powerful legs. I watch them running up and down snowy slopes with ease. If we could gain their trust, maybe we could ride up this steep slope on the back of a Speed Stinger. @@ I know it sounds insane, but if I can gain the trust of a Night Fury by offering it fish, maybe you can do the same with a Speed Stinger! Let's catch a nice, big arctic char to give to the pack.</Text><ID>923873</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job! They'll love this fish.</Text><ID>923874</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CampFishingHole</Value></Pair><Pair><Key>Name</Key><Value>PfArcticCharDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch an Arctic Char by the ocean</Text><ID>923871</ID></Title><Desc><Text>Catch an Arctic Char at the ocean</Text><ID>941631</ID></Desc></Data> + 0 + false + + + 1461 + SpeedStinger05T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T04.unity3d/PfGrpArcticSpeedStinger05T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Take the fish to the Speed Stinger nest.</Text><ID>926349</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Since you saved that tiny Speed Stinger that was trapped in the snow, the pack already trusts you enough that they won't chase you away. Now, we just have to convince them to trust us a little bit more...</Text><ID>923878</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAllRight</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the Speed Stinger nest</Text><ID>923875</ID></Title><Desc><Text>Take the fish to the Speed Stinger nest</Text><ID>941632</ID></Desc></Data> + 0 + false + + + 1462 + SpeedStinger05T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T04.unity3d/PfGrpArcticSpeedStinger05T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Give the fish to the Speed Stinger, but be very careful!</Text><ID>923881</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Nice work! I think they trust you more than ever.</Text><ID>923882</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSpeedStingerNPC</Value></Pair><Pair><Key>ItemID</Key><Value>10984</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Char</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Arctic Char to the Speed Stinger</Text><ID>923879</ID></Title><Desc><Text>Give the Arctic Char to the Speed Stinger</Text><ID>923879</ID></Desc></Data> + 0 + false + + + 1463 + SpeedStinger05T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T05.unity3d/PfGrpArcticSpeedStinger05T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now comes the tricky part... You have to climb onto the Speed Stinger's back. {{Input}} on the Speed Stinger when you’re ready for the challenge.</Text><ID>923885</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's incredible! I always knew you'd be a great dragon trainer. You're amazing, {{Name}}!</Text><ID>923886</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSpeedStingerNPC</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSpeedStinger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Speed Stinger</Text><ID>923883</ID></Title><Desc><Text>{{Input}} on the Speed Stinger to mount it</Text><ID>941633</ID></Desc></Data> + 0 + false + + + 1464 + SpeedStinger05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's get back to the Ice Caves. Ride the Speed Stinger back to the entrance of the narrow tunnel.</Text><ID>923889</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Entrance</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the entrance of the tunnel in the Ice Caves</Text><ID>923887</ID></Title><Desc><Text>Go to the entrance of the narrow tunnel in the Ice Caves</Text><ID>941634</ID></Desc></Data> + 0 + false + + + 1465 + SpeedStinger05T07 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T07.unity3d/PfGrpArcticSpeedStinger05T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T06.unity3d/PfGrpArcticSpeedStinger05T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Input}} on the Speed Stinger to mount it again.</Text><ID>923893</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect! The icy tunnel should be no problem for a Speed Stinger. Their powerful legs and sharp claws will help them run up the steep slope.</Text><ID>923894</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSpeedStingerNPC</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSpeedStinger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Speed Stinger</Text><ID>923891</ID></Title><Desc><Text>Mount the speed stinger at the entrance of the Ice Caves</Text><ID>941635</ID></Desc></Data> + 0 + false + + + 1694 + SpeedStinger05T08 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T07.unity3d/PfGrpArcticSpeedStinger05T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T06.unity3d/PfGrpArcticSpeedStinger05T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Run through the narrow tunnel on your Speed Stinger and see where it leads!</Text><ID>926356</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A treasure chest! What a great find! I wonder if the Archaeologist would know anything about it?</Text><ID>926357</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArcticChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Reach the end of the tunnel and find what's inside</Text><ID>926354</ID></Title><Desc><Text>Ride the Speed Stinger through the narrow tunnel and retrieve the treasure at the end</Text><ID>941636</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202771 + true + 300 + 300 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 202771 + true + 70 + 70 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202771 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202771 + true + 50 + 50 + + 0 + +
+ false +
+ + 1629 + Arctic_Treasure01 + 25 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mystery Box</Text><ID>923957</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1628 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1629 + 1466 + 0 + + + 2 + 1629 + 1682 + 0 + + + 1 + 1629 + 1468 + 0 + + + + 1 + 202772 + 0 + + 1682 + Treasure01T02 + 25 +

1629

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Open the Treasure Chest</Text><ID>925967</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1682 + 1467 + 0 + + + + 1 + 202885 + 0 + + 1467 + Treasure01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Excellent work, my friend! The chest should be easy to open now. +Let's see what secrets it holds. {{Input}} on your backpack and {{input}} on the treasure box to open it.</Text><ID>923921</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>A stone tablet! That's fascinating. It looks ancient.</Text><ID>923922</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11139</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>11139</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>Open the Treasure Chest at the Geothermal Spring</Text><ID>923919</ID></Title><Desc><Text>Go to your Backpack and click on the Frozen Treasure Chest</Text><ID>941641</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11140 + + 1 + 1844 + 202885 + true + 1 + 1 + + 0 + +
+ false + + + 1466 + Treasure01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What a fascinating treasure chest! You rode a Speed Stinger to reach it? That's unbelievable! I could never have done that. It must have been sitting in the Ice Caves for a long time because it's frozen solid. I would suggest thawing it with fire, but I'd rather not risk damaging a fragile artifact. @@ Oh! I have an idea. Go to the geothermal springs. The steam should quickly thaw it so it can be easily opened.</Text><ID>923917</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I've come across this amazing thing many times in my travels. [c][3eebff]Geothermal energy is heat from the Earth[/c][ffffff]. Geothermal energy is generated underground, but rises to the Earth's surface in the form of hot springs, geysers, and volcanoes. @@ Geothermal energy is a renewable energy because it is generated continuously from inside the Earth's core. Humans have used geothermal energy for warmth since ancient times. Isn't that fascinating? </Text><ID>923918</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Geothermalspring</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Geothermal Spring in the Ice Caves</Text><ID>923915</ID></Title><Desc><Text>Go to the Geothermal Spring in the Ice Caves</Text><ID>923915</ID></Desc></Data> + 0 + false + + + 1468 + Treasure01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Come back to camp and talk to me so that we can take a closer look.</Text><ID>923925</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Very well done, my friend! Studying this artifact will hopefully lead us to further discoveries. Perhaps it will even help us unravel the mystery of the broken petroglyph and the people who created it.</Text><ID>923926</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>11139</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Return to camp and speak to the Archaeologist</Text><ID>923923</ID></Title><Desc><Text>Go back to the camp in Icestorm Island and speak to the Archaeologist</Text><ID>941642</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202772 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 202772 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202772 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202772 + true + 200 + 200 + + 0 + +
+ false +
+ + 1630 + Arctic_Treasure02 + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure02T01.unity3d/PfGrpArcticTreasure02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>X Marks the Spot</Text><ID>923959</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1629 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1630 + 1470 + 0 + + + 1 + 1630 + 1471 + 0 + + + 1 + 1630 + 1472 + 0 + + + 1 + 1630 + 1473 + 0 + + + 1 + 1630 + 1474 + 0 + + + 2 + 1630 + 1631 + 0 + + + 1 + 1630 + 1717 + 0 + + + 1 + 1630 + 1718 + 0 + + + + 1 + 202712 + 0 + + 1631 + Treasure02T06 + 2 +

1630

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Click on the dirt</Text><ID>926015</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1631 + 1482 + 0 + + + + 1 + 202773 + 0 + + 1482 + Treasure02T06 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure02T01.unity3d/PfGrpArcticTreasure02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Dig all you want, dragon-trainer. I keep my word... even if I don't like to. +{{Input}} on that dirt mound over there to start digging.</Text><ID>924076</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>What is that? I didn't know there was treasure buried on this island! +Well, you got what you came for. Get off my property and scuttle back to your camp! I have things to do today...</Text><ID>924077</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWDirtPatch</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWClueTablet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Dig for treasure near Mildew’s hut</Text><ID>924074</ID></Title><Desc><Text>{{Input}} on the dirt mound near Mildew's hut to start digging.</Text><ID>926376</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11141 + + 1 + 1984 + 202773 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11189 + + 1 + 1983 + 202773 + true + 1 + 1 + + 0 + +
+ false + + + 1470 + Treasure02T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure02T01.unity3d/PfGrpArcticTreasure02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The tablet you found in the Ice Caves is strange. It's not part of the petroglyph, but the carvings are in a similar style. Take a look at it in your inventory.</Text><ID>924080</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What do you think it could be? Have you seen this cliff and these birds anywhere on the island?</Text><ID>924081</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11140</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the tablet</Text><ID>924134</ID></Title><Desc><Text>Open your inventory and look at the tablet</Text><ID>941643</ID></Desc></Data> + 0 + false + + + 1471 + Treasure02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fly around and find the location shown on this tablet. It might lead to some answers.</Text><ID>924084</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Of course! The birds on the tablet are puffins, and this is the cliff depicted on the tablet. This must be the spot!</Text><ID>924085</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PuffinNest</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the place depicted on the tablet on Icestorm Island</Text><ID>924082</ID></Title><Desc><Text>Go to the spot near the puffin cliff near Mildew's hut in the Icestorm Island</Text><ID>941644</ID></Desc></Data> + 0 + false + + + 1472 + Treasure02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Archaeologists are wary of where they dig. We can't just dig wherever we want! Ask that fellow that lives in that hut if we can dig near his house. We don't want to be rude.</Text><ID>924088</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Ah, it's you and your pet lizard again. What do you want from me this time?</Text><ID>924089</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mildew</Text><ID>926014</ID></Title><Desc><Text>Talk to Mildew at Icestorm Island</Text><ID>941517</ID></Desc></Data> + 0 + false + + + 1473 + Treasure02T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure02T04.unity3d/PfGrpArcticTreasure02T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>You want to dig near my hut? Bah! I'll have nothing to do with your shenanigans... unless you can do me another favor. @@ My sheep, Fungus, is homesick for Berk. He misses the weather, of course, but he misses the berries the most. Bring back some wild berries from Berk and then we'll talk.</Text><ID>924092</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>That will do, I suppose.</Text><ID>924093</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectElderBerryDO</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 3 elderberries in Berk</Text><ID>924090</ID></Title><Desc><Text>Collect 3 elderberries in Berk</Text><ID>941645</ID></Desc></Data> + 0 + false + + + 1474 + Treasure02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Hurry back and give me the berries. I hate to see Fungus down in the dumps!</Text><ID>924096</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Good. This will make his day.</Text><ID>924097</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the berries to Mildew</Text><ID>924094</ID></Title><Desc><Text>Bring the berries back to Mildew</Text><ID>941646</ID></Desc></Data> + 0 + false + + + 1717 + Treasure02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This might be what the Archaeologist was looking for! He would be overjoyed to have it.</Text><ID>926383</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My goodness! That looks like it might be a good fit for my petroglyph.</Text><ID>926384</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11189</Value></Pair><Pair><Key>ItemDescription</Key><Value>Petroglyph Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the petroglyph piece to the Archaeologist</Text><ID>926381</ID></Title><Desc><Text>Give the petroglyph piece to the Archaeologist</Text><ID>926381</ID></Desc></Data> + 0 + false + + + 1718 + Treasure02T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Take a look for yourself. Go over to my table and {{input}} on my petroglyph!</Text><ID>926387</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It looks like the ancient Vikings who came to this island lived in peace with dragons. That's fantastic! +This is an amazing discovery, {{Name}}! We are one step closer to solving the mystery behind the petroglyph. </Text><ID>926388</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Tablet</Value></Pair><Pair><Key>Name</Key><Value>UseTablet</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the petroglyph on the table</Text><ID>926385</ID></Title><Desc><Text>Look at the petroglyph on the Archaeologist's table</Text><ID>941647</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 202712 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202712 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202712 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202712 + true + 50 + 50 + + 0 + +
+ false +
+ + 1632 + Arctic_Treasure03 + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure03T03.unity3d/PfGrpArcticTreasure03T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Clue Snatcher</Text><ID>923960</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1630 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1632 + 1485 + 0 + + + 1 + 1632 + 1486 + 0 + + + 1 + 1632 + 1487 + 0 + + + 1 + 1632 + 1489 + 0 + + + 1 + 1632 + 1490 + 0 + + + + 1 + 202774 + 0 + + 1485 + Treasure03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh, you found another clue tablet as well? Fantastic! Please show me. Open your backpack and {{Input}} on the tablet.</Text><ID>924100</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That looks like the glacier!</Text><ID>924101</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11141</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and look at the ancient tablet</Text><ID>924098</ID></Title><Desc><Text>Look at the ancient tablet in your backpack</Text><ID>941648</ID></Desc></Data> + 0 + false + + + 1486 + Treasure03T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure03T02.unity3d/PfGrpArcticTreasure03T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's head over to the glacier. That must be where the next chest is hidden.</Text><ID>924104</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Living here for so long, I'm fairly familiar with glaciers. When enough snow piles up, the weight of the snow on top starts to compress the snow on the bottom and turns the snow into dense ice, forming a glacier. @@ The ice is so compressed that it pushes all the air out, changing how the ice scatters light. This causes the glacier to appear blue. @@ When a chunk of ice breaks off of a glacier and falls into the water, it's called an iceberg. Explorers have to watch out for icebergs while sailing arctic seas. @@ Oh, my apologies! Sometimes I talk too much when I get excited about something. Back to treasure hunting!</Text><ID>924105</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Glacier</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the location depicted on the tablet</Text><ID>924102</ID></Title><Desc><Text>Go to the glacier in Icestorm Island</Text><ID>941649</ID></Desc></Data> + 0 + false + + + 1487 + Treasure03T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure03T02.unity3d/PfGrpArcticTreasure03T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Search around on the glacier. It has to be around here somewhere.</Text><ID>924108</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There it is!</Text><ID>924109</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TreasureGlacier</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the treasure chest</Text><ID>924106</ID></Title><Desc><Text>Find the treasure chest behind the pile of snow</Text><ID>941650</ID></Desc></Data> + 0 + false + + + 1489 + Treasure03T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure03T02.unity3d/PfGrpArcticTreasure03T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Melting the snow would be faster than digging it out with your hands. Would you mind asking {{dragon name}} to shoot a fireball at it?</Text><ID>924112</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Amazing! I don't understand how you do it, but your skill with dragons is certainly impressive. </Text><ID>924113</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TreasureGlacier</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfFrozenTreasure</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Melt the snow to get the treasure chest</Text><ID>924110</ID></Title><Desc><Text>Use your dragon to shoot a fireball and melt the snow</Text><ID>941651</ID></Desc></Data> + 0 + false + + + 1490 + Treasure03T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure03T04.unity3d/PfGrpArcticTreasure03T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What...? This treasure chest is empty! Someone has beaten us to it. Maybe look around one more time? We could have missed something.</Text><ID>924116</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Sheep wool? What is that doing out here on the glacier? The only sheep on this island belongs to Mildew... @@ Oh, I'm afraid that means he has it. Well, I'm sure if you ask him very nicely he'll give it you!</Text><ID>924117</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectWoolWhiteDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find out who might have looted the chest</Text><ID>924114</ID></Title><Desc><Text>Look around to find a clue to the empty treasure chest</Text><ID>941652</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202774 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202774 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202774 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202774 + true + 200 + 200 + + 0 + +
+ false +
+ + 1633 + Arctic_Groncicle04 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Glacier View</Text><ID>923932</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1607 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1633 + 1491 + 0 + + + 1 + 1633 + 1492 + 0 + + + 1 + 1633 + 1493 + 0 + + + + 1 + 202775 + 0 + + 1491 + Groncicle04T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_OverGlacier</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, have you seen that glacier that juts out over the water? It's huge! Take {{dragon name}} for a scenic flight and soar over it. It's an awesome view.</Text><ID>923967</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>[c][3eebff]Glaciers are large bodies of dense ice.[/c][ffffff] They move like very slow rivers. As a glacier moves, it grinds, crushes, carves, and shapes the land beneath through glacial erosion.</Text><ID>923968</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_OverGlacier</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly above the glacier</Text><ID>923965</ID></Title><Desc><Text>Fly your dragon over the glacier in the Arctic</Text><ID>941481</ID></Desc></Data> + 0 + false + + + 1492 + Groncicle04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Land on the glacier, {{Name}}! The glacier makes a nice lookout spot too.</Text><ID>923971</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's hard to imagine a big, sturdy hunk of ice moving beneath your feet, but it is! It moves very slowly and sculpts the land over time. @@ [c][3eebff]Not only do glaciers erode the land, they add to it too.[/c][ffffff] Erosion involves removing sediment, but when sediment is added to a land mass, it is called deposition. Glaciers pick up sediment and then deposit it somewhere else.</Text><ID>923972</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Glacier</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on the glacier</Text><ID>923969</ID></Title><Desc><Text>Land your dragon on the glacier</Text><ID>941482</ID></Desc></Data> + 0 + false + + + 1493 + Groncicle04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>On this island, a lot of the sediment being carried by the glacier ends up in the ocean. Then the ocean currents take it somewhere else, even other islands! @@ Drift ice also travels with the ocean current. Check out the ice floe by the glacier.</Text><ID>923975</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>[c][3eebff]Individual pieces of ice drifting on the water are called 'floes', but when they are driven together into a mass, it's called 'pack ice'.[/c][ffffff] As explorers, we should always seek out knowledge of the land and the forces of nature. It's the best way to protect yourself while exploring new territory!</Text><ID>923976</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishingGroncicle</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the ice floe by the glacier</Text><ID>923973</ID></Title><Desc><Text>Go to the ice floe by the glacier</Text><ID>941483</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202775 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202775 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202775 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202775 + true + 200 + 200 + + 0 + +
+ false +
+ + 1634 + Arctic_SpeedStinger07 + 15 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Tea Break</Text><ID>942451</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1613 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 1634 + 1635 + 0 + + + 1 + 1634 + 1495 + 0 + + + 2 + 1634 + 1687 + 0 + + + 1 + 1634 + 1702 + 0 + + + 1 + 1634 + 1703 + 0 + + + + 1 + 202776 + 0 + + 1635 + SpeedStinger07T01 + 15 +

1634

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey, {{Name}}! I have a plan to get the sheep to take the medicine. Let's try making an herbal tea out of the plants. Go into the lab and we'll give it a go!</Text><ID>923954</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great job! The skullcap and lobelia plants help to relax the [c][3eebff]nervous system[/c][ffffff]. The nervous system controls and coordinates the body's activities and helps you respond to changes in the environment. With this medicine, the sheep will be bleating and walking around in no time!</Text><ID>923955</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1635 + 1494 + 0 + + + + 1 + 202777 + 0 + + 1494 + SpeedStinger07T01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>MixPlants</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mix plants with hot water</Text><ID>924063</ID></Title><Desc><Text>Enter The Lab behind the school</Text><ID>941638</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11138 + + 1 + 1851 + 202777 + true + 1 + 1 + + 0 + +
+ false + + + 1687 + SpeedStinger07T03 + 15 +

1634

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Mildew</Text><ID>926014</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1687 + 1496 + 0 + + + + 1 + 202930 + 0 + + 1496 + SpeedStinger07T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger07T03.unity3d/PfGrpArcticSpeedStinger07T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Fine, I'll give you the treasure in exchange for the tea. Don't expect any more kindness from me! I put it with my things over there. Fetch it yourself.</Text><ID>924071</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>You got what you wanted. Now leave me in peace!</Text><ID>924072</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfClueTablet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the petroglyph piece</Text><ID>924069</ID></Title><Desc><Text>Collect the treasure next to Mildew's things</Text><ID>941639</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11190 + + 1 + 1982 + 202930 + true + 1 + 1 + + 0 + +
+ false +
+ + 1495 + SpeedStinger07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Take the tea back to Icestorm Island and give it to Mildew. His sheep should feel better in no time.</Text><ID>924067</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>What took you so long? Are you sure this tea will work?</Text><ID>924068</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>ItemID</Key><Value>11138</Value></Pair><Pair><Key>ItemDescription</Key><Value>Herbal Tea</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Mildew the tea in Icestorm Island</Text><ID>924065</ID></Title><Desc><Text>Bring the tea to Mildew at Icestorm Island</Text><ID>941640</ID></Desc></Data> + 0 + false + + + 1702 + SpeedStinger07T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This looks like it would fit in the Archaeologist's petroglyph. He would appreciate this piece you received from Mildew.</Text><ID>926367</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My friend, this is amazing!</Text><ID>926368</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11190</Value></Pair><Pair><Key>ItemDescription</Key><Value>Second Petroglyph Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the petroglyph piece to the Archaeologist</Text><ID>926381</ID></Title><Desc><Text>Give the petroglyph piece to the Archaeologist</Text><ID>926381</ID></Desc></Data> + 0 + false + + + 1703 + SpeedStinger07T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Input}} on the petroglyph on the table and look at it, {{Name}}.</Text><ID>926371</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We're getting closer and closer to solving this ancient mystery, my dear friend!</Text><ID>926372</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Tablet</Value></Pair><Pair><Key>Name</Key><Value>UseTablet</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the petroglyph on the table</Text><ID>926385</ID></Title><Desc><Text>{{Input}} on the petroglyph on the table</Text><ID>926369</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202776 + true + 60 + 60 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202776 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202776 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202776 + true + 200 + 200 + + 0 + +
+ false +
+ + 1636 + Arctic_Treasure08 + 25 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Golden Room</Text><ID>923961</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1655 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1636 + 1497 + 0 + + + 1 + 1636 + 1498 + 0 + + + 1 + 1636 + 1499 + 0 + + + 2 + 1636 + 1741 + 0 + + + + 1 + 202778 + 0 + + 1741 + Treasure08T04 + 25 +

1636

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gather the artifacts</Text><ID>926548</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1741 + 1500 + 0 + + + + 1 + 203008 + 0 + + 1500 + Treasure08T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure08T04.unity3d/PfGrpArcticTreasure08T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's take these items to a safe place where we can take our time examining them. Will you collect everything in this room to take back to the camp? Leave the artifact on the pedestal, my friend. I'm particularly curious of this antique lens.</Text><ID>924180</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm pleased that we uncovered the secrets of this civilization together!</Text><ID>924181</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWTreasureRoom</Value></Pair><Pair><Key>Quantity</Key><Value>11</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather the artifacts in the room</Text><ID>924178</ID></Title><Desc><Text>Gather the artifacts in the room</Text><ID>924178</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11333 + + 1 + 2181 + 203008 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11334 + + 1 + 2179 + 203008 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11335 + + 1 + 2180 + 203008 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11336 + + 1 + 2182 + 203008 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11337 + + 1 + 2183 + 203008 + true + 1 + 1 + + 0 + +
+ false + + + 1497 + Treasure08T01 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWArchaeologist</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This is the moment of truth, {{Name}}! I've been looking for the artifact room described by the Petroglyph for years. I hope that it is worth the wait. {{Input}} on me and lead me to the room on the other side of the chasm!</Text><ID>924168</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh my stars. It's beautiful.</Text><ID>924169</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TreasureRoom</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Archaeologist and lead him into the room</Text><ID>924166</ID></Title><Desc><Text>{{Input}} on the Archaeologist and lead him into the room</Text><ID>924166</ID></Desc><Reminder><Text>Stay close to the Archaeologist!</Text><ID>936312</ID></Reminder><Failure><Text>Oh no! You left the Archaeologist behind!</Text><ID>936225</ID></Failure></Data> + 0 + false + + + 1498 + Treasure08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I have been searching for this room ever since I found the first piece of the petroglyph. What an incredible find! I can't wait to analyze it all. @@ Take a look at this artifact on this pedestal. These Vikings thought this item was important and placed it in a spot of honor in their treasure room. I can't figure out what it is! {{Input}} on the device and take a closer look.</Text><ID>924172</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It is an interesting artifact. It looks like it might be some sort of glass... device. An antique lens, perhaps. What could the Vikings have used it for?</Text><ID>924173</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfAncientLens</Value></Pair><Pair><Key>Name</Key><Value>UseLens</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the artifact in the middle of the room</Text><ID>926412</ID></Title><Desc><Text>{{Input}} on the artifact and look at it</Text><ID>941665</ID></Desc></Data> + 0 + false + + + 1499 + Treasure08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Look at that armor! It looks like a good representation of how this civilization dressed in its time. You should walk over and see it up close.</Text><ID>924176</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's amazing that the armor has stayed in such good condition over the years. Many items degrade over time when they are left in open air. The cold atmosphere must have kept these things in good condition. If it were a humid environment, I'm sure these items would be barely recognizable!</Text><ID>924177</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Armor</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the armor</Text><ID>924174</ID></Title><Desc><Text>Look at the armor in the back of the treasure room</Text><ID>941666</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202778 + true + 50 + 50 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202778 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202778 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202778 + true + 350 + 350 + + 0 + +
+ false +
+ + 1638 + Arctic_Misc08 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Gift Fit for Astrid</Text><ID>923944</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1648 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1638 + 1502 + 0 + + + 1 + 1638 + 1503 + 0 + + + 1 + 1638 + 1504 + 0 + + + 1 + 1638 + 1505 + 0 + + + 1 + 1638 + 1506 + 0 + + + 2 + 1638 + 1639 + 0 + + + 1 + 1638 + 1508 + 0 + + + + 1 + 202781 + 0 + + 1639 + Misc08T06 + 4 +

1638

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give Heather 3 Eggs</Text><ID>923941</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1639 + 1507 + 0 + + + + 1 + 202782 + 0 + + 1507 + Misc08T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now we'll need to grind up the Cobalt and mix it with egg yolk. Bring me 3 eggs and I can make the paint.</Text><ID>925829</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The egg yolk acts as a 'binder' and helps hold the pigment to the wood surface. I can whip up the blue paint in no time. Oh, and tell Hiccup he doesn't need to worry. I know how to keep a secret.</Text><ID>925830</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Heather 3 Eggs from your farm</Text><ID>923993</ID></Title><Desc><Text>Bring Heather 3 Eggs to use as a binder for the paint</Text><ID>941562</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11651 + + 1 + 1853 + 202782 + true + 1 + 1 + + 0 + +
+ false + + + 1502 + Misc08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}. I could use your help with something. Er, well, it's not dragon-related. I can usually handle that sort of thing. It's kind of... Astrid-related. @@ Astrid's always there for me, so I wanted to show her my appreciation by giving her a gift. I went into Gobber's workshop and built a brand-new shield for her, but it still needs to be painted. @@ Could you ask her what color is her favorite? I'm kind of embarrassed that I forgot.</Text><ID>924008</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hi, {{Name}}! Having fun out there at Icestorm Island? I had to come back here to make sure our defenses are still holding up while Hiccup and the others are playing around on the new island. I can't wait to explore it with Stormfly when I have the time!</Text><ID>924009</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at the Training Grounds</Text><ID>924006</ID></Title><Desc><Text>Talk to Astrid at the Training Grounds</Text><ID>924006</ID></Desc></Data> + 0 + false + + + 1503 + Misc08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hm? I can't just tell you my favorite color. That would be too easy! Try and guess what my favorite color is! {{Input}} on me and I'll give you a pop quiz.</Text><ID>924012</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Don't tell Snotlout! I bet he'd find a way to use that to annoy me somehow.</Text><ID>924013</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizArcticMisc08T02.unity3d/PfUiQuizArcticMisc08T02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid and guess Astrid's favorite color</Text><ID>924010</ID></Title><Desc><Text>{{Click}} on Astrid and answer her question</Text><ID>941563</ID></Desc></Data> + 0 + false + + + 1504 + Misc08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should go back to Hiccup and tell him.</Text><ID>924016</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I should have known! She loves Stormfly as much as I love Toothless. Thanks for finding out for me, {{Name}}.</Text><ID>924017</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Tell Hiccup Astrid's favorite color</Text><ID>941564</ID></Desc></Data> + 0 + false + + + 1505 + Misc08T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpArcticMisc08T04.unity3d/PfGrpArcticMisc08T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Uh oh, I'm out of blue paint. We'll have to make more. Luckily, Heather and I found out how to do it during one of her experiments. Could you find Cobalt rock in Berk? We can use it to make more paint.</Text><ID>923997</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect!</Text><ID>922915</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOreCobalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find cobalt in Berk</Text><ID>923995</ID></Title><Desc><Text>Find the cobalt in Berk</Text><ID>941565</ID></Desc></Data> + 0 + false + + + 1506 + Misc08T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Get the cobalt to Heather so she can make that paint for you.</Text><ID>924001</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey! Blue paint? That sounds like a fun project. I'm all for it!</Text><ID>924002</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>11188</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cobalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Cobalt to Heather</Text><ID>923999</ID></Title><Desc><Text>Give the Cobalt to Heather and ask her to help you make paint</Text><ID>941566</ID></Desc></Data> + 0 + false + + + 1508 + Misc08T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You should give the paint to Hiccup. He'll be very pleased with how it turned out!</Text><ID>924004</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow! This shade of blue is beautiful. It'll definitely remind Astrid of Stormfly. She's going to love this color on her shield. I just know it! @@ Thank you so much for helping me out, {{Name}}. If all goes well, you'll see Astrid with a new shield that you helped make!</Text><ID>924005</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>11651</Value></Pair><Pair><Key>ItemDescription</Key><Value>Blue Paint</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the bucket of blue paint to Hiccup</Text><ID>924003</ID></Title><Desc><Text>Give the bucket of blue paint to Hiccup</Text><ID>924003</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202781 + true + 60 + 60 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202781 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202781 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202781 + true + 50 + 50 + + 0 + +
+ false +
+ + 1640 + Arctic_Misc09 + 25 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistSchool</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistBerk</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Catching Daylight</Text><ID>923945</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1638 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1640 + 1509 + 0 + + + 1 + 1640 + 1510 + 0 + + + 1 + 1640 + 1511 + 0 + + + 1 + 1640 + 1512 + 0 + + + 1 + 1640 + 1513 + 0 + + + 1 + 1640 + 1514 + 0 + + + 1 + 1640 + 1515 + 0 + + + + 1 + 202783 + 0 + + 1509 + Misc09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Blast this endless darkness! It feels like it's been night forever on Icestorm Island. Would you be so kind as to ask your dragon to light the fire pit for me again?</Text><ID>924020</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, that's better! The arctic is a difficult place to live. The temperatures are extreme, and during the winter, it stays dark day and night! This period without daylight is called a [c][3eebff]polar night.[/c][ffffff] Due to the axial tilt of the Earth, the Sun does not rise here for about one month in the winter. @@ It's tough to not see the sun for such a long time, but the opposite is also very difficult. During the summer, we get 24 hours of daylight every day for over a month! This is called the [c][3eebff]polar day[/c][ffffff] or the [c][3eebff]midnight Sun.[/c][ffffff]</Text><ID>924021</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonLitFirePit</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Light the fire in camp</Text><ID>924018</ID></Title><Desc><Text>Use your dragon to shoot a fireball at the fire pit at camp</Text><ID>941568</ID></Desc></Data> + 0 + false + + + 1510 + Misc09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The lack of sunlight during the winter can be quite disheartening... It would be nice to spend time somewhere south of here. In fact, I would love to visit the School of Dragons. @@ Hiccup has told me so much about it and I would love to see it with my own eyes. Would you mind showing me around? I will take Johann's ship to the school and meet you there!</Text><ID>924024</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm very excited to be here. I was just speaking to the Headmaster and admiring the Great Hall. This place is quite impressive!</Text><ID>924025</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArchaeologistSchool</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet the Archaeologist at the School</Text><ID>924022</ID></Title><Desc><Text>Meet the Archaeologist at the School</Text><ID>941569</ID></Desc></Data> + 0 + false + + + 1511 + Misc09T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWArchaeologist</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's hard enough to believe that Vikings are living peacefully with dragons, let alone training them! {{Input}} on me and then lead me to the Hatchery so I can see it with my own eyes.</Text><ID>924028</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What an intriguing place! So this is where a dragon's bond with its trainer begins. I never could have imagined we would be able to do such a thing.</Text><ID>924029</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AtHatchery</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the Archaeologist to the Hatchery</Text><ID>924026</ID></Title><Desc><Text>{{Input}} on the Archaeologist and take him to the Hatchery</Text><ID>941570</ID></Desc><Reminder><Text>Don't leave the Archaeologist behind!</Text><ID>936226</ID></Reminder><Failure><Text>Oh no! You left the Archaeologist behind!</Text><ID>936225</ID></Failure></Data> + 0 + false + + + 1512 + Misc09T04 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWArchaeologist</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, I can feel my mood lightening already, just by soaking in the sun. Let's continue! +Hiccup has told me about your laboratory. Can you show it to me please?</Text><ID>924032</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Welcome to the School of Dragons! I'm Heather, the alchemist of the school. I see {{Name}} is giving you the grand tour. This is our lab. We test our hypotheses by doing experiments here. @@ It's a good thing you two are spending some time in a sunnier place. Our bodies need sunlight to produce vitamin D, which keeps our bones strong. During the polar night when there is no sun, you can also get vitamin D by eating fish like salmon and trout.</Text><ID>924033</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherIdle04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AtLab</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the Archaeologist to the Lab</Text><ID>924030</ID></Title><Desc><Text>{{Input}} on the Archaeologist and take him to the Lab</Text><ID>941571</ID></Desc><Reminder><Text>Don't leave the Archaeologist behind!</Text><ID>936226</ID></Reminder><Failure><Text>Oh no! You left the Archaeologist behind!</Text><ID>936225</ID></Failure></Data> + 0 + false + + + 1513 + Misc09T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWArchaeologist</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It is very nice to meet you, Heather. +{{Name}}, can we stop by Berk? It's been so long since I left! I'd love to lay eyes on that beautiful island again. </Text><ID>924036</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I used to think Berk's seasons were harsh, but spending time at places like Icestorm Island made me realize that it could be much worse. In Berk and many other places, the time of daylight shortens as winter comes. This is a seasonal pattern that occurs in Berk every winter. @@ Here, the sun always rises over the horizon, even in the dead of winter. In the arctic, however, the daylight dwindles until the sun doesn't even break the horizon. This is due to being located so far north.</Text><ID>924037</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArchaeologistBerk</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet the Archaeologist in Berk</Text><ID>924034</ID></Title><Desc><Text>Meet the Archaeologist in Berk</Text><ID>924034</ID></Desc></Data> + 0 + false + + + 1514 + Misc09T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWArchaeologist</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I used to spend hours on the beach, staring out into the ocean and watching the ships sail by. On clear days like this, you can get a fantastic view. Lead the way to the shore, my dear friend!</Text><ID>924040</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>When I was a boy, I used to explore these shores by myself. I didn't care much for wrestling or fighting dragons like the other kids. That's part of the reason why I left. I knew that my skills were better suited to archaeology and exploration.</Text><ID>924041</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BeachToBoat</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>Escort the Archaeologist to the shore</Text><ID>924038</ID></Title><Desc><Text>Take the Archaeologist to the shore at Berk</Text><ID>941572</ID></Desc><Reminder><Text>Don't leave the Archaeologist behind!</Text><ID>936226</ID></Reminder><Failure><Text>Oh no! You left the Archaeologist behind!</Text><ID>936225</ID></Failure></Data> + 0 + false + + + 1515 + Misc09T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It feels great to be home, but it's high time I returned to my work. I need to get back to Icestorm Island. Johann and I will have a fun ride back to camp. Meet me there when you're ready, my friend!</Text><ID>924044</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That was a lovely little vacation! Thank you, my friend. I feel invigorated again! I'll have to catch some sun in Berk or at the school next time I'm weary of this darkness.</Text><ID>924045</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Tablet</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet the Archaeologist at Icestorm Island</Text><ID>924042</ID></Title><Desc><Text>Meet the Archaelogist back at the camp at Icestorm Island</Text><ID>941573</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202783 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202783 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202783 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202783 + true + 200 + 200 + + 0 + +
+ false +
+ + 1641 + Arctic_Treasure04 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Kindred Spirits</Text><ID>924226</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1634 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1641 + 1516 + 0 + + + 1 + 1641 + 1517 + 0 + + + 1 + 1641 + 1518 + 0 + + + 2 + 1641 + 1679 + 0 + + + + 1 + 202785 + 0 + + 1679 + Treasure04T04 + 4 +

1641

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Return to the Archaeologist</Text><ID>924693</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1679 + 1519 + 0 + + + + 1 + 202869 + 0 + + 1519 + Treasure04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Please bring the water back to me.</Text><ID>924132</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, thank you! Give me a moment to clean off the tablet. Cleaning off ancient artifacts requires delicacy and patience!</Text><ID>924133</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to the Archaeologist</Text><ID>924693</ID></Title><Desc><Text>Bring the water back to the Archaeologist</Text><ID>941653</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11142 + + 1 + 1794 + 202869 + true + 1 + 1 + + 0 + +
+ false + + + 1516 + Treasure04T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticTreasure04T06.unity3d/PfGrpArcticTreasure04T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}! Have you explored the other side of the island much? Toothless and I were flying around and I noticed the ruins of an old house. It's not ancient, but it's pretty cool! You should check it out.</Text><ID>924120</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, good eye! You've got the eyesight of a Deadly Nadder.</Text><ID>924121</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron20</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfClueTablet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Explore the house on the other side of the island</Text><ID>924118</ID></Title><Desc><Text>Go check out the ruins of an old house on the other side of the island</Text><ID>941654</ID></Desc></Data> + 0 + false + + + 1517 + Treasure04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should show that to the Archaeologist. I'm sure he'll be overjoyed.</Text><ID>924124</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, you've found the next clue! Let me take a look.</Text><ID>924125</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11697</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dirty Ancient Tablet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the tablet to the Archaeologist</Text><ID>924122</ID></Title><Desc><Text>Give the tablet to the Archaeologist</Text><ID>924122</ID></Desc></Data> + 0 + false + + + 1518 + Treasure04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Interesting... You say this tablet was not found inside of a treasure chest? Hmm... It must have been discovered by someone else many years ago. That abandoned house was probably not its original location. @@ Perhaps another treasure-hunter found it--another explorer like us! Whoever they were, I'm glad they left it somewhere we could find it. However, since this tablet was not locked in a chest, it's caked in ice and dirt. Filthy! @@ Would you please fetch some hot water from the geothermal springs for me? Here, take this bucket.</Text><ID>924128</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fantastic! With hot water, I can clean off this grime in no time!</Text><ID>924129</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Geothermalspring</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the geothermal springs in the Ice Caves</Text><ID>924126</ID></Title><Desc><Text>Go to the geothermal springs to get some hot water</Text><ID>941655</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202785 + true + 300 + 300 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 202785 + true + 70 + 70 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202785 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202785 + true + 50 + 50 + + 0 + +
+ false +
+ + 1642 + Arctic_Treasure05 + 25 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Dormant City</Text><ID>926016</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1641 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1642 + 1520 + 0 + + + 1 + 1642 + 1706 + 0 + + + 1 + 1642 + 1521 + 0 + + + 1 + 1642 + 1522 + 0 + + + 1 + 1642 + 1523 + 0 + + + 1 + 1642 + 1524 + 0 + + + 1 + 1642 + 1525 + 0 + + + 1 + 1642 + 1526 + 0 + + + 1 + 1642 + 1527 + 0 + + + + 1 + 202870 + 0 + + 1520 + Treasure05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, there you are! Are you ready to unravel this mystery? {{Input}} on the tablet in your backpack.</Text><ID>924136</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We are on the brink of an amazing discovery. I can feel it!</Text><ID>924137</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>11142</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the tablet</Text><ID>924134</ID></Title><Desc><Text>Go to your inventory and {{input}} on the tablet</Text><ID>941656</ID></Desc></Data> + 0 + false + + + 1521 + Treasure05T02 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Entrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We just need to figure out the location shown on the tablet. Do you recognize this image? If you know the answer, {{Input}} on me and lead the way, my friend!</Text><ID>924140</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Impressive work, {{Name}}! You would make a fine archaeologist. I should recruit you for my next expedition. @@ Let's explore deeper down this ice tunnel.</Text><ID>924141</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuinsEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Archaeologist and bring him to the location depicted on the tablet</Text><ID>924138</ID></Title><Desc><Text>{{Input}} on the Archaeologist and bring him to the ruins in the Arctic</Text><ID>941657</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You failed to follow the Archaeologist!</Text><ID>936241</ID></Failure></Data> + 0 + false + + + 1522 + Treasure05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The passage is blocked by a thick wall of ice. I don't suppose you have a torch or some other heat source that could melt it?</Text><ID>924144</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Absolutely brilliant! I am not used to receiving help from dragons. It's marvelous watching you and {{dragon name}} work together. </Text><ID>924145</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_RuinsEntrance</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfRuinsIceBlocker</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Melt the ice blocking the entrance</Text><ID>924142</ID></Title><Desc><Text>Use your dragon to shoot a fireball at the ice</Text><ID>941658</ID></Desc></Data> + 0 + false + + + 1523 + Treasure05T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure05T04.unity3d/PfGrpArcticTreasure05T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Onward, my friend! Follow the passage into the depths.</Text><ID>924148</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These must be the ruins of an ancient civilization. Astounding!</Text><ID>924149</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker06</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and enter the ruins</Text><ID>924146</ID></Title><Desc><Text>Follow the Archaeologist to the ruins</Text><ID>941659</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You failed to follow the Archaeologist!</Text><ID>936241</ID></Failure></Data> + 0 + false + + + 1524 + Treasure05T05 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure05T05.unity3d/PfGrpArcticTreasure05T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Over there! Isn't it incredible that those buildings still stand strong after all these centuries? Let's investigate!</Text><ID>924152</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These buildings are very well-preserved. Unlike many Vikings buildings today, these buildings are mostly made out of stone. @@ This city has been abandoned for thousands of years. I wonder what happened to the Vikings that lived here so long ago? There's an old ship here. Perhaps they sailed away?</Text><ID>924153</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker03</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and examine the buildings</Text><ID>924150</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him to the building ruins</Text><ID>941660</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You failed to follow the Archaeologist!</Text><ID>936241</ID></Failure></Data> + 0 + false + + + 1525 + Treasure05T06 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure05T06.unity3d/PfGrpArcticTreasure05T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Solving the mysteries of the past is what archaeologists do. I have so many questions! What were the ancient Vikings like? Where did they go? Why did they leave? @@ So many mysteries to uncover! It's what archaeologists live for, and we've only scratched the surface. Let's keep going. @@ Look – cave paintings! Let's take a closer look.</Text><ID>924156</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What gorgeous artwork! Did you know that humans have been making art since the very beginning? @@ Ancient art can tell us a lot about the people that made it. For example, the Vikings that lived in this city obviously had contact with dragons. You can see depictions of dragons in these paintings.</Text><ID>924157</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker03</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and look at the paintings</Text><ID>924154</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him to the cave paintings</Text><ID>941661</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You failed to follow the Archaeologist!</Text><ID>936241</ID></Failure></Data> + 0 + false + + + 1526 + Treasure05T07 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure05T07.unity3d/PfGrpArcticTreasure05T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's keep exploring. Over there! I see something that looks like a big statue. Let's investigate.</Text><ID>924160</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What a beautiful work of art! This statue was placed in the center of the entire city, so dragons were likely an important part of their culture. @@ Hmmm, that dragon statue looks a lot like a Gronckle, doesn't it? Or is it a Groncicle? I can't say for sure.</Text><ID>924161</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker05</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and look at Groncicle statue</Text><ID>924158</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him to the Groncicle statue</Text><ID>941662</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You failed to follow the Archaeologist!</Text><ID>936241</ID></Failure></Data> + 0 + false + + + 1527 + Treasure05T08 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticTreasure05T08.unity3d/PfGrpArcticTreasure05T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's keep looking around. Over there! It looks like a large door made of stone.</Text><ID>924164</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It looks like this door was designed like a puzzle, with rotating circular parts. Once a key is placed in this slot, the door should open. @@ We must find the key if we want to proceed. In the meantime, I must record our findings in my journal. We have much research to do! Feel free to keep exploring.</Text><ID>924165</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker03</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and look at the stone door</Text><ID>924162</ID></Title><Desc><Text>{{Input}} on the Archaeologist and go to the large door</Text><ID>941663</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You failed to follow the Archaeologist!</Text><ID>936241</ID></Failure></Data> + 0 + false + + + 1706 + Treasure05T01b + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Meet me in the Ice Caves!</Text><ID>926410</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Ice Caves</Text><ID>926408</ID></Title><Desc><Text>Go into the Ice Caves</Text><ID>941664</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 202870 + true + 100 + 100 + + 0 + + + + 350 +

1

+ 0 + + 1 + 368 + 202870 + true + 350 + 350 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202870 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202870 + true + 50 + 50 + + 0 + +
+ false +
+ + 1646 + Arctic_Ruins04 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Geothermal Oasis</Text><ID>924393</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1642 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1646 + 1528 + 0 + + + 1 + 1646 + 1529 + 0 + + + 1 + 1646 + 1530 + 0 + + + 1 + 1646 + 1531 + 0 + + + 1 + 1646 + 1532 + 0 + + + 1 + 1646 + 1533 + 0 + + + + 1 + 202792 + 0 + + 1528 + Ruins04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Ice Caves are pretty spectacular. I say we explore every little nook and learn as much as we can! Head into the Ice Caves and fly around.</Text><ID>924350</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What a beautiful place! Those waterfalls are amazing.</Text><ID>924351</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceCaveCliff</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the Ice Caves</Text><ID>924348</ID></Title><Desc><Text>Go to the entrance of the Ice Caves at Icestorm Island</Text><ID>941600</ID></Desc></Data> + 0 + false + + + 1529 + Ruins04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Where are these waterfalls coming from? Fly to that waterfall to take a closer look.</Text><ID>924354</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, look! The waterfalls are falling through cracks in the stone. These small waterfalls probably formed due to snow melt. The snow melts, forms streams, erodes the rock, and flows through the cracks on the roof of the Ice Caves.</Text><ID>924355</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron20</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceCaveWaterfall</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land near a waterfall in the Ice Caves</Text><ID>924352</ID></Title><Desc><Text>Fly to the waterfall in the Ice Caves</Text><ID>941601</ID></Desc></Data> + 0 + false + + + 1530 + Ruins04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's much warmer here in the main cavern of the Ice Caves than outside. The icy ocean wind can't get in here and the cavern is heated by the geothermal spring. Fly over and land next to the hot spring. I'm sure {{dragon name}} would love to warm their scales! </Text><ID>924358</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Feels nice, doesn't it? Just be careful. That water is almost as hot as a Scauldron's spray! Geothermal energy is heat from the Earth. It's generated underground, but rises to the Earth's surface in the form of hot springs, geysers, and volcanoes.</Text><ID>924359</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Geothermalspring</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land near the geothermal spring</Text><ID>924356</ID></Title><Desc><Text>Fly to the hot spring</Text><ID>941602</ID></Desc></Data> + 0 + false + + + 1531 + Ruins04T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticRuins04T04.unity3d/PfGrpArcticRuins04T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The heat from the hot spring and the fresh water from the waterfalls allow these tropical plants to flourish here. You wouldn't think that such a frosty island could be so warm at the heart! @@ Could you pick some flowers so we can study them? It's always a good idea to become familiar with the native flora. We should make sure none of these plants are poisonous to dragons--just in case Meatlug or {{dragon name}} tries to eat it!</Text><ID>924362</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Interesting! I've never seen this plant before. We definitely don't have them around Berk.</Text><ID>924363</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron19</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFireLily</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect flowers in the Ice Caves</Text><ID>924360</ID></Title><Desc><Text>Collect the flowers around the hot spring</Text><ID>941603</ID></Desc></Data> + 0 + false + + + 1532 + Ruins04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should show them to the Botanist at the school. She'll be able to tell you more about this species of flower. Then we'll know for sure if they're bad for dragons to eat.</Text><ID>924366</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Oh, that's a gorgeous bloom! I've only seen these in books. This flower is called a Fire Lily. They grow well in the mountains, but they also love warmth and places with lots of water.</Text><ID>924367</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>11186</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fire Lily</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the flowers to the Botanist at the Lookout</Text><ID>924364</ID></Title><Desc><Text>Bring the flowers to Phlegma</Text><ID>941604</ID></Desc></Data> + 0 + false + + + 1533 + Ruins04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Go back and tell Hiccup not to worry. These flowers aren't toxic to dragons, though they probably don't taste very good either.</Text><ID>924370</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The lilies near the hot spring are safe for dragons? That's good to know. Thanks for asking the Botanist for me. The geothermal area is such a unique ecosystem. We could spend hours exploring it and studying all the organisms that live there!</Text><ID>924371</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202792 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202792 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202792 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202792 + true + 200 + 200 + + 0 + +
+ false +
+ + 1648 + Arctic_Misc05 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Defend the Island!</Text><ID>924390</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1624 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1648 + 1535 + 0 + + + 1 + 1648 + 1536 + 0 + + + 1 + 1648 + 1537 + 0 + + + 1 + 1648 + 1538 + 0 + + + 1 + 1648 + 1539 + 0 + + + + 1 + 202789 + 0 + + 1535 + Misc05BT01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey {{Name}}, what would you do if our camp was attacked? I think we need to scout out defensible locations and possible attack points! We never know when the Berserkers may show up and cause trouble. @@ Fly out toward the west. I thought I saw Mildew there? We should investigate.</Text><ID>924307</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I didn't expect to meet Vikings all the way out on this island. Your dragon is here too... I guess you haven't learned your lesson yet.</Text><ID>924308</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the person by the house</Text><ID>924305</ID></Title><Desc><Text>Investigate the house at Icestorm Island</Text><ID>941552</ID></Desc></Data> + 0 + false + + + 1536 + Misc05BT02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>So it is you, Mildew. I was hoping I was wrong. We'll keep our dragons away from you as long as you stay away from us. Got it?! +C'mon, {{Name}}, let's go! @@ Ooh, that guy drives me nuts. He worked against us on Berk for a long time. I'll tell Hiccup that Mildew’s on the island. +We still have the island to explore! Fly down close to the ocean, go around the coast and keep scanning the island for notable landmarks.</Text><ID>924311</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This looks like an ancient dock that ships must have used to come and go from this island.</Text><ID>924312</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceCavesExit</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly along the coast of the island</Text><ID>924309</ID></Title><Desc><Text>Fly close to the water along the coast of the island to look for landmarks</Text><ID>941553</ID></Desc></Data> + 0 + false + + + 1537 + Misc05BT03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We'll have to explore inside those caves but I don't want to bite off more than we can chew right now. Securing the island borders is hard enough! @@ We need to keep an eye out in case enemy ships use this place to dock here. Let’s look for any other places we'll need to watch for invading troops. Can you look for another place ships could come in for a safe berth?</Text><ID>924315</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>If I were sailing to the island, I would stop here with my ship. It's easily accessible from the ocean and has some coverage from the weather. We need to keep an eye on this place, too!</Text><ID>924316</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiddenCove01</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find another safe harbor on the island</Text><ID>924313</ID></Title><Desc><Text>Keep traveling along the coast to find another safe harbor on the island</Text><ID>941554</ID></Desc></Data> + 0 + false + + + 1538 + Misc05BT04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We've almost covered the island. Let's keep moving around the shore to see if we see any more notable landmarks.</Text><ID>924319</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh! We're almost back to the group. We've covered the entire island!</Text><ID>924320</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Glacier</Value></Pair><Pair><Key>Range</Key><Value>11</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly along the island coast</Text><ID>924317</ID></Title><Desc><Text>Keep flying along the island's coast</Text><ID>941555</ID></Desc></Data> + 0 + false + + + 1539 + Misc05BT05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Go back to camp and let Hiccup know what we've uncovered about the island. We'll be ready if we're ever under attack!</Text><ID>924323</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's wise of Astrid to consider our security. Thank you for surveying the island with her!</Text><ID>924324</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup back at camp</Text><ID>924321</ID></Title><Desc><Text>Talk to Hiccup at the camp in Icestorm Island</Text><ID>924476</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202789 + true + 300 + 300 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 202789 + true + 70 + 70 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202789 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202789 + true + 50 + 50 + + 0 + +
+ false +
+ + 1652 + Arctic_Mildew03 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMildew03T01.unity3d/PfGrpArcticMildew03T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfHouseMildew</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Smelly Matter</Text><ID>924387</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1634 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1652 + 1549 + 0 + + + 1 + 1652 + 1550 + 0 + + + 1 + 1652 + 1552 + 0 + + + 1 + 1652 + 1553 + 0 + + + 1 + 1652 + 1554 + 0 + + + 1 + 1652 + 1555 + 0 + + + 1 + 1652 + 1556 + 0 + + + + 1 + 202866 + 0 + + 1549 + Mildew03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, I'm glad you're here. Mildew used to complain about everything back on Berk, and it's no different on Icestorm Island. He's been talking my ear off about dragon droppings on his house. @@ Could you do me a favor and talk to him? He seems to listen to you more than me.</Text><ID>924265</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Look at this disgusting mess! I wake up to find that these horrible dragons ruined my roof. Someone needs to rid this island of them for good!</Text><ID>924266</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mildew</Text><ID>926014</ID></Title><Desc><Text>Talk to Mildew at Icestorm Island</Text><ID>941517</ID></Desc></Data> + 0 + false + + + 1550 + Mildew03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, boy... Well, we need to figure out what kind of dragon left these droppings. Fly over Mildew's house and look down on his roof to investigate.</Text><ID>924269</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait a minute... Those aren't dragon droppings at all. Those are bird droppings.</Text><ID>924270</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AboveMildewHouse</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the droppings on his house</Text><ID>924267</ID></Title><Desc><Text>Fly over Mildew's house to get a look at the roof</Text><ID>941518</ID></Desc></Data> + 0 + false + + + 1552 + Mildew03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Do you see any birds nearby? If we can point them out to Mildew, he'll stop blaming dragons. Fly around Mildew's house until you see a flock of birds.</Text><ID>924277</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That explains it! Even though puffins spend most of their lives at sea, they like to build nests in craggy cliffs, like the one right next to Mildew's house. Puffins return to land to lay their eggs. They must fly right over Mildew's house!</Text><ID>924278</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PuffinNest</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the source of the droppings</Text><ID>924275</ID></Title><Desc><Text>Fly around Mildew's house until you see a flock of birds</Text><ID>941519</ID></Desc></Data> + 0 + false + + + 1553 + Mildew03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Go back to Mildew and explain to him that breeding season migration patterns are why the puffins are dirtying his house. Hopefully, he'll listen to you.</Text><ID>924281</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Puffin droppings? Bah! I don't believe you. If birds were responsible, then how come this hasn't happened before? As soon as you dragon-trainers show up, my roof gets soiled. Explain that!</Text><ID>924282</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mildew</Text><ID>926014</ID></Title><Desc><Text>Go back to Mildew to tell him what you found out</Text><ID>941520</ID></Desc></Data> + 0 + false + + + 1554 + Mildew03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>They'll come back to the same nest every year, so this will definitely happen again. You see, many bird species migrate seasonally to warmer nesting grounds, just like dragons. The puffin migrates from sea to land, but other birds have longer migrations. The arctic tern even flies from the Arctic all the way south to the Antarctic! @@ Mildew will have this problem on his hands every year. Let's teach Mildew about bird migrations. {{Input}} on Mildew to explain everything to him.</Text><ID>924284</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>A likely story, but you can't fool me! I know those are dragon droppings and someone better help me clean it off.</Text><ID>924285</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizArcticMildew03T05.unity3d/PfUiQuizArcticMildew03T05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Mildew</Text><ID>924283</ID></Title><Desc><Text>{{Input}} on Mildew and answer the quiz</Text><ID>941521</ID></Desc></Data> + 0 + false + + + 1555 + Mildew03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, it was worth a try. I guess we'll still give him a hand. I bet Mildew will have a hard time getting hot water to clean his house. @@ Luckily, we know a place where we can get some hot water! Could you go to the hot spring and fetch some hot water in the geothermal area of the Ice Caves? </Text><ID>924288</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's plenty. Good work!</Text><ID>924289</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Geothermalspring</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fetch hot water from the hot springs in the Ice Caves</Text><ID>924286</ID></Title><Desc><Text>Go to the hot spring in the Ice Caves to get some hot water</Text><ID>941522</ID></Desc></Data> + 0 + false + + + 1556 + Mildew03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You've been a huge help, {{Name}}. Thank you! Bring the hot water back to Mildew. Hopefully this will be settled.</Text><ID>924292</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Making amends, are you? Well, I forgive you. Just keep your dragons off my property!</Text><ID>924293</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring the hot water to Mildew</Text><ID>924290</ID></Title><Desc><Text>Bring the hot water back to Mildew</Text><ID>941523</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202866 + true + 300 + 300 + + 0 + + + + 65 +

2

+ 0 + + 1 + 633 + 202866 + true + 65 + 65 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 202866 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202866 + true + 200 + 200 + + 0 + +
+ false +
+ + 1655 + Arctic_Groncicle08 + 25 +

+ <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle08T03.unity3d/PfGrpArcticGroncicle08T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Secrets of the Ancients</Text><ID>924386</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1620 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1655 + 1562 + 0 + + + 1 + 1655 + 1563 + 0 + + + 1 + 1655 + 1564 + 0 + + + 1 + 1655 + 1565 + 0 + + + 1 + 1655 + 1566 + 0 + + + 1 + 1655 + 1567 + 0 + + + 1 + 1655 + 1568 + 0 + + + 1 + 1655 + 1569 + 0 + + + + 1 + 202796 + 0 + + 1562 + Groncicle08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hello, {{Name}}! We've discovered many things and made so much progress recently. I'm so eager to see the results that I can barely contain my excitement! @@Did you find something else out there in the caves? Will you show it to me?</Text><ID>924398</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I can't believe this, my dear friend. This is it. You've found the last missing piece of the tablet I have been working on for so long! +</Text><ID>924399</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11191</Value></Pair><Pair><Key>ItemDescription</Key><Value>Final Petroglyph Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the tablet piece to the Archaeologist</Text><ID>924396</ID></Title><Desc><Text>Bring the tablet piece to the Archaeologist at Icestorm Island</Text><ID>941497</ID></Desc></Data> + 0 + false + + + 1563 + Groncicle08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Voila! We have a complete picture. {{Input}} on the Petroglyph to look at it!</Text><ID>924402</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The carving seems to point to the Groncicle statue. Could that be the final piece of the puzzle?</Text><ID>924403</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Tablet</Value></Pair><Pair><Key>Name</Key><Value>UseTablet</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the petroglyph on the table</Text><ID>926385</ID></Title><Desc><Text>{{Input}} on the petroglyph on the table at the camp in Icestorm Island</Text><ID>941498</ID></Desc></Data> + 0 + false + + + 1564 + Groncicle08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What are we waiting for? I can't wait to see where this will lead us. I'll meet you at the ruins once I've gathered my tools.</Text><ID>924406</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I have my chisel, brush, and journal. I'm ready to go!</Text><ID>924407</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ruins</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet the Archaeologist at the ruins in the Ice Caves</Text><ID>924404</ID></Title><Desc><Text>Meet the Archaeologist at the ruins in the Ice Caves</Text><ID>924404</ID></Desc></Data> + 0 + false + + + 1565 + Groncicle08T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle08T04.unity3d/PfGrpArcticGroncicle08T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Can you walk up to that Groncicle statue and retrieve it for us? We'll need it to open this door!</Text><ID>924410</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We've come so far, {{Name}}. I am very impressed with your adventuring skills!</Text><ID>924411</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfGroncicleKey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the Groncicle statue's medallion</Text><ID>924408</ID></Title><Desc><Text>Grab the medallion from the Groncicle statue</Text><ID>941499</ID></Desc></Data> + 0 + false + + + 1566 + Groncicle08T05 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfGrpArcticGroncicle08T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Ruins</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The top portion of the tablet shows a giant door etched with ancient Viking runes. If I remember correctly, we saw that door in the middle of the ruins! {{Input}} on me and escort me there, my friend.</Text><ID>924414</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Astounding. What excellent craftsmanship!</Text><ID>924415</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TreasureRoomDoor</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Archaeologist and bring him to the door</Text><ID>924412</ID></Title><Desc><Text>{{Input}} on the Archaeologist and escort him to the door</Text><ID>941500</ID></Desc><Reminder><Text>Stay with the Archaeologist!</Text><ID>936236</ID></Reminder><Failure><Text>Oh no! You left the Archaeologist behind!</Text><ID>936225</ID></Failure></Data> + 0 + false + + + 1567 + Groncicle08T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It looks like the door is constructed much like a puzzle. These parts will rotate and interlock with each other, opening once the key is entered! Thanks to you, we have that key. @@ {{Input}} on the door and put the medallion into the slot!</Text><ID>924418</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Excellent. I'm getting chills down my spine!</Text><ID>924419</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfRuinsDoor</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfRuinsDoor</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the door</Text><ID>926743</ID></Title><Desc><Text>{{Input}} on the door to put the eye in the slot</Text><ID>941501</ID></Desc></Data> + 0 + false + + + 1568 + Groncicle08T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Now this is the adventurous part of archaeology: exploring the place you've just discovered. Let's go in.</Text><ID>924422</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>A dead end. Or is it?</Text><ID>924423</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Chasm</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue into the room</Text><ID>924420</ID></Title><Desc><Text>Go into the room</Text><ID>941502</ID></Desc></Data> + 0 + false + + + 1569 + Groncicle08T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That room on the other side of this cave looks very compelling, but I cannot jump this chasm! {{Name}}, you mentioned that your Groncicle is able to shoot a special frozen fireball. Perhaps that would be of assistance! {{Input}} on the other side of the chasm and shoot it with your Groncicle.</Text><ID>924426</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you! This is the perfect bridge. I'm glad we won't have to make a leap of faith over this chasm.</Text><ID>924427</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_OtherSideIceBridge</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>BridgeTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your Groncicle to shoot the far chasm side</Text><ID>924424</ID></Title><Desc><Text>{{Input}} on the other side of the chasm and shoot it with your Groncicle</Text><ID>941503</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 202796 + true + 80 + 80 + + 0 + + + + 350 +

1

+ 0 + + 1 + 368 + 202796 + true + 350 + 350 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202796 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202796 + true + 350 + 350 + + 0 + +
+ false +
+ + 1656 + Arctic_SpeedStinger03 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger03T00.unity3d/PfGrpArcticSpeedStinger03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Helpless Predator</Text><ID>924692</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1627 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1656 + 1571 + 0 + + + 1 + 1656 + 1572 + 0 + + + 1 + 1656 + 1573 + 0 + + + 1 + 1656 + 1574 + 0 + + + + 1 + 202797 + 0 + + 1571 + SpeedStinger03T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger03T01.unity3d/PfGrpArcticSpeedStinger03T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless and I were flying over the island when we witnessed an amazing thing! While we were flying overhead, an avalanche cascaded down the mountain. It was amazing but looked very dangerous. @@ An avalanche is a natural hazard and results from natural processes. It occurs when a gigantic chunk of ice and snow breaks away from the side of a mountain and moves down the mountain with great speed and force. Most avalanches occur within 24 hours after 12 or more inches of fresh snow has fallen. @@ An avalanche can reach speeds of up to 80 miles per hour when falling down the mountain. +Would you mind going back to the avalanche site and checking it out?</Text><ID>924434</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's a baby Speed Stinger! It looks like it's stuck under the mounds of snow, and it can't get itself out.</Text><ID>924435</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Avalanche</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the avalanche</Text><ID>924432</ID></Title><Desc><Text>Go to the avalanche site in the Arctic</Text><ID>941621</ID></Desc></Data> + 0 + false + + + 1572 + SpeedStinger03T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger03T01.unity3d/PfGrpArcticSpeedStinger03T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>[c][3eebff]Most avalanches occur within 24 hours after 12 or more inches of fresh snow has fallen. It can reach speeds of up to 80 miles per hour when falling down the mountain.[/c][ffffff] This dragon is lucky to even be alive! @@ I think dragon fire could get the baby Speed Stinger out of this mess. A well placed fireball would destroy the remnants of the avalanche and set the baby dragon free.</Text><ID>924438</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Avalanche</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the snow and shoot it</Text><ID>924436</ID></Title><Desc><Text>Use your dragon to shoot a fireball at the avalanche</Text><ID>941622</ID></Desc></Data> + 0 + false + + + 1573 + SpeedStinger03T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWSpeedStingerBabyNPC</Asset><Location>PfMarker_SpeedStringerBaby</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Speed Stinger is now safe, but it won't survive long without the support of its pack. It needs to be back at the cave. {{Input}} on the dragon and lead it back to the cave, {{Name}}.</Text><ID>924441</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Speed Stingers aren't chasing you out of the cave. They must know that you're helping one of their own! They seem pleased.</Text><ID>924442</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpeedStingerBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the baby and lead it to its home</Text><ID>924439</ID></Title><Desc><Text>{{Input}} on the baby Speed Stinger and lead it back to the cave</Text><ID>941623</ID></Desc><Reminder><Text>Don't leave the Speed Stinger behind!</Text><ID>936234</ID></Reminder><Failure><Text>Aww, you were too far away!</Text><ID>936235</ID></Failure></Data> + 0 + false + + + 1574 + SpeedStinger03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hiccup should know what happened with the baby Speed Stinger.</Text><ID>924445</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's amazing news! We've never been able to get close to Speed Stingers before, since they are so aggressive and territorial. Your kind act must have changed the Speed Stingers' minds about you. I wonder if we can use your connection to even train the Speed Stingers in the future! Great job, {{Name}}.</Text><ID>924446</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup at the camp</Text><ID>941624</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 202797 + true + 80 + 80 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 202797 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202797 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202797 + true + 350 + 350 + + 0 + +
+ false +
+ + 1658 + Arctic_Misc01 + 4 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Frostbite-Free</Text><ID>924673</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1656 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1658 + 1583 + 0 + + + 1 + 1658 + 1584 + 0 + + + 2 + 1658 + 1659 + 0 + + + 1 + 1658 + 1588 + 0 + + + + 1 + 202799 + 0 + + 1659 + Misc01T05 + 4 +

1658

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1659 + 1587 + 0 + + + + 1 + 202800 + 0 + + 1587 + Misc01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If you aren't careful, you can easily get frostbite or hypothermia. [c][3eebff]Frostbite[/c][ffffff] is a skin injury from prolonged exposure to cold temperatures. It usually occurs on the nose, fingers, and toes. You can also get [c][3eebff]hypothermia[/c][ffffff], which is the condition of having low body temperature caused by prolonged exposure to cold temperatures. @@ What you need is thick, thermal clothing to keep yourself protected. Astrid should have arctic-appropriate clothing for you to wear.</Text><ID>924507</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thermal clothing? Yes! Hiccup had me looking for a couple sets as soon as we started settling at Icestorm Island. Here you go!</Text><ID>924508</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11661 + + 1 + 2466 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11662 + + 1 + 2467 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11663 + + 1 + 2468 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11665 + + 1 + 2464 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11667 + + 1 + 2465 + 202800 + true + 1 + 1 + + 0 + +
+ false + + + 1583 + Misc01T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberSpeedStingerWood</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, are you feeling okay? You look a little flushed. You need to be mindful of your health. The harsh elements and temperatures on Icestorm Island can be really dangerous if you don’t take the right precautions! @@ Luckily, Gobber came by on the island. He’s no Gothi, but he’ll be able to fix you up if you’re feeling sick. He went up near the Speed Stingers’ territory. Please, do me a favor and talk to him about your health.</Text><ID>924511</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hello, {{greeting}}! Beard of Thor, you look terrible!</Text><ID>924512</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Go talk to Gobber in the Arctic</Text><ID>941535</ID></Desc></Data> + 0 + false + + + 1584 + Misc01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You're shivering like a wet yak in winter! Well, it's no wonder. You're in the middle of this blizzard in those flimsy clothes! You need to head back to Berk right away, and get out of his harsh climate for a while. I'll help you there.</Text><ID>924515</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can always hug {{dragon name}} if you really need heat, but you need something a bit more permanent if you want to go back to Icestorm Island.</Text><ID>924516</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly back to the School</Text><ID>924488</ID></Title><Desc><Text>Fly to School to get warmer clothes</Text><ID>941536</ID></Desc></Data> + 0 + false + + + 1588 + Misc01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Put them on and come find me so I can take a look! Open your Journal and switch to the customization tab to change your clothes.</Text><ID>924527</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>That's more like it, {{greeting}}! With hypothermia, a person's body temperature drops well below the usual 98.6 degrees Fahrenheit and their body can't work properly. It can be quite dangerous! You need to bundle up here and protect yourself from the cold at this island. Now you should be able to explore any part of Icestorm Island while staying hypothermia and frostbite-free!</Text><ID>924528</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber in Berk</Text><ID>924674</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202799 + true + 50 + 50 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202799 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202799 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202799 + true + 200 + 200 + + 0 + +
+ false +
+ + 1660 + Arctic_Ruins06 + 4 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Under Construction</Text><ID>924681</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1622 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1660 + 1589 + 0 + + + 1 + 1660 + 1590 + 0 + + + 1 + 1660 + 1591 + 0 + + + 1 + 1660 + 1592 + 0 + + + 1 + 1660 + 1593 + 0 + + + 1 + 1660 + 1594 + 0 + + + 1 + 1660 + 1595 + 0 + + + 1 + 1660 + 1596 + 0 + + + 1 + 1660 + 1597 + 0 + + + + 2 + 202801 + 0 + + 1589 + Ruins06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}. Gobber's supposed to be constructing the school expansion buildings. He tends to have… extravagant ideas. Could you talk to him at the School? Maybe you can help keep his ideas grounded.</Text><ID>924608</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Aye, {{greeting}}, I do need help. I wanted to make the school expansion on Icestorm Island a grand fortress with giant crossbows and a row of magnificent catapults! Unfortunately, the Headmaster shot down that idea...</Text><ID>924609</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber at the School</Text><ID>941609</ID></Desc></Data> + 0 + false + + + 1590 + Ruins06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Could you ask the other dragon-trainers what kind of buildings we should build? I've got too many ideas bouncing around in my head. I can't make up my mind! @@ Ask Hiccup first. He probably has a good idea.</Text><ID>924612</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, this is the School of Dragons, isn't it? Trainers need space to work with their dragons! Gobber should design a big building dedicated to dragon training.</Text><ID>924613</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1591 + Ruins06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Of course, Hiccup wants more room for dragon training. We already have the Training Grounds and the arena! What more could he want? @@ I think we need a second opinion. Let's ask Astrid what she thinks.</Text><ID>924616</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>New buildings for the school? I know exactly what we need! We should have a place where students can practice their combat and defense skills. @@ You never know when you might be without your dragon. Every Viking should learn how to fend off enemies with just a sword and shield!</Text><ID>924617</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 1592 + Ruins06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Astrid's got a good point. I'll see what I can do, but we need more ideas. Though I hesitate... we should probably ask the twins Ruffnut and Tuffnut too. Let's ask Tuffnut first. I can only handle them one at a time...</Text><ID>924620</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Oh, man! Ruffnut and I were talking about this earlier. We think it'd be cool to have a 'stretching spa'! You know, a spa where they strap you to this device that can make you taller or shorter. It would put Icestorm Island on the map!</Text><ID>924621</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutIdle02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 1593 + Ruins06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'm going to have to say...no. +Ask Ruffnut what she thinks. Any idea is better than Tuffnut's!</Text><ID>924624</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Ooh. How about a 'smelling station'? We could put everything there from rotten eggs to a pair of Gobber's underpants. It'd be great for our pranks!</Text><ID>926325</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 1594 + Ruins06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>They say two heads are better than one, but I don't think it applies to these two. +Let's ask Snotlout next. Who knows? Maybe he'll have a good idea for once.</Text><ID>924627</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Can't decide what to build for the school expansion? Ha, that's easy! You should build a huge statue of me and Hookfang right in the middle of everything. Just make sure you get my handsome face right!</Text><ID>924628</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 1595 + Ruins06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'm impressed! That's got to be the worst idea so far. We'll probably have more luck with Fishlegs. Let's see if he can come up with something.</Text><ID>924631</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, oh, I know! What about building classrooms? All the students can read tons of books and learn every little fact about every dragon out there. It would be the best thing ever!</Text><ID>924632</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 1596 + Ruins06T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>That idea isn't half bad! I think I've made up my mind. Thanks for helping me, {{greeting}}. Would you mind chopping some wood in the Wilderness for me? I'll need 8 more Wood logs to finish the job.</Text><ID>924635</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Good work!</Text><ID>924636</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect 8 Wood Logs from the Wilderness</Text><ID>924633</ID></Title><Desc><Text>Chop 8 Wood Logs from the Wilderness</Text><ID>941610</ID></Desc></Data> + 0 + false + + + 1597 + Ruins06T09 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberArcticCamp</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'm nearly done with the building. I told you I could build it faster than you could say yak milk stew! I just needed a little inspiration. @@ Can you fly to Icestorm Island and give me the wood you collected? A few finishing touches and it'll be done.</Text><ID>924639</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>What do you think of our brand-new classroom? I also built dorms so that you and Hiccup don't have to build another igloo when the next blizzard hits. @@ We can always add more later, but for now my work here is done. I'll be heading back to tell the Headmaster that we succeeded in expanding the school. Thanks for the help, {{greeting}}!</Text><ID>924640</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver 8 Wood Logs to Gobber at Icestorm Island</Text><ID>924637</ID></Title><Desc><Text>Bring 8 Wood Logs to Gobber</Text><ID>941611</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 202801 + true + 300 + 300 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 202801 + true + 70 + 70 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202801 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202801 + true + 50 + 50 + + 0 + +
+ false +
+ + 1661 + Arctic_Misc04 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Surveying the Night Sky</Text><ID>924677</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1627 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1661 + 1598 + 0 + + + 1 + 1661 + 1599 + 0 + + + 2 + 1661 + 1662 + 0 + + + 1 + 1661 + 1601 + 0 + + + 1 + 1661 + 1602 + 0 + + + + 1 + 202802 + 0 + + 1662 + Misc04T03 + 4 +

1661

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Fly back to Heather</Text><ID>924676</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1662 + 1600 + 0 + + + + 1 + 202803 + 0 + + 1600 + Misc04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It worked out this time, but that reminds me. Our dragons can protect us if we get into trouble, but the Archaeologist hasn't trained a dragon! He must feel really nervous when he's exploring new lands. I wonder if we can help him see danger before it gets close. @@ Wait, I know just what will help him out! Heather and I have been working on a new prototype back at the School, and I'm sure it would help him spot friend or foe from afar. Can you go back to the School and ask Heather if she made the concave and convex lenses for the telescope? Thanks pal.</Text><ID>924531</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hiccup and I put our heads together and got to work on this telescope. We've applied everything we've learned so far, and I think this one is our best yet!</Text><ID>924532</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Fly back to Heather</Text><ID>924676</ID></Title><Desc><Text>Go talk to Heather at the School</Text><ID>941547</ID></Desc></Data> + 0 + false + + false + + + 1598 + Misc04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you help me out, {{Name}}? I've noticed that the Archaeologist has been looking nervously toward the ocean. I don't quite know our new friend very well but I think he trusts you. Will you talk to him?</Text><ID>924535</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hello there, friend! I hate to alarm you, but there are dark shapes swimming towards us in the water. In my experience, that's the sign of a dangerous dragon!</Text><ID>924536</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Go talk to the Archaeologist in the Arctic</Text><ID>941548</ID></Desc></Data> + 0 + false + + + 1599 + Misc04T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMisc07T02.unity3d/PfGrpArcticMisc07T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh. That's right, you can train dragons. Forgive me. A lifetime of habit is hard to break! Can you fly your dragon out to the water and see if you can convince the dragon that we aren't its prey?</Text><ID>924539</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These animals aren't going to harm us! They look like they're charming creatures.</Text><ID>924540</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Narwhals</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the water and search for danger</Text><ID>924537</ID></Title><Desc><Text>Fly your dragon out to the dark shapes in the water</Text><ID>941549</ID></Desc></Data> + 0 + false + + + 1601 + Misc04T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Telescope02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You should take the telescope back to the Arctic and give it to the Archaeologist. I hope he enjoys it!</Text><ID>924543</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You're telling me that this device will let me see farther?</Text><ID>924544</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Telescope</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet the Archaeologist in the Arctic</Text><ID>924541</ID></Title><Desc><Text>Give the telescope to the Archaeologist back in the Arctic</Text><ID>941550</ID></Desc></Data> + 0 + false + + + 1602 + Misc04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That's amazing! I run across so many new marvels in my travels and this is one of the greatest yet. Can you show me how it works? {{Input}} on the telescope and look through the lens.</Text><ID>924547</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I hope you can put the telescope to good use. You've been a great help to us in Icestorm Island and I wanted to return the favor. I hope we can keep working together and uncover the secrets of this land!</Text><ID>924548</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Telescope</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the telescope</Text><ID>930364</ID></Title><Desc><Text>{{Input}} on the telescope and look through it</Text><ID>941551</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202802 + true + 60 + 60 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 202802 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202802 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202802 + true + 50 + 50 + + 0 + +
+ false +
+ + 1663 + Arctic_Groncicle09 + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle09T00.unity3d/PfGrpArcticGroncicle09T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ArchaeologistSchool</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpArcticGroncicle09T09.unity3d/PfGrpArcticGroncicle09T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Coming Threat</Text><ID>924671</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1636 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1663 + 1604 + 0 + + + 1 + 1663 + 1605 + 0 + + + 1 + 1663 + 1606 + 0 + + + 2 + 1663 + 1664 + 0 + + + 1 + 1663 + 1608 + 0 + + + 1 + 1663 + 1609 + 0 + + + 1 + 1663 + 1759 + 0 + + + 2 + 1663 + 1665 + 0 + + + 1 + 1663 + 1611 + 0 + + + 1 + 1663 + 1760 + 0 + + + 1 + 1663 + 1761 + 0 + + + 1 + 1663 + 1762 + 0 + + + + 1 + 202804 + 0 + + 1664 + Groncicle09T04 + 25 +

1663

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1664 + 1607 + 0 + + + + 1 + 202805 + 0 + + 1607 + Groncicle09T04 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Igloo</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I'll talk to them and buy you some time to escape. Go on without me. @@ And {{Name}} – thank you.</Text><ID>924470</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're back. Where's Mildew? Isn't he coming with us? @@ Wow, I didn't expect that from him. I'm touched... I wish we could change his mind, but we're out of time!</Text><ID>924471</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup back at the camp</Text><ID>924468</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11739 + + 1 + 2057 + 202805 + true + 1 + 1 + + 0 + +
+ false + + + 1665 + Groncicle09T08 + 25 +

1663

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1665 + 1610 + 0 + + + + 1 + 202806 + 0 + + 1610 + Groncicle09T08 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWValka</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>You can count on me to raise the alarm! You should go back to Berk and tell Valka that Bucket’s on the case.</Text><ID>924474</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Hiccup told me the details of your escape from Icestorm Island. You spotted the Berserkers and bought everyone the time we needed to get out safely. You are a hero, {{Name}}, to Viking and dragon alike!</Text><ID>924475</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>ItemID</Key><Value>11739</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ancient Viking Artifacts</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the artifacts to Valka in Berk</Text><ID>924472</ID></Title><Desc><Text>Give the artifacts to Valka in Berk</Text><ID>924472</ID></Desc></Data> + 0 + false + + + 500 +

2

+ 0 + + 1 + 522 + 202806 + true + 500 + 500 + + 0 + +
+ false +
+ + 1604 + Groncicle09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I have to take more notes in my Field Guide before I remove these items from the room. Would you mind returning to camp first and telling Hiccup the good news? I'm sure he'll be very excited to know about this amazing discovery.</Text><ID>924478</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow! I'd love to see that room for myself.</Text><ID>924479</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at the camp in Icestorm Island</Text><ID>924476</ID></Title><Desc><Text>Meet Hiccup back at the camp in Icestorm Island</Text><ID>941504</ID></Desc></Data> + 0 + false + + + 1605 + Groncicle09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>While you two were inside the caves, I was watching out for signs of the Berserkers. Well, I was trying to watch for them. Toothless and I couldn't really see anything because a thick fog covered the island. Luckily it just cleared up. Can you use the Telescope and keep an eye on the horizon?</Text><ID>924482</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You see Berserker ships? Not good, not good!</Text><ID>924483</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Telescope</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the Archaeologist's telescope</Text><ID>924480</ID></Title><Desc><Text>Use the telescope to see if you can see the Berserkers</Text><ID>941505</ID></Desc></Data> + 0 + false + + + 1606 + Groncicle09T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We can't stand against that many Berserker warriors. They’ll overwhelm us, even with dragons at our side! I'll raise the alarm to get back to the School. @@ Mildew worked against us, but he's still one of us. The Berserkers will be furious when they find out we took the treasure, and I don't know what they’ll do to him. Can you tell Mildew that he might be in danger?</Text><ID>924486</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>You want to help me? But I've been working against you this entire time. +You… you're a good Viking. We built Berk with good Viking values like yours, not on the backs of dragons.</Text><ID>924487</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mildew</Text><ID>926014</ID></Title><Desc><Text>Talk to Mildew</Text><ID>924263</ID></Desc></Data> + 0 + false + + + 1608 + Groncicle09T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The artifacts we recovered are part of our Viking heritage, and we can't let the Berserkers pillage them. That means we must get out of here now. @@ As the Chief's son, I need to stay behind and see everyone to safety. I need you to fly on ahead with these treasures so that they don't fall into the Berserkers' hands. +Fly, {{Name}}! I'll meet you at the School.</Text><ID>924490</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>{{Name}}, you look exhausted. What's wrong?</Text><ID>924491</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly back to the School</Text><ID>924488</ID></Title><Desc><Text>Fly back to the School with the bag of treasure</Text><ID>941506</ID></Desc></Data> + 0 + false + + + 1609 + Groncicle09T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Come. Catch your breath and tell us what happened. We can help.</Text><ID>924494</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>That's distressing news. We'll need to alert the Berk Guard. I'll make my way to New Berk and we'll need to sound the alarm here. Clueless is nearby, I'm sure he can do it.</Text><ID>924495</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWStoickDO.unity3d/DlgStoickQuestOffer01</Asset><NPC>PfDWStoick</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka at the School</Text><ID>941507</ID></Desc></Data> + 0 + false + + + 1611 + Groncicle09T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We need to get these artifacts to a safe place. Will you take them inside the Great Hall?</Text><ID>924498</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You did it, {{Name}}! I have to admit, you’re pretty amazing.</Text><ID>924499</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Great Hall</Text><ID>923331</ID></Title><Desc><Text>Go inside the Great Hall</Text><ID>941508</ID></Desc></Data> + 0 + false + + + 1759 + Groncicle09T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>On second thought, maybe someone more reliable should do the job. Bucket, perhaps? Tell him to sound the horn, {{Name}}. You can find him at the Lookout.</Text><ID>926143</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I'll get right to it! Everyone will hear the sound of the horn, I promise you.</Text><ID>926144</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket at the Lookout</Text><ID>920903</ID></Title><Desc><Text>Talk to Bucket at the Lookout</Text><ID>926141</ID></Desc></Data> + 0 + false + + + 1760 + Groncicle09T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You helped bring everyone back safely from Icestorm Island like a true Viking warrior! +I know that we had a close call but you’re among friends now. Relax and talk to our friends here in the Great Hall.</Text><ID>926147</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Who would have known that this would have all come from an egg I picked up? Thank you for seeing it all the way through.</Text><ID>926148</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket</Text><ID>923073</ID></Title><Desc><Text>Talk to Bucket</Text><ID>923073</ID></Desc></Data> + 0 + false + + + 1761 + Groncicle09T11 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm glad you brought back our little frozen friend, {{Name}}! He seems to like you a lot. You know, I think dragons can tell if their partner is a good person or not. From the way your dragon took to you, I know that you're a fantastic dragon trainer. @@ Icestorm Island can't be the only undiscovered island beyond Berk. I'm sure there are countless more out there with exciting new dragons to train. And when we find them, I'll be relying on your help again!</Text><ID>926151</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1762 + Groncicle09T12 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My dear friend! Thank you for everything. It feels like everything rushed by so quickly. Together we made discoveries, solved ancient riddles, and unearthed an ancient treasure! I am indebted to you for all your help, but more importantly, I am grateful to have made a true friend. @@ Our discoveries only revealed more unanswered questions. That's the fun of archaeology! For instance, where did the ancient Vikings of Icestorm Island go? How did they use these artifacts? My next journey will be to solve these mysteries. I hope we can work together when our paths cross again. @@ Thank you, {{Name}}. Thank you.</Text><ID>926154</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>11002</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>11696</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>11140</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>11141</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>11142</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 202804 + true + 100 + 100 + + 0 + +
+ + 400 +

1

+ 0 + + 1 + 418 + 202804 + true + 400 + 400 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202804 + true + 200 + 200 + + 0 + +
+ + 400 +

8

+ 0 + + 1 + 1750 + 202804 + true + 400 + 400 + + 0 + +
+ false +
+ + 1666 + Arctic_Misc10 + 12 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>That Sky is on Fire</Text><ID>925970</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1648 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1666 + 1613 + 0 + + + 1 + 1666 + 1614 + 0 + + + 1 + 1666 + 1616 + 0 + + + 1 + 1666 + 1617 + 0 + + + 1 + 1666 + 1618 + 0 + + + + 1 + 202807 + 0 + + 1613 + Misc10T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>So I don't want to alarm you but I think the sky is burning. We're all doomed! +I saw it while flying over here from the school. The entire sky was bathed in green flames! It's only a matter of time before it reaches us here at camp. @@ Hey, don’t give me that look. I'm telling the truth! If you don't believe me, go take a look for yourself. Fly out toward the glow in the sky and I’m sure you’ll be able to find it.</Text><ID>924553</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It looks very nice, but it's a shame that the world is going to end. I knew that pretty things would be the death of me one day! </Text><ID>924554</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNorthernLightsDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the light over Icestorm Island</Text><ID>924551</ID></Title><Desc><Text>Fly out toward the mysterious glow in the sky</Text><ID>941574</ID></Desc></Data> + 0 + false + + + 1614 + Misc10T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You need to tell Hiccup right now so that we can prepare to get out of here!</Text><ID>924557</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Strange lights in the sky? I've heard of something like this.</Text><ID>924558</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron20</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1616 + Misc10T03 + <Data><Setup><Scene>OpenOceanNorthernLightsDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_HiccupGround</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I think you're talking about the [c][3eebff]Northern Lights[/c][ffffff], but I can't be sure unless I see it with my own eyes. I'll meet you there!</Text><ID>924561</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoa! This is crazy!</Text><ID>924562</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNorthernLightsDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the lights in the sky</Text><ID>924559</ID></Title><Desc><Text>Go back to the Northern Lights</Text><ID>941575</ID></Desc></Data> + 0 + false + + + 1617 + Misc10T04 + <Data><Setup><Scene>OpenOceanNorthernLightsDO</Scene><Asset>RS_DATA/PfGrpArcticMisc10T04.unity3d/PfGrpArcticMisc10T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Yes, this is it! This is the [c][3eebff]Aurora Borealis[/c][ffffff], otherwise known as the Northern Lights. [c][3eebff]It occurs when highly charged electrons from the solar wind interact with elements in the earth's atmosphere. As the electrons enter the earth's upper atmosphere, they will encounter atoms of oxygen and nitrogen at altitudes from 20 – 200 miles above the earth's surface.[/c][ffffff] @@ It's green now, but the color depends on how high this collision occurs and which atoms are struck. Isn't it so beautiful? I really love that I can fly on nights like this. Wanna have fun? Fly into the air and chase the tufts of clouds in the air!</Text><ID>924565</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanNorthernLightsDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWColorfulClouds</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Touch the swirls of light</Text><ID>924563</ID></Title><Desc><Text>Fly into the air and collect the tufts of clouds in the air</Text><ID>941576</ID></Desc></Data> + 0 + false + + + 1618 + Misc10T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for showing this to me, {{Name}}. You should go back to Icestorm Island and let Snotlout know that everything is fine.</Text><ID>924568</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You're sure? It looked just like dragon fire across the entire sky! I think I'll find a different route to fly from now on, just in case it starts spreading.</Text><ID>924569</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout at Icestorm Island</Text><ID>925816</ID></Title><Desc><Text>Go back to Icestorm Island to talk to Snotlout</Text><ID>941577</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202807 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202807 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202807 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202807 + true + 200 + 200 + + 0 + +
+ false +
+ + 1667 + Quest_Tide Pool #1 + 13 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQTidePool01T00.unity3d/PfGrpQTidePool01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Gross, Cool Things</Text><ID>924683</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1015 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 1667 + 1668 + 0 + + + 1 + 1667 + 1615 + 0 + + + 1 + 1667 + 1619 + 0 + + + 1 + 1667 + 1620 + 0 + + + 1 + 1667 + 1621 + 0 + + + 1 + 1667 + 1622 + 0 + + + + 1 + 202808 + 0 + + 1668 + TidePool01T01 + 13 +

1667

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1668 + 1612 + 0 + + + + 1 + 202809 + 0 + + 1612 + TidePool01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Have you had a chance to explore this island yet? My brother and I have already explored every nook and cranny of Berk, and we're just getting started on the School of Dragons. There are totally cool things here, if you just know where to look! I just found an amazing place this morning. Talk to my brother at the School!</Text><ID>924648</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Did Ruffnut say she found it? Because I totally did. </Text><ID>924649</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut.</Text><ID>923318</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11135 + + 1 + 1752 + 202809 + true + 1 + 1 + + 0 + +
+ false + + + 1615 + TidePool01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hehe, doesn't this thing look cool? It's a [c][3eebff]starfish, or otherwise known as a sea star! It's a creature that lives in the sea. This one has 5 arms, but I've seen one with up to 40 arms. It can regenerate new arms if it is attacked by a predator![/c][ffffff] @@ I bet you my sister didn't know that. Ask her if she knew!</Text><ID>924652</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Tuffnut has another think coming if he thinks he knows more than me about starfish and tide pools.</Text><ID>924653</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Mention the starfish to Ruffnut</Text><ID>924650</ID></Title><Desc><Text>Talk to Ruffnut about starfish.</Text><ID>936531</ID></Desc></Data> + 0 + false + + + 1619 + TidePool01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Starfish can be found living up to 20,000 feet below the surface or close to the surface in tide pools. I found the starfish in the rocky pools along the shore. These pools appear during [c][3eebff]low tide[/c][ffffff], when the tide goes out and lowers the water level. @@ These tide pools are just teeming with all kinds of sea life but you can’t always visit them! During [c][3eebff]high tide[/c][ffffff] when the tide comes back in, these pools get completely submerged by the higher water level. +I'll show you what I mean. Fly to the School of Dragons, fly outside the caldera, and fly left. You'll find the tide pool there.</Text><ID>924656</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>There are so many weird creatures here. I love it!</Text><ID>924657</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TidePool</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the tide pools at the school</Text><ID>924654</ID></Title><Desc><Text>Fly outside the caldera and visit the tide pools at the school.</Text><ID>925952</ID></Desc></Data> + 0 + false + + + 1620 + TidePool01T04 + <Data><Offer><Type>Popup</Type><ID>924660</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>There's a unique ecosystem that lives in tide pools. The waves go in and out and supply the tide pool animals with food. Starfish, anemones, seaweed, and sea urchins live in tide pools.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>924661</ID><Asset>RS_DATA/PfUiMissionActionDBTidePool.unity3d/PfUiMissionActionDBTidePool</Asset><NPC>PfDWRuffnut</NPC><Text>Tide pools!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the image of the tide pool</Text><ID>924658</ID></Title><Desc><Text>Look at the image of the tide pool.</Text><ID>924659</ID></Desc></Data> + 0 + false + + + 1621 + TidePool01T05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQTidePool01T05.unity3d/PfGrpQTidePool01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>It's not just fish and creepy crawlers in there. Plants live in tide pools too! Grab that seaweed, {{Name}}.</Text><ID>924664</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfSeaweed</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the seaweed in the tide pool</Text><ID>924662</ID></Title><Desc><Text>Collect the seaweed in the tide pool at the school.</Text><ID>925953</ID></Desc></Data> + 0 + false + + + 1622 + TidePool01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Maybe {{dragon name}} would like this as much as dragon nip. Wouldn't that be a hoot, if we were able to find something new about dragons before Hiccup? +Well, we won't know if we don't try! Feed {{dragon name}} this seaweed.</Text><ID>925956</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That didn't work out but {{dragon name}} is a good sport! When Snotlout tried to feed Hookfang seaweed, it didn't go very well. Hookfang lit up into flames! Snotlout had to jump into the tide pool to cool off. +It was pretty awesome. @@ I had a lot of fun hanging out with you at the tide pool, {{Name}}! Let's do it again sometime.</Text><ID>925957</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>Peteat</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>11135</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on {{dragon name}} and give seaweed</Text><ID>925954</ID></Title><Desc><Text>{{Input}} on your dragon and feed her seaweed.</Text><ID>939185</ID></Desc></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 202808 + true + 35 + 35 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 202808 + true + 250 + 250 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202808 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202808 + true + 200 + 200 + + 0 + +
+ false +
+ + 1669 + Arctic_Misc03 + 3 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Misc03Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger02T02.unity3d/PfGrpArcticSpeedStinger02T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Misc03Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Hiccup, That Slacker</Text><ID>924675</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1671 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1669 + 1623 + 0 + + + 1 + 1669 + 1624 + 0 + + + 1 + 1669 + 1626 + 0 + + + 1 + 1669 + 1625 + 0 + + + 1 + 1669 + 1627 + 0 + + + 2 + 1669 + 1670 + 0 + + + 1 + 1669 + 1629 + 0 + + + + 1 + 202872 + 0 + + 1670 + Misc03T06 + 3 +

1669

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Gobber in Berk</Text><ID>924674</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1670 + 1628 + 0 + + + + 1 + 202847 + 0 + + 1628 + Misc03T06 + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We just have to get some replacement rivets from Gobber. Will you fly back to the Hatchery and ask him to make me some? Ask him for the specifications I made. I don't want any of his special improvements!</Text><ID>925767</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hiccup needs some help to fix the tail fin? Great! I've been working on a few improvements. He might not think he wants them, but I guarantee he'll be pleased with my changes!</Text><ID>925768</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Title><Desc><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 10495 + + 1 + 1795 + 202847 + true + 3 + 3 + + 0 + +
+ false + + + 1623 + Misc03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>{{Name}}! Have you seen Hiccup? +No? You need to find him and tell him to come back! His pile of scrolls to sign is getting taller than Bucket. We'll have a big problem when it tips over.</Text><ID>925771</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No, Hiccup isn't here. I've been looking for him, too. I wanted to bounce some ideas off him for new training techniques, but he's nowhere on this island!</Text><ID>925772</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the Training Grounds to look for Hiccup</Text><ID>925769</ID></Title><Desc><Text>Go to the Training Grounds to find Hiccup</Text><ID>941543</ID></Desc></Data> + 0 + false + + + 1624 + Misc03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm sure he's off looking for dragons at Icestorm Island. Let's go there and find him.</Text><ID>925775</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go Back to Icestorm Island</Text><ID>925773</ID></Title><Desc><Text>Go to Icestorm Island to look for Hiccup</Text><ID>941544</ID></Desc></Data> + 0 + false + + + 1625 + Misc03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What if Hiccup is in trouble? Look for him!</Text><ID>925778</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Boy, am I glad to see you here. Toothless and I lost track of time. We were out in this snowstorm for much too long, and Toothless's tail fin froze over. We tried to use it to fly… then snap! @@ It fell off, and Toothless can't get out of here without it. I'll need your help to get off this rock.</Text><ID>925779</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Look for Hiccup at Icestorm Island</Text><ID>925776</ID></Title><Desc><Text>Look for Hiccup at Icestorm Island</Text><ID>925776</ID></Desc></Data> + 0 + false + + + 1626 + Misc03T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMisc03T04.unity3d/PfGrpArcticMisc03T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We'll have a better chance of finding Hiccup if we split up and search the island. I'm sure we'll meet him in no time. You head out toward the west!</Text><ID>925786</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Uh oh. This is the tail fin that Hiccup made for Toothless!</Text><ID>925787</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWTailFin</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for clues to Hiccup's whereabouts</Text><ID>925784</ID></Title><Desc><Text>Look for Toothless's tail fin on the island</Text><ID>941545</ID></Desc></Data> + 0 + false + + + 1627 + Misc03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh! Is that the tail fin, {{Name}}?</Text><ID>925782</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh man. We lost a bit of the metal pieces that hold it together. I can't get Toothless flying with this.</Text><ID>925783</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8025</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tail Fin</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the tail fin to Hiccup</Text><ID>925780</ID></Title><Desc><Text>Bring the tail fin to Hiccup</Text><ID>941546</ID></Desc></Data> + 0 + false + + + 1629 + Misc03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Give that to Hiccup and he'll know what to do!</Text><ID>925790</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, it's going to be good to be back in the air! Thanks for your help, {{Name}}. I would have been in some real trouble without you.</Text><ID>925791</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>10495</Value></Pair><Pair><Key>ItemDescription</Key><Value>Screw</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup the screws at Icestorm Island</Text><ID>925788</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202872 + true + 60 + 60 + + 0 + +
+ + 350 +

1

+ 0 + + 1 + 368 + 202872 + true + 350 + 350 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202872 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202872 + true + 350 + 350 + + 0 + +
+ false +
+ + 1671 + Arctic_Ruins05 + 27 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Treasure Hunter</Text><ID>924680</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1646 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1671 + 1630 + 0 + + + 1 + 1671 + 1631 + 0 + + + 1 + 1671 + 1632 + 0 + + + 1 + 1671 + 1633 + 0 + + + 1 + 1671 + 1634 + 0 + + + 1 + 1671 + 1635 + 0 + + + 1 + 1671 + 1636 + 0 + + + + 1 + 202920 + 0 + + 1630 + Ruins05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Why hello, my friend! Are you surprised to see me here? I came to bring some school supplies and to visit my friend, the Archaeologist. We have a deal! I give him treasure maps to help him find his artifacts, and in return he shares some of the valuables! Will you ask him if he has anything for me?</Text><ID>925878</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah hah! Johann, my friend and partner, is here? I suspect he is looking for another artifact to add to his impressive collection. Well, I am only happy to help!</Text><ID>925879</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Go talk to the Archaeologist at camp in Icestorm Island</Text><ID>941605</ID></Desc></Data> + 0 + false + + + 1631 + Ruins05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There is an interesting ruin I've seen on the other side of the island. I'm sure you'll be able to find something there that would interest Johann. You should go there and look. @@ I'd show you where the house is, my friend, but I find that half the fun of it all is in the journey! You will appreciate finding this item much more if you discover it yourself. Good luck, and Thorspeed!</Text><ID>925882</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This building has been here for many years. Who lived in this house so long ago?</Text><ID>925883</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AbandonedHouse</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the ancient house</Text><ID>925880</ID></Title><Desc><Text>Go visit the house on the other side of the island</Text><ID>941606</ID></Desc></Data> + 0 + false + + + 1632 + Ruins05T03 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticRuins05T00.unity3d/PfGrpArcticRuins05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The house seems to be a good place to investigate.</Text><ID>925896</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfStoickGrandfatherArmor</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for any signs of artifacts in the house</Text><ID>925894</ID></Title><Desc><Text>Look in the house for any signs of artifacts</Text><ID>941607</ID></Desc></Data> + 0 + false + + + 1633 + Ruins05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Johann would surely want to take a look at this armor that you've found.</Text><ID>925886</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>This armor looks exactly the sort of thing I trade for!</Text><ID>925887</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go back to Johann</Text><ID>925884</ID></Title><Desc><Text>Go back to Johann with the armor</Text><ID>941608</ID></Desc></Data> + 0 + false + + + 1634 + Ruins05T05 + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>No, wait. This armor looks remarkably Viking in nature. In fact, I feel like I have seen this symbol on Berk before. I cannot in good conscience take this from its rightful owners! Take this armor back to Berk and show it to someone who might know more about it.</Text><ID>925890</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Why, I know that symbol like the back of my missing hand! Wherever that happens to be. That's a symbol of the Horrendous Haddocks. In short, that armor belongs to Hiccup!</Text><ID>925891</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Desc></Data> + 0 + false + + + 1635 + Ruins05T06 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ArchaeologistSchool</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'm sure Valka would be very happy to see it.</Text><ID>925899</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Incredible. Stoick told me about this armor. Stoick's great grandfather was a famous explorer who was never satisfied unless he was exploring beyond the horizon. He left Berk one day and never came back. We always figured he'd run afoul of some dragons. @@ I can't believe you found a piece of Horrendous Haddock heritage. Thank you, {{Name}}. This means more to me than you know.</Text><ID>925900</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>ItemID</Key><Value>11187</Value></Pair><Pair><Key>ItemDescription</Key><Value>Stoick Grandfather Armor</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the armor to Valka</Text><ID>925897</ID></Title><Desc><Text>Give the armor to Valka</Text><ID>925897</ID></Desc></Data> + 0 + false + + + 1636 + Ruins05T07 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You found a piece of our family history at Icestorm Island? Wow! I wonder if there's anything else out there...</Text><ID>925893</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Hiccup at the School</Text><ID>925892</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 202920 + true + 100 + 100 + + 0 + + + + 350 +

1

+ 0 + + 1 + 368 + 202920 + true + 350 + 350 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202920 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202920 + true + 50 + 50 + + 0 + +
+ false +
+ + 1672 + Arctic_Misc02 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMisc02T00.unity3d/PfGrpArcticMisc02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger02T03.unity3d/PfGrpArcticSpeedStinger02T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Headmaster's Wild Ride</Text><ID>924689</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1674 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1672 + 1644 + 0 + + + 1 + 1672 + 1645 + 0 + + + 1 + 1672 + 1646 + 0 + + + 1 + 1672 + 1647 + 0 + + + 1 + 1672 + 1648 + 0 + + + 1 + 1672 + 1649 + 0 + + + + 1 + 202871 + 0 + + 1644 + Misc02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}, the Headmaster has been asking for you. He had an excited gleam in his eye. Maybe he has some adventure in mind? Fly back to the school and talk to him!</Text><ID>925743</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Hello, student! From what Hiccup tells me, you've been having quite the journey out on the island. It's been many years since I've been on an adventure, myself. Now that the school buildings are complete, I think it's high time to go see the island with my own eyes.</Text><ID>925744</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGenPraise02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster at the School</Text><ID>925741</ID></Title><Desc><Text>Talk to the Headmaster at the School to find out what he wants</Text><ID>941537</ID></Desc></Data> + 0 + false + + + 1645 + Misc02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I'll meet you at Icestorm Island. Fishlegs has kindly offered me his dragon!</Text><ID>925747</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>My word! That was not a pleasant trip.</Text><ID>925748</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to Icestorm Island</Text><ID>925745</ID></Title><Desc><Text>Fly to Icestorm Island to meet the Headmaster</Text><ID>941538</ID></Desc></Data> + 0 + false + + + 1646 + Misc02T03 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfDWHeadmaster.unity3d/PfDWHeadmaster</Asset><Location>PfMarker_Entrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>My head is still spinning! How can you fly through the air like that? It felt like my insides were trying to become my outsides! Give me a moment to collect myself, please. @@ Alright. Let's start off in the caves.</Text><ID>925759</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>How majestic! Who knew such things could be hiding under this island?</Text><ID>925760</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGoodJob</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Ice Caves</Text><ID>926408</ID></Title><Desc><Text>Enter the Ice Caves</Text><ID>923627</ID></Desc></Data> + 0 + false + + + 1647 + Misc02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>These rock formations are called [c][3eebff]stalagmites[/c][ffffff]! These are rocks that rise from the floor of the cave. They are formed when water drips to the floor and the deposits freeze. The rest of this cave seems very interesting as well. Let’s explore this cave system more, {{Name}}.</Text><ID>925751</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Can you feel the warm breeze coming from the water? It’s because this is a [c][3eebff]geothermal cave! Heat energy from within Earth is called geothermal energy[/c][ffffff]. In some places of the world, hot water and steam from inside the ground escape to the surface through vents or geysers found underground. </Text><ID>925752</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceCaveCliff</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the Stalagmites</Text><ID>925749</ID></Title><Desc><Text>Go further into the Ice Caves</Text><ID>941539</ID></Desc></Data> + 0 + false + + + 1648 + Misc02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I want to feel the icy breeze on my face and my beard freezing! I love facing the teeth of winter. Let's go back outside, {{Name}}. I believe Hiccup mentioned a glacier near the school extension. I want to see it.</Text><ID>925755</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>This reminds me of my years as a boy, venturing out into the icy waters to fish with my father…</Text><ID>925756</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGenPraise01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Glacier</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the Glacier</Text><ID>925753</ID></Title><Desc><Text>Go back outside of the cave to visit the glacier near the school extension</Text><ID>941540</ID></Desc></Data> + 0 + false + + + 1649 + Misc02T06 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfGrpArcticMisc02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>One more thing. Hiccup mentioned that there was a dragon on this island that didn’t fly. That sounds perfect for me. {{Input}} on me and lead me to the Speed Stinger caves, student. +</Text><ID>925763</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Well, this looks like a challenge worthy of a wily old Viking warrior! I may be past my prime, but I'm not out of tricks just yet. Thank you for your help today, {{Name}}.</Text><ID>925764</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair></Objective><Type>Escort</Type><Title><Text>Show the Headmaster the Speed Stingers</Text><ID>925761</ID></Title><Desc><Text>Visit the Speed Stinger nest at the top of Icestorm Island</Text><ID>941541</ID></Desc><Reminder><Text>Don't leave the Headmaster behind!</Text><ID>936222</ID></Reminder><Failure><Text>Oh no! You left the Headmaster behind!</Text><ID>936223</ID></Failure></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202871 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202871 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202871 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 202871 + true + 350 + 350 + + 0 + +
+ false +
+ + 1673 + Arctic_Archaeologist02 + 25 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Digging into the Past</Text><ID>924684</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1642 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1673 + 1650 + 0 + + + 1 + 1673 + 1651 + 0 + + + 1 + 1673 + 1652 + 0 + + + 1 + 1673 + 1653 + 0 + + + 1 + 1673 + 1654 + 0 + + + + 1 + 202863 + 0 + + 1650 + Archaeologist02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm still exhilarated from our amazing discovery! I can't thank you enough for helping me find it. Now the real work begins!@@ We should go back to the ruins and dig around for evidence to figure out what happened to these ancient Vikings. Are you ready, my friend? Lead the way to the ancient ruins in the Ice Caves.</Text><ID>925622</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Here we are at the heart of an ancient wonder, standing on the very same soil as those who lived thousands of years ago!</Text><ID>925623</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ruins</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the ruins in the Ice Caves</Text><ID>925620</ID></Title><Desc><Text>Go to the ancient ruins in the Ice Caves</Text><ID>941453</ID></Desc></Data> + 0 + false + + + 1651 + Archaeologist02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Right now, we're beginning an archaeological field survey, where we will unearth relics to collect information about this place and its past cultures.@@ We did one earlier, remember? We looked at the cave paintings and architecture, discovered a pattern, and came to the conclusion that these ancient Vikings revered the Groncicle. @@ Now we're digging in deeper to piece together the whole story. There's something we haven't examined yet--a shipwreck! Let's take a closer look.</Text><ID>925626</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Magnificent! The freezing temperatures preserved this shipwreck remarkably well. Isn't it beautiful? Now we can make an informed generalization: this ship is evidence that these ancient Vikings were seafarers. @@ Hmmm, but... Is this one of their ships, or does this belong to someone else? I wonder.</Text><ID>925627</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Shipwreck</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the shipwreck</Text><ID>925624</ID></Title><Desc><Text>Go take a closer look at the shipwreck.</Text><ID>926066</ID></Desc></Data> + 0 + false + + + 1652 + Archaeologist02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hmmm, but I don't see a way out. How did they sail this ship into the ocean? Take a look around. Do you see an exit big enough for a ship?</Text><ID>925638</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Good eye! Clearly this used to be an open passageway for ships, but it has caved in. Did this happen while the Vikings lived in this village, I wonder?</Text><ID>925639</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveIn</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the cave-in</Text><ID>925636</ID></Title><Desc><Text>Look for an exit big enough for a ship</Text><ID>941454</ID></Desc></Data> + 0 + false + + + 1653 + Archaeologist02T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist02T04.unity3d/PfGrpArcticArchaeologist02T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>People often migrate to find a better life. Who knows? Perhaps these ancient Vikings settled on other islands and their descendants live on today! @@ What else can we speculate about this fascinating civilization? We can speculate that they fished for food, but did they also grow crops or raise farm animals? Let's look around for artifacts that might give us a better idea.</Text><ID>925630</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Excellent find! It's a well-preserved, dried plant. This plant is a biofact. Biofacts are organic materials found at archaeological sites. They're like artifacts, but are not created by human hands like tools or pots</Text><ID>925631</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArcticWillowWithered</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect interesting artifacts</Text><ID>925628</ID></Title><Desc><Text>Collect artifacts left behind by the ancient Vikings</Text><ID>941455</ID></Desc></Data> + 0 + false + + + 1654 + Archaeologist02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Good work! Now we can deduce that ancient Vikings cultivated plants inside these Ice Caves, perhaps using the heat from the geothermal area. Could you please bring me the biofact you found? I'd like to examine it.</Text><ID>925634</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you! I didn't learn this as quickly as you have. You certainly have a talent for archaeology, my friend. I am lucky to have you on my expedition!</Text><ID>925635</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11177</Value></Pair><Pair><Key>ItemDescription</Key><Value>Withered Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the biofact to the Archaeologist</Text><ID>925632</ID></Title><Desc><Text>Bring the biofact to the Archaeologist</Text><ID>925632</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202863 + true + 50 + 50 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202863 + true + 300 + 300 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 202863 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202863 + true + 200 + 200 + + 0 + +
+ false +
+ + 1674 + Arctic_Archaeologist03 + 25 +

+ <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist03T00.unity3d/PfGrpArcticArchaeologist03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Sonar Powers</Text><ID>924685</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1673 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1674 + 1655 + 0 + + + 1 + 1674 + 1656 + 0 + + + 1 + 1674 + 1657 + 0 + + + 1 + 1674 + 1658 + 0 + + + 1 + 1674 + 1659 + 0 + + + 1 + 1674 + 1660 + 0 + + + + 1 + 202864 + 0 + + 1655 + Archaeologist03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ready for more adventure? Me too! We need to dig deeper--literally! Let's perform a small excavation to see if there are any buried artifacts we can recover for research. @@ However, this excavation is more delicate than others I have done before. It would be unwise to blindly hack away at the icy walls--we don't want to cause a cave-in! @@ What we need is a device that can detect objects buried in the ice, so that we only dig in the right spots. Do you think you could ask Hiccup to see if he has any ideas?</Text><ID>925658</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A device that detects things hidden in the ice? Well, I haven't invented a device that can do that yet, but Toothless uses echolocation to find fish underwater. @@ Echolocation involves locating objects by reflected sound. It might work with solid ice too. Toothless has really sharpened his skills since we first met. We've both grown a lot since then!</Text><ID>925659</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1656 + Archaeologist03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Make your way to the Ruins, {{Name}}. I'll tell Toothless to meet you there!</Text><ID>925642</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Are you sure having a Night Fury in the Ruins is a good idea? What if he accidentally destroys something or causes a cave-in with his sonar pulse? @@ Or… what if he gets hungry? I look like the perfect Viking-sized snack!</Text><ID>925643</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ruins</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Ruins in the Ice Caves</Text><ID>925640</ID></Title><Desc><Text>Meet Toothless in the Ruins in the Ice Caves</Text><ID>941456</ID></Desc></Data> + 0 + false + + + 1657 + Archaeologist03T03 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist03T03.unity3d/PfGrpArcticArchaeologist03T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well, if you insist... I suppose I can trust you and your dragon-training expertise. Aim the Night Fury's sonar pulse at the wall of ice. Please be careful!</Text><ID>925646</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Incredible! I can hardly believe such a deadly dragon would listen to a Viking. It's absolutely mind-boggling! How do you do it? Bravo!</Text><ID>925647</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IceWallHit</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfMarker_IceWallHit</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount Toothless and shoot a fireball at the ice wall</Text><ID>925644</ID></Title><Desc><Text>Mount Toothless and shoot a fireball at the wall of ice</Text><ID>941457</ID></Desc></Data> + 0 + false + + + 1658 + Archaeologist03T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist03T05.unity3d/PfGrpArcticArchaeologist03T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I think the Night Fury's echolocation has located something. Dismount him and head to the right spot.</Text><ID>925662</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Good work!</Text><ID>924636</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceWall</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the digging spot</Text><ID>925660</ID></Title><Desc><Text>Go to the digging spot near the ice wall</Text><ID>941458</ID></Desc></Data> + 0 + false + + + 1659 + Archaeologist03T05 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist03T05.unity3d/PfGrpArcticArchaeologist03T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Get out your axe and carefully chop away at the ice. Be delicate! We don't want to damage the artifact.</Text><ID>925650</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Why, that's not an artifact at all! It's a fossil. Fossils are the preserved remains of plants or animals. Fossils are most often found in sedimentary rock. However, some fossils can also be found preserved in ice. This fossil seems to be a bone. Fascinating!</Text><ID>925651</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IceWall</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFossil</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Use your axe to carve out the artifact</Text><ID>925648</ID></Title><Desc><Text>Use your axe to chop at the ice wall and collect the fossil</Text><ID>941459</ID></Desc></Data> + 0 + false + + + 1660 + Archaeologist03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I need a closer look to figure out what creature this bone comes from. Could you bring the fossil back to camp for me?</Text><ID>925654</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, there it is! Thank you. Let me take a look... @@ Hmmm... It seems to be the femur of some type of a dragon, judging by its density and porousness. I can't say for sure until I spend more time studying it. Very impressive work, my friend! What a successful excavation!</Text><ID>925655</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11178</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fossil</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the fossil to the Archaeologist</Text><ID>925652</ID></Title><Desc><Text>Bring the fossil back to the Archaeologist</Text><ID>941460</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202864 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202864 + true + 300 + 300 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 202864 + true + 100 + 100 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202864 + true + 200 + 200 + + 0 + +
+ false +
+ + 1675 + Arctic_Misc06 + 12 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Strength Smoothies</Text><ID>924690</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1666 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1675 + 1661 + 0 + + + 1 + 1675 + 1662 + 0 + + + 1 + 1675 + 1764 + 0 + + + 1 + 1675 + 1663 + 0 + + + 1 + 1675 + 1664 + 0 + + + 1 + 1675 + 1665 + 0 + + + + 1 + 202865 + 0 + + 1661 + Misc06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, {{Name}}! Have you noticed anything different about me? I'm bulking up my muscles. After all, I've got to make sure no one can keep up with the Snotlout during training! Ruffnut has been quite the opponent lately, but it’s not like I'm worried or anything! @@ I've started making workout drinks to help me build muscle. Can you help me gather ingredients for the next batch? It's an old Jorgensen recipe, but you look like you can keep a secret. I need 3 eggs and 1 bottle of yak milk.</Text><ID>925798</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Thanks a lot! This is exactly what I need for my workout smoothie. The eggs give it protein which helps build muscle, and Yak Milk has plenty of calcium for strong bones. It tastes terrible but it feels like victory!</Text><ID>925799</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 1 Yak Milk and 3 Eggs to Snotlout</Text><ID>925796</ID></Title><Desc><Text>Give 1 Yak Milk and 3 Eggs to Snotlout at Icestorm Island</Text><ID>941556</ID></Desc></Data> + 0 + false + + + 1662 + Misc06T02 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMisc06T02.unity3d/PfGrpArcticMisc06T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It might taste better if it were colder. Let's try it. Could you get me some fresh snow from Icestorm Island?</Text><ID>925802</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSnowPile</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect snow from Icestorm Island</Text><ID>925800</ID></Title><Desc><Text>Collect a snow pile from Icestorm Island</Text><ID>941557</ID></Desc></Data> + 0 + false + + + 1663 + Misc06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Awesome! I can't just rely on brute strength alone. I'm sure Ruffnut has some other tricks up her sleeve... Could you talk to Ruffnut and find out her secret sparring strategy? She won't tell me but she might let something slip to you!</Text><ID>925806</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Secret strategy? Ha! I just swing my axe around until it hits something. Opponents can't handle my unpredictable moves!</Text><ID>925807</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut at the School</Text><ID>905009</ID></Title><Desc><Text>Talk to Ruffnut to find out her secret sparring strategy</Text><ID>941558</ID></Desc></Data> + 0 + false + + + 1664 + Misc06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You know what else gives me an edge? Carrot juice! Carrots are loaded with Vitamin A, which helps my eyes stay sharp. Good vision is important for dodging your enemy's strikes. This awesome veggie also has Vitamin K, which keeps my bones and arteries strong so I can totally dominate during sparring practice! @@ Do you have 4 carrots I could borrow? I need to get my vitamins so I can keep smashing Snotlout!</Text><ID>925810</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Thanks! If I keep this up, even Astrid won't be able to keep up with me!</Text><ID>925811</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 4 Carrots to Ruffnut</Text><ID>925808</ID></Title><Desc><Text>Give 4 Carrots to Ruffnut</Text><ID>925808</ID></Desc></Data> + 0 + false + + + 1665 + Misc06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, {{Name}}! What did Ruffnut say? Come over here and tell me!</Text><ID>925814</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Carrot juice? That’s a good idea, but it could use a Jorgensen twist. If I mix it with my family recipe, I can make it even better! I’ll call it… the Orange Snot Rocket! A little bit of the juice and I’ll have fans swooning at my feet!</Text><ID>925815</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 1764 + Misc06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Great! Bring the snow back to me, {{Name}}.</Text><ID>926244</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>11143</Value></Pair><Pair><Key>ItemDescription</Key><Value>Snow Pile</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the snow to Snotlout</Text><ID>926242</ID></Title><Desc><Text>Give the snow to Snotlout</Text><ID>926242</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 202865 + true + 80 + 80 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 202865 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202865 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202865 + true + 200 + 200 + + 0 + +
+ false +
+ + 1676 + Arctic_Archaeologist04 + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWHeadmaster.unity3d/PfDWHeadmaster</Asset><Location>PfMarker_GeothermalEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_Botanist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Pots and Plants</Text><ID>924687</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1672 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1676 + 1666 + 0 + + + 2 + 1676 + 1677 + 0 + + + 2 + 1676 + 1684 + 0 + + + 1 + 1676 + 1669 + 0 + + + 1 + 1676 + 1670 + 0 + + + + 1 + 202867 + 0 + + 1677 + Archaeologist04T02 + 25 +

1676

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the Small Pot to the Archaeologist</Text><ID>924686</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1677 + 1667 + 0 + + + + 1 + 202868 + 0 + + 1667 + Archaeologist04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Bring me the small pot you found, my friend!</Text><ID>925666</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you! You've been a huge help. I have been collecting pottery from all over the land and organizing them by their physical characteristics. This process of classifying pottery is called 'ceramic typology.' @@ Archaeologists use this system to quickly guess when and where the pottery was made. Pottery can also give us clues to the identity of any friends these Vikings may have had. If we find pots from distant cultures within these ruins, we know that these Vikings traded with those cultures.</Text><ID>925667</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>11179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Small Pot</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the small pot to the Archaeologist</Text><ID>924686</ID></Title><Desc><Text>Bring the small pot to the Archaeologist</Text><ID>941461</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11177 + + 1 + 1793 + 202868 + true + 1 + 1 + + 0 + +
+ false + + + 1684 + Archaeologist04T03 + 25 +

1676

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the plant to the Botanist</Text><ID>925973</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1684 + 1668 + 0 + + + + 1 + 202922 + 0 + + 1668 + Archaeologist04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm an expert on pottery but I don't know very much about plants! I've been studying the biofact you found, and I'm still not quite sure what it is. @@ I've found more of the same plant, so I believe that this plant was important to them. Is there anyone at the School of Dragons who could identify this plant? Perhaps a teacher will know what this is. Go back to the School and ask around!</Text><ID>925670</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's a very useful plant! It's an Arctic Willow, one of the arctic hare's favorite foods. We can eat it, too. It tastes sweet and is high in Vitamin C. It can help relieve stomachaches or help patch up wounds. @@ I have a bag of Arctic Willow seeds from Johann that I haven't used yet. You might get some good use out of them!</Text><ID>925671</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>11177</Value></Pair><Pair><Key>ItemDescription</Key><Value>Withered Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the dried plant to the Botanist</Text><ID>925668</ID></Title><Desc><Text>Bring the withered arctic willow to Phlegma</Text><ID>941462</ID></Desc></Data> + 0 + false + + + 5 +

6

+ 11168 + + 1 + 1932 + 202922 + true + 5 + 5 + + 0 + +
+ false +
+ + 1666 + Archaeologist04T01 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpArcticArchaeologist04T01.unity3d/PfGrpArcticArchaeologist04T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I was hoping you would come by, friend! I have a favor to ask of you. I've been slowly expanding my excavations on Icestorm Island, and I want to collect some pottery samples. @@ The Vikings on this island used pots made of clay, a material made by the decomposition of rocks through weathering. It's very elastic so its size or shape can be altered through physical change. @@ Would you mind finding a pottery sample from the Ice Caves? There are a couple of artifacts not far from the entrance.</Text><ID>925678</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What an interesting set of pots! Look, they're all different shapes and sizes. Once the Vikings finished shaping the clay pot, they had to heat it and begin a chemical change. During that process, the clay becomes stronger and changes color and texture. @@ Leave the larger pots, {{Name}}. They are too big and too fragile to bring back to camp. I'd rather study them where they lie.</Text><ID>925679</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWVaseSmall</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Investigate the pottery in the Ice Caves</Text><ID>925676</ID></Title><Desc><Text>Collect a small pot from the Ice Caves</Text><ID>941463</ID></Desc></Data> + 0 + false + + + 1669 + Archaeologist04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These flowers are much more impressive when they aren't withered and old. Grow Arctic Willow flowers in your farm and bring me 3 of them!</Text><ID>925682</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These flowers will help me multiply my supply. Thank you!</Text><ID>925683</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Botanist 3 Arctic Willow flowers from your farm</Text><ID>925680</ID></Title><Desc><Text>Harvest 3 Arctic Willow from your farm and bring them to Phlegma</Text><ID>941464</ID></Desc></Data> + 0 + false + + + 1670 + Archaeologist04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I wonder if the Archaeologist remembers me. I was a young Viking when he first left Berk. Go back to Icestorm Island, {{Name}}, and tell him what you've learned about the Arctic Willow. I'm sure it will help him with his research!</Text><ID>925674</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I remember Phlegma; she was a very rambunctious girl! I would love to go back to the School of Dragons one day and see everyone again. It has been a while! @@ So the Arctic Willow has many useful medicinal properties. Now I understand why the ancient Vikings kept so much of it in storage. I have to record our new findings. Thank you for your help!</Text><ID>925675</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist at Icestorm Island</Text><ID>941465</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 202867 + true + 80 + 80 + + 0 + +
+ + 350 +

1

+ 0 + + 1 + 368 + 202867 + true + 350 + 350 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202867 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202867 + true + 200 + 200 + + 0 + +
+ false +
+ + 1678 + Arctic_Misc11 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Glacier</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMisc11T00.unity3d/PfGrpArcticMisc11T00</Asset><Location>PfMarker_GlacierMeatlug</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Water Worries</Text><ID>924691</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1676 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1678 + 1671 + 0 + + + 1 + 1678 + 1672 + 0 + + + 1 + 1678 + 1673 + 0 + + + 1 + 1678 + 1675 + 0 + + + 1 + 1678 + 1676 + 0 + + + + 1 + 202874 + 0 + + 1671 + Misc11T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, I need your help. Fishlegs and Meatlug were exploring the island, and then Meatlug started to feel sick. Fishlegs could use a friend right now. Could you check up on them? They're on the glacier.</Text><ID>925841</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! I'm so worried about Meatlug... I think she has a really bad tummy-ache. She can't fly until she feels better.</Text><ID>925842</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Fishlegs at Icestorm Island</Text><ID>925839</ID></Title><Desc><Text>Talk to Fishlegs at Icestorm Island</Text><ID>941578</ID></Desc></Data> + 0 + false + + + 1672 + Misc11T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>She didn't eat anything out of the ordinary, but I forgot to tell Hiccup that she stopped to take a drink in the Ice Caves near the geothermal spring. @@ Oh no! What if the water was contaminated or toxic? I hope she's going to be okay. Will you take a water sample from there so we can test it for toxins and chemicals?</Text><ID>925857</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That's the spot. Good work!</Text><ID>925858</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceCavesWater</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Collect a water sample from the pond in the Ice Caves</Text><ID>925855</ID></Title><Desc><Text>Go to the geothermal area in the Ice Caves</Text><ID>941579</ID></Desc></Data> + 0 + false + + + 1673 + Misc11T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Fly back to the School and give the water sample to Heather. She'll know what to do. Please hurry! My poor Princess Meatlug...</Text><ID>925845</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Meatlug drank bad water? Don't worry. We'll solve this with science! It will take me a little bit of time to analyze the contents of this water. It smells a bit like rotten eggs, so I have my suspicions… but I would like to be sure. </Text><ID>925846</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the school</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather by the Lab at the School</Text><ID>941580</ID></Desc></Data> + 0 + false + + + 1675 + Misc11T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I was right! The water is contaminated with [c][3eebff]hydrogen sulfide, which is a chemical compound.[/c][ffffff] In large quantities, it is poisonous, corrosive, flammable, and explosive. @@ Oh, but I don't mean to scare Fishlegs! He actually has nothing to worry about. This chemical occurs naturally in the environment and in our bodies, so small quantities won't hurt us. @@ All Meatlug can do is rest and wait until she feels better. Maybe you can feed her something to speed up her recovery. Talk to the Botanist. I'm sure she'll have a remedy in mind!</Text><ID>925861</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Meatlug has a stomachache? That seems to happen to her a lot.</Text><ID>925862</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist at the Lookout</Text><ID>923150</ID></Title><Desc><Text>Talk to Phlegma to get a remedy for Meatlug</Text><ID>941581</ID></Desc></Data> + 0 + false + + + 1676 + Misc11T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Arctic Willow will help ease her stomachache. You can grow it fresh on your farm. Give her 3 Arctic Willow flowers and she'll be flying again in no time!</Text><ID>925853</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, what a relief! If the Botanist says this will help her feel better, I can breathe easy. Thanks, {{Name}}! You're a lifesaver.</Text><ID>925854</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Grow 3 Arctic Willows in your farm and give them to Fishlegs</Text><ID>925851</ID></Title><Desc><Text>Grow or purchase 3 Arctic Willows and give them to Fishlegs</Text><ID>941582</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202874 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 202874 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 202874 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202874 + true + 200 + 200 + + 0 + +
+ false +
+ + 1681 + Arctic_Misc07 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticMisc07T02.unity3d/PfGrpArcticMisc07T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Unicorn of the Sea</Text><ID>924931</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1678 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1681 + 1677 + 0 + + + 1 + 1681 + 1678 + 0 + + + 1 + 1681 + 1679 + 0 + + + + 1 + 202873 + 0 + + 1677 + Misc07T01 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_CampFishingHole</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, {{Name}}. Snotlout came by, looking as pale as a Flightmare! He said he saw a huge sea monster not far from shore. It might be a new type of dragon we've never seen. As part of the Berk Watch, it's our duty to investigate. @@ Snotlout's keeping watch at the glacier. Could you go ask him about what he saw?</Text><ID>925818</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Man, you should've seen it! It was a gigantic sea monster with a dozen heads and sharp horns! Hookfang and I tried to scare it off, but I think it's still out there... </Text><ID>925819</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Glacier</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout at Icestorm Island</Text><ID>925816</ID></Title><Desc><Text>Talk to Snotlout about the sea monster sighting</Text><ID>941559</ID></Desc></Data> + 0 + false + + + 1678 + Misc07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Fly over the ocean with {{dragon name}} and see if you can spot it. The monster has mottled, gray skin and multiple heads. You can't miss it!</Text><ID>925826</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, it's not a monster? Well, it was a little foggy. Anyone could make that mistake!</Text><ID>925827</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Narwhals</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the sea monster</Text><ID>925824</ID></Title><Desc><Text>Fly out to sea and search for any signs of a sea monster</Text><ID>941560</ID></Desc></Data> + 0 + false + + + 1679 + Misc07T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whew. I'm glad we don't have to be worried. Those are narwhals, a type of whale, also known as 'the unicorns of the sea.' @@ Male narwhals have an ivory tusk that grows out of their upper lip like a unicorn horn. They use it to establish a social hierarchy within their pods. All narwhals have thick layers of blubber to store energy, keep warm, and help them float. @@ They're certainly not dangerous to us. Mystery solved! Come back and talk to me.</Text><ID>925822</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great work! Thanks for your help. The narwhals are our new neighbors. We should look out for them and make sure our activities on this island don't hurt the narwhal population. This means making sure Snotlout and Hookfang don't scare them off!</Text><ID>925823</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizArcticMisc07T03.unity3d/PfUiQuizArcticMisc07T03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Observe the narwhals and return to Hiccup</Text><ID>925820</ID></Title><Desc><Text>Look at the narwhals and come back to Hiccup</Text><ID>941561</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 202873 + true + 50 + 50 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202873 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202873 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202873 + true + 200 + 200 + + 0 + +
+ false +
+ + 1683 + Quest_TidePool02 + 12 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>PfFishingBoatWrecked</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>PfWoodenBoxA</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Changing Tides</Text><ID>925971</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1667 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1683 + 1684 + 0 + + + 1 + 1683 + 1685 + 0 + + + 1 + 1683 + 1686 + 0 + + + 1 + 1683 + 1687 + 0 + + + 1 + 1683 + 1688 + 0 + + + 1 + 1683 + 1689 + 0 + + + 1 + 1683 + 1690 + 0 + + + + 1 + 202921 + 0 + + 1684 + TidePool02T01 + <Data><Offer><Type>Popup</Type><ID>926516</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, {{Name}}. I went fishing this morning and carried a huge catch all the way back to Berk! My biceps are sore... @@ I accidentally left my dad's favorite fishing rod by the tide pools at the school. Can you go to the tide pools and get it?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926517</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>What? It's not there?! Oh no... My dad's gonna be so upset!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TidePool</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the Tide Pools at the School</Text><ID>926514</ID></Title><Desc><Text>Fly through the crack in the caldera and search for Spitelout's telescope by the tide pools.</Text><ID>926515</ID></Desc></Data> + 0 + false + + + 1685 + TidePool02T02 + <Data><Offer><Type>Popup</Type><ID>926520</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The tide pools aren't there either? That doesn't make sense! What's going on?! @@ Ugh, I can't believe I'm saying this but... could you ask Hiccup if he has any ideas?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926521</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The fishing rod disappeared? Uh oh... Spitelout's not going to like that. High-tide probably came in and lifted the fishing rod off the shore and then low-tide swept it out to sea.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO/DlgHiccupAttract06.unity3d</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup about Spitelout's lost fishing rod.</Text><ID>926519</ID></Desc></Data> + 0 + false + + + 1686 + TidePool02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, I've got it! Ruffnut is good friends with a Scauldron named Scauldy. Maybe she can convince Scauldy to help look for the fishing rod underwater.</Text><ID>926524</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutHello02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yeah, Scauldy and I are buds! Scauldrons are Tidal Class dragons and live in the ocean. They know the tides like the back of their claw!</Text><ID>926525</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Ask Ruffnut about her friend Scauldy.</Text><ID>936578</ID></Desc></Data> + 0 + false + + + 1687 + TidePool02T04 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQTidePool02T04.unity3d/PfGrpQTidePool02T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>926528</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>We can find the fishing rod in no time! Just fly out to the ocean and keep an eye out for us. We’ll meet you there.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926529</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hey, {{Name}}! What took you so long?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWScauldron</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Ruffnut and Scauldy out in the ocean</Text><ID>926526</ID></Title><Desc><Text>Meet up with Ruffnut and Scauldy the Scauldron out in the ocean.</Text><ID>926527</ID></Desc></Data> + 0 + false + + + 1688 + TidePool02T05 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQTidePool02T05.unity3d/PfGrpQTidePool02T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>926532</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Looks like the tides took it after all. High-tide and low-tide both happen twice a day. Of course, Snotlout wouldn't know that! The Moon's gravity pulls on our ocean like a magnet. The pull of the Moon is so strong that it makes the water bulge into a high-tide on both sides of the Earth! Crazy, huh? @@ Scauldy's a master at following the tides! He found the fishing rod and dropped it over there on that sea stack. Go grab it!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926533</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Awesome! Looks like our work here is done. Good job, Scauldy!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfFishingRod</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the the fishing rod</Text><ID>926530</ID></Title><Desc><Text>Fly over to the seastack and grab the fishing rod.</Text><ID>926531</ID></Desc></Data> + 0 + false + + + 1689 + TidePool02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Take the fishing rod back to Snotlout at the Training Grounds, and tell that thick-headed troll to be more careful next time!</Text><ID>926536</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You found it? Yes! You saved my butt! Uh, I mean... Thanks for the help.</Text><ID>926537</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>11352</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spitelout's Fishing Rod</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the fishing rod to Snotlout</Text><ID>926534</ID></Title><Desc><Text>Give the fishing rod to Snotlout.</Text><ID>936579</ID></Desc></Data> + 0 + false + + + 1690 + TidePool02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wait, how did it get all the way out to the middle of the ocean? This better not be another one of Tuffnut's pranks. That munge-bucket! @@ Oh, you think it was the tides? {{Input}} on me and explain it then, but go slow. This science-y stuff is tough!</Text><ID>926540</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, that makes total sense. Yeah, I get it now! Hiccup's not the only one with brains around here, you know... Thanks for getting me out of trouble, {{Name}}. I owe you one, and Jorgensons always pay their debts!</Text><ID>926541</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizTidePool02T05.unity3d/PfUiQuizTidePool02T05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Click on Snotlout</Text><ID>926538</ID></Title><Desc><Text>Click on Snotlout and explain tides to him.</Text><ID>936580</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 202921 + true + 60 + 60 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 202921 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 202921 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 202921 + true + 200 + 200 + + 0 + +
+ false +
+ + 1690 + New Farming 128 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1690 + 1708 + 0 + + + + 1 + 202934 + 0 + + 1708 + 24 Turtle Eggs, 12 White Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turtle Eggs &amp; White Wool</Text><ID>926420</ID></Title><Desc><Text>The twins like to throw eggs and wool at Snotlout for fun. I admit, it's quite entertaining.</Text><ID>926421</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202934 + true + 96 + 96 + + 0 + + + + 1204 +

2

+ 0 + + 1 + 2134 + 202934 + true + 1204 + 1204 + + 0 + +
+ false +
+ + 1691 + New Farming 131 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1691 + 1711 + 0 + + + + 1 + 202938 + 0 + + 1711 + 24 Turtle Eggs, 18 Carrots, 12 Corns + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turtle Eggs, Carrots, &amp; Corn</Text><ID>926428</ID></Title><Desc><Text>Fishlegs is always cooking up new dragon treats for Meatlug.</Text><ID>926429</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202938 + true + 96 + 96 + + 0 + + + + 1716 +

2

+ 0 + + 1 + 2137 + 202938 + true + 1716 + 1716 + + 0 + +
+ false +
+ + 1692 + New Farming 130 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 1,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1692 + 1710 + 0 + + + + 1 + 202937 + 0 + + 1710 + 12 Turtle Eggs, 24 Elderberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turtle Eggs &amp; Elderberries</Text><ID>926424</ID></Title><Desc><Text>This new pudding recipe will soon be a Snoggletog tradition. I’m sure of it!</Text><ID>926425</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202937 + true + 96 + 96 + + 0 + + + + 826 +

2

+ 0 + + 1 + 2136 + 202937 + true + 826 + 826 + + 0 + +
+ false +
+ + 1693 + New Farming 132 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 1,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1693 + 1712 + 0 + + + + 1 + 202939 + 0 + + 1712 + 36 Turtle, 6 Yak Milk, 36 Lavender + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>36</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>36</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turtle Eggs, Yak Milk &amp; Lavender</Text><ID>926430</ID></Title><Desc><Text>I sail to many places where these items are in high demand. Let’s give the people what they want!</Text><ID>926431</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202939 + true + 96 + 96 + + 0 + + + + 3792 +

2

+ 0 + + 1 + 2138 + 202939 + true + 3792 + 3792 + + 0 + +
+ false +
+ + 1694 + New Farming 133 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1694 + 1713 + 0 + + + + 1 + 202940 + 0 + + 1713 + 12 Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Poppy</Text><ID>926432</ID></Title><Desc><Text>Hiccup is trying out a new paint recipe, but Toothless keeps eating his flowers.</Text><ID>926433</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202940 + true + 96 + 96 + + 0 + + + + 1020 +

2

+ 0 + + 1 + 2020 + 202940 + true + 1020 + 1020 + + 0 + +
+ false +
+ + 1695 + New Farming 134 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1695 + 1714 + 0 + + + + 1 + 202941 + 0 + + 1714 + 6 Arctic Poppy, 2 Turtle + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Poppy &amp; Turtle Eggs</Text><ID>926434</ID></Title><Desc><Text>We need some things that will remind a baby Groncicle of its natural habitat!</Text><ID>928861</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202941 + true + 96 + 96 + + 0 + + + + 617 +

2

+ 0 + + 1 + 2139 + 202941 + true + 617 + 617 + + 0 + +
+ false +
+ + 1696 + New Farming 135 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1696 + 1715 + 0 + + + + 1 + 202942 + 0 + + 1715 + 6 Arctic Poppy, 3 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Poppy &amp; Yak Milk</Text><ID>926435</ID></Title><Desc><Text>Fishlegs needs ingredients for a warm drink that will soothe Meatlug’s stomach.</Text><ID>926436</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202942 + true + 96 + 96 + + 0 + + + + 1286 +

2

+ 0 + + 1 + 2140 + 202942 + true + 1286 + 1286 + + 0 + +
+ false +
+ + 1697 + New Farming 129 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1697 + 1719 + 0 + + + + 1 + 202936 + 0 + + 1719 + 36 Turtle Egg, 18 Chicken Egg + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>36</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Turtle Eggs &amp; Chicken Eggs</Text><ID>926422</ID></Title><Desc><Text>Fishlegs is trying to beat the record for ‘Largest Omelette Ever Made’.</Text><ID>926423</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202936 + true + 96 + 96 + + 0 + + + + 1514 +

2

+ 0 + + 1 + 2135 + 202936 + true + 1514 + 1514 + + 0 + +
+ false +
+ + 1698 + New Farming 136 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1698 + 1720 + 0 + + + + 1 + 202943 + 0 + + 1720 + 9 Arctic Poppy, 6 Lavender, 1 Turtle Egg + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Poppy, Lavender, and Turtle Egg</Text><ID>926437</ID></Title><Desc><Text>No Viking can have a birthday party without the most festive decorations!</Text><ID>926438</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202943 + true + 96 + 96 + + 0 + + + + 882 +

2

+ 0 + + 1 + 2141 + 202943 + true + 882 + 882 + + 0 + +
+ false +
+ + 1699 + New Farming 137 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1699 + 1721 + 0 + + + + 1 + 202947 + 0 + + 1721 + 12 Arctic Poppy, 9 Toothache, 1 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Poppy, Toothache, &amp; Yak Milk</Text><ID>926439</ID></Title><Desc><Text>We need a more potent toothache remedy for Hookfang. He has such a sweet-tooth!</Text><ID>926440</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202947 + true + 96 + 96 + + 0 + + + + 1862 +

2

+ 0 + + 1 + 2142 + 202947 + true + 1862 + 1862 + + 0 + +
+ false +
+ + 1700 + New Farming 138 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,15 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1700 + 1722 + 0 + + + + 1 + 202948 + 0 + + 1722 + 3 Arctic Poppy, 2 Yak Milk, 10 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Poppy, Yak Milk, &amp; Dragon Nip</Text><ID>926441</ID></Title><Desc><Text>Fishlegs has cooked up a popular stew for dragons. Time to restock!</Text><ID>926442</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 202948 + true + 96 + 96 + + 0 + + + + 704 +

2

+ 0 + + 1 + 2143 + 202948 + true + 704 + 704 + + 0 + +
+ false +
+ + 1701 + New Farming 139 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,18 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1701 + 1723 + 0 + + + + 1 + 202949 + 0 + + 1723 + 24 Arctic Willow + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Willow</Text><ID>926443</ID></Title><Desc><Text>Phelgma can’t get enough of her new favorite flower.</Text><ID>926444</ID></Desc></Data> + 0 + false + + + 160 +

9

+ 0 + + 1 + 2018 + 202949 + true + 160 + 160 + + 0 + + + + 1264 +

2

+ 0 + + 1 + 2046 + 202949 + true + 1264 + 1264 + + 0 + +
+ false +
+ + 1702 + New Farming 140 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,18 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1702 + 1724 + 0 + + + + 1 + 202950 + 0 + + 1724 + 12 Arctic Willow, 3 White Wool, 6 Cabbage + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Willow, White Wool, Cabbage</Text><ID>926445</ID></Title><Desc><Text>A new fashion craze is sweeping through Berk. These vests are a bit itchy though.</Text><ID>926446</ID></Desc></Data> + 0 + false + + + 160 +

9

+ 0 + + 1 + 2018 + 202950 + true + 160 + 160 + + 0 + + + + 923 +

2

+ 0 + + 1 + 2144 + 202950 + true + 923 + 923 + + 0 + +
+ false +
+ + 1703 + New Farming 141 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,18 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1703 + 1725 + 0 + + + + 1 + 202951 + 0 + + 1725 + 18 Arctic Willow, 9 Peppermint + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Willow, Peppermint</Text><ID>926447</ID></Title><Desc><Text>Spitelout’s boots are stinking up his house! Snotlout’s desperately looking for something to freshen the air.</Text><ID>926448</ID></Desc></Data> + 0 + false + + + 160 +

9

+ 0 + + 1 + 2018 + 202951 + true + 160 + 160 + + 0 + + + + 1106 +

2

+ 0 + + 1 + 2145 + 202951 + true + 1106 + 1106 + + 0 + +
+ false +
+ + 1704 + New Farming 142 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,18 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1704 + 1726 + 0 + + + + 1 + 202952 + 0 + + 1726 + 6 Arctic Willow, 1 Turtle Egg + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Willow, Turtle Egg</Text><ID>926449</ID></Title><Desc><Text>Heather needs these items for an experiment of some sort.</Text><ID>926450</ID></Desc></Data> + 0 + false + + + 357 +

2

+ 0 + + 1 + 876 + 202952 + true + 357 + 357 + + 0 + + + + 160 +

9

+ 0 + + 1 + 2018 + 202952 + true + 160 + 160 + + 0 + +
+ false +
+ + 1705 + New Farming 143 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,18 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1705 + 1727 + 0 + + + + 1 + 202953 + 0 + + 1727 + 12 Arctic Willow, 1 Yak Milk, 2 Puffin Feather + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Willow, Yak Milk, Puffin Feather</Text><ID>926451</ID></Title><Desc><Text>Tuffnut wants these items for a "scientific experiment". I would keep an eye on him if I were you.</Text><ID>928862</ID></Desc></Data> + 0 + false + + + 160 +

9

+ 0 + + 1 + 2018 + 202953 + true + 160 + 160 + + 0 + + + + 1414 +

2

+ 0 + + 1 + 2146 + 202953 + true + 1414 + 1414 + + 0 + +
+ false +
+ + 1707 + New Farming 145 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,21 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1707 + 1729 + 0 + + + + 1 + 202955 + 0 + + 1729 + 16 Bearberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bearberries</Text><ID>926455</ID></Title><Desc><Text>Mulch needs to lure some bears away from Berk’s food stores. I hope this works!</Text><ID>926456</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 202955 + true + 250 + 250 + + 0 + + + + 1508 +

2

+ 0 + + 1 + 2148 + 202955 + true + 1508 + 1508 + + 0 + +
+ false +
+ + 1708 + New Farming 146 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,21 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1708 + 1730 + 0 + + + + 1 + 202956 + 0 + + 1730 + 8 Bearberries, 3 Puffin Feather + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bearberries, Puffin Feather</Text><ID>926457</ID></Title><Desc><Text>Mulch says the fish are getting smarter, and he needs to find new types of bait.</Text><ID>926458</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 202956 + true + 250 + 250 + + 0 + + + + 1554 +

2

+ 0 + + 1 + 2149 + 202956 + true + 1554 + 1554 + + 0 + +
+ false +
+ + 1709 + New Farming 147 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,21 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1709 + 1731 + 0 + + + + 1 + 202957 + 0 + + 1731 + 8 Bearberries, 6 Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bearberries, Arctic Poppy</Text><ID>926459</ID></Title><Desc><Text>I just discovered the most delicious salad dressing recipe!</Text><ID>926460</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 202957 + true + 250 + 250 + + 0 + + + + 1364 +

2

+ 0 + + 1 + 2150 + 202957 + true + 1364 + 1364 + + 0 + +
+ false +
+ + 1710 + New Farming 148 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,21 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1710 + 1732 + 0 + + + + 1 + 202958 + 0 + + 1732 + 12 Bearberries, 3 Turtle Eggs, 9 Corn + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bearberries, Turtle Eggs, Corn</Text><ID>926461</ID></Title><Desc><Text>Ruffnut and Tuffnut’s pranks are getting more creative each day.</Text><ID>926462</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 202958 + true + 250 + 250 + + 0 + + + + 1511 +

2

+ 0 + + 1 + 2151 + 202958 + true + 1511 + 1511 + + 0 + +
+ false +
+ + 1711 + New Farming 149 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,21 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1711 + 1733 + 0 + + + + 1 + 202959 + 0 + + 1733 + 8 Bearberries, 6 Chicken Egg, 15 Peppermint + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bearberries, Chicken Eggs, Peppermint</Text><ID>926463</ID></Title><Desc><Text>Heather invented a skin ointment that cures most dragon rashes.</Text><ID>926464</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 202959 + true + 250 + 250 + + 0 + + + + 1184 +

2

+ 0 + + 1 + 2152 + 202959 + true + 1184 + 1184 + + 0 + +
+ false +
+ + 1712 + New Farming 150 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,21 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1712 + 1734 + 0 + + + + 1 + 202960 + 0 + + 1734 + 4 Bearberries, 6 Turtle Eggs, 6 Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bearberries, Turtle Eggs, Arctic Poppy</Text><ID>926465</ID></Title><Desc><Text>Astrid is getting ready for a big race and needs bright war paint for Stormfly.</Text><ID>926466</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 202960 + true + 250 + 250 + + 0 + + + + 1256 +

2

+ 0 + + 1 + 2153 + 202960 + true + 1256 + 1256 + + 0 + +
+ false +
+ + 1713 + New Farming 151 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,24 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1713 + 1735 + 0 + + + + 1 + 202961 + 0 + + 1735 + 12 Arctic Gentian + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11173</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Gentian</Text><ID>926467</ID></Title><Desc><Text>Phlegma is making an elaborate headdress made of these beautiful flowers.</Text><ID>926468</ID></Desc></Data> + 0 + false + + + 400 +

9

+ 0 + + 1 + 2029 + 202961 + true + 400 + 400 + + 0 + + + + 976 +

2

+ 0 + + 1 + 2154 + 202961 + true + 976 + 976 + + 0 + +
+ false +
+ + 1714 + New Farming 152 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,24 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1714 + 1736 + 0 + + + + 1 + 202962 + 0 + + 1736 + 18 Arctic Gentian, 10 Tomatoes + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11173</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Gentian, Tomato</Text><ID>926469</ID></Title><Desc><Text>Hiccup is mixing up more paint. He says it’s pink, but I say it’s light red! I guess we’ll never know.</Text><ID>926470</ID></Desc></Data> + 0 + false + + + 400 +

9

+ 0 + + 1 + 2029 + 202962 + true + 400 + 400 + + 0 + + + + 1708 +

2

+ 0 + + 1 + 2155 + 202962 + true + 1708 + 1708 + + 0 + +
+ false +
+ + 1715 + New Farming 153 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,24 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1715 + 1737 + 0 + + + + 1 + 202963 + 0 + + 1737 + 6 Arctic Gentian, 6 Turtle Eggs, 2 Arctic Fox Fur + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11173</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Gentian, Turtle Eggs, Arctic Fox Fur</Text><ID>926471</ID></Title><Desc><Text>Bucket never finishes his ambitious arts and crafts projects.</Text><ID>926472</ID></Desc></Data> + 0 + false + + + 400 +

9

+ 0 + + 1 + 2029 + 202963 + true + 400 + 400 + + 0 + + + + 1758 +

2

+ 0 + + 1 + 2156 + 202963 + true + 1758 + 1758 + + 0 + +
+ false +
+ + 1716 + New Farming 154 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,24 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1716 + 1738 + 0 + + + + 1 + 202964 + 0 + + 1738 + 12 Arctic Gentian, 3 Puffin Feather + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11173</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Gentian, Puffin Feathers</Text><ID>926473</ID></Title><Desc><Text>Fishlegs likes to use dried flowers and feathers as bookmarks.</Text><ID>926474</ID></Desc></Data> + 0 + false + + + 400 +

9

+ 0 + + 1 + 2029 + 202964 + true + 400 + 400 + + 0 + + + + 1776 +

2

+ 0 + + 1 + 2157 + 202964 + true + 1776 + 1776 + + 0 + +
+ false +
+ + 1717 + New Farming 155 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /><Desc><Text>These ingredients make a strange flavored smoothie. Only Groncicles like it.</Text><ID>926048</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,24 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1717 + 1739 + 0 + + + + 1 + 202965 + 0 + + 1739 + 6 Arctic Gentian, 6 Pumpkin, 6 Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11173</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Gentian, Pumpkin, Arctic Poppy</Text><ID>926475</ID></Title><Desc><Text>These ingredients make a strange flavored smoothie. Only Groncicles like it.</Text><ID>926048</ID></Desc></Data> + 0 + false + + + 400 +

9

+ 0 + + 1 + 2029 + 202965 + true + 400 + 400 + + 0 + + + + 1294 +

2

+ 0 + + 1 + 2158 + 202965 + true + 1294 + 1294 + + 0 + +
+ false +
+ + 1718 + New Farming 156 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,24 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1718 + 1740 + 0 + + + + 1 + 202966 + 0 + + 1740 + 12 Arctic Gentian, 10 Dragon Nip, 6 Toothache Plan + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11173</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Gentian</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Gentian, Dragon Nip, Toothache Plant</Text><ID>926477</ID></Title><Desc><Text>Gobber had to pull one of Barf and Belch’s teeth. This will ease the pain.</Text><ID>926478</ID></Desc></Data> + 0 + false + + + 400 +

9

+ 0 + + 1 + 2029 + 202966 + true + 400 + 400 + + 0 + + + + 1526 +

2

+ 0 + + 1 + 2159 + 202966 + true + 1526 + 1526 + + 0 + +
+ false +
+ + 1719 + New Farming 157 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,16 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1719 + 1741 + 0 + + + + 1 + 202967 + 0 + + 1741 + 4 Puffin Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Puffin Feathers</Text><ID>926479</ID></Title><Desc><Text>Oh no! The Headmaster broke his last quill.</Text><ID>926480</ID></Desc></Data> + 0 + false + + + 900 +

2

+ 0 + + 1 + 536 + 202967 + true + 900 + 900 + + 0 + + + + 112 +

9

+ 0 + + 1 + 2036 + 202967 + true + 112 + 112 + + 0 + +
+ false +
+ + 1720 + New Farming 158 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,16 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1720 + 1742 + 0 + + + + 1 + 202968 + 0 + + 1742 + 2 Puffin Feathers, 6 Turtle Eggs, 6 Lavender + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Puffin Feathers, Turtle Eggs, Lavender</Text><ID>926481</ID></Title><Desc><Text>I need more items so that I can barter for goods beyond the archipelago.</Text><ID>928863</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 202968 + true + 112 + 112 + + 0 + + + + 1050 +

2

+ 0 + + 1 + 2160 + 202968 + true + 1050 + 1050 + + 0 + +
+ false +
+ + 1721 + New Farming 159 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,16 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1721 + 1743 + 0 + + + + 1 + 202969 + 0 + + 1743 + 3 Puffin Feathers, 12 Cabbage + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Puffin Feathers, Cabbage</Text><ID>926482</ID></Title><Desc><Text>Gobber says he’s found the secret to designing the most comfortable armor.</Text><ID>926483</ID></Desc></Data> + 0 + false + + + 968 +

2

+ 0 + + 1 + 1894 + 202969 + true + 968 + 968 + + 0 + + + + 112 +

9

+ 0 + + 1 + 2036 + 202969 + true + 112 + 112 + + 0 + +
+ false +
+ + 1722 + New Farming 160 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,16 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1722 + 1744 + 0 + + + + 1 + 202970 + 0 + + 1744 + 2 Puffin Feathers, 12 Pumpkin, 1 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Puffin Feathers, Pumpkins, Yak Milk</Text><ID>926484</ID></Title><Desc><Text>Only Odin knows what Tuffnut could possibly need all these pumpkins for.</Text><ID>926485</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 202970 + true + 112 + 112 + + 0 + + + + 1024 +

2

+ 0 + + 1 + 2161 + 202970 + true + 1024 + 1024 + + 0 + +
+ false +
+ + 1724 + New Farming 162 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,16 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1724 + 1746 + 0 + + + + 1 + 202972 + 0 + + 1746 + 4 Puffin Feathers, 6 Arctic Poppy, 6 Lavender + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Puffin Feathers, Arctic Poppy, Lavender</Text><ID>926488</ID></Title><Desc><Text>Hiccup and Astrid need help gathering nesting materials for a brooding Deadly Nadder.</Text><ID>926489</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 202972 + true + 112 + 112 + + 0 + + + + 1916 +

2

+ 0 + + 1 + 2163 + 202972 + true + 1916 + 1916 + + 0 + +
+ false +
+ + 1725 + New Farming 163 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,22 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1725 + 1747 + 0 + + + + 1 + 202973 + 0 + + 1747 + 3 Arctic Fox Fur + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Fox Fur</Text><ID>926490</ID></Title><Desc><Text>The lining of my winter coat is worn out. How fortunate that foxes shed their winter coats! Let’s not let their fur go to waste.</Text><ID>926491</ID></Desc></Data> + 0 + false + + + 300 +

9

+ 0 + + 1 + 2043 + 202973 + true + 300 + 300 + + 0 + + + + 1514 +

2

+ 0 + + 1 + 2135 + 202973 + true + 1514 + 1514 + + 0 + +
+ false +
+ + 1726 + New Farming 164 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,22 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1726 + 1748 + 0 + + + + 1 + 202974 + 0 + + 1748 + 2 Arctic Fox Fur, 8 Bearberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Fox Fur, Bearberries</Text><ID>926492</ID></Title><Desc><Text>Astrid needs some berries to lure wild foxes away from our food stores.</Text><ID>926493</ID></Desc></Data> + 0 + false + + + 300 +

9

+ 0 + + 1 + 2043 + 202974 + true + 300 + 300 + + 0 + + + + 1680 +

2

+ 0 + + 1 + 2164 + 202974 + true + 1680 + 1680 + + 0 + +
+ false +
+ + 1727 + New Farming 165 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,22 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1727 + 1749 + 0 + + + + 1 + 202975 + 0 + + 1749 + 3 Arctic Fox Fur, 12 Arctic Willow, 6 Lavender + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Fox Fur, Arctic Willow, Lavender</Text><ID>926494</ID></Title><Desc><Text>Eret wants an aromatherapy pillow!</Text><ID>928865</ID></Desc></Data> + 0 + false + + + 300 +

9

+ 0 + + 1 + 2043 + 202975 + true + 300 + 300 + + 0 + + + + 2940 +

2

+ 0 + + 1 + 2165 + 202975 + true + 2940 + 2940 + + 0 + +
+ false +
+ + 1728 + New Farming 166 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,22 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1728 + 1750 + 0 + + + + 1 + 202976 + 0 + + 1750 + 3 Arctic Fox Fur, 9 Chicken Eggs, 12 Carrots + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Fox Fur, Chicken Eggs, Carrots</Text><ID>926496</ID></Title><Desc><Text>Snotlout used up all of Berk’s medical supplies again. Hookfang must be quite a handful!</Text><ID>926497</ID></Desc></Data> + 0 + false + + + 300 +

9

+ 0 + + 1 + 2043 + 202976 + true + 300 + 300 + + 0 + + + + 2003 +

2

+ 0 + + 1 + 2166 + 202976 + true + 2003 + 2003 + + 0 + +
+ false +
+ + 1729 + New Farming 167 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,22 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1729 + 1751 + 0 + + + + 1 + 202977 + 0 + + 1751 + 2 Arctic Fox Fur, 10 Tomatoes, 24 Sunflower + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Fox Fur, Tomatoes, Sunflowers</Text><ID>926498</ID></Title><Desc><Text>Hiccup needs to make new paintbrushes and mix up some orange paint.</Text><ID>926499</ID></Desc></Data> + 0 + false + + + 300 +

9

+ 0 + + 1 + 2043 + 202977 + true + 300 + 300 + + 0 + + + + 1340 +

2

+ 0 + + 1 + 2167 + 202977 + true + 1340 + 1340 + + 0 + +
+ false +
+ + 1730 + New Farming 168 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,22 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1730 + 1752 + 0 + + + + 1 + 202978 + 0 + + 1752 + 1 Arctic Fox Fur, 3 White Wool, 2 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11201</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Fox Fur</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Fox Fur, White Wool, Yak Milk</Text><ID>926500</ID></Title><Desc><Text>I don’t quite understand Ruffnut. Soaking your hair in Yak Milk sounds disgusting!</Text><ID>926501</ID></Desc></Data> + 0 + false + + + 300 +

9

+ 0 + + 1 + 2043 + 202978 + true + 300 + 300 + + 0 + + + + 959 +

2

+ 0 + + 1 + 2168 + 202978 + true + 959 + 959 + + 0 + +
+ false +
+ + 1736 + Arctic_Misc02B + 25 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWHeadmaster.unity3d/PfDWHeadmaster</Asset><Location>PfMarker_GeothermalEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpArcticSpeedStinger05T04.unity3d/PfGrpArcticSpeedStinger05T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Cracking the Mystery</Text><ID>926017</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWArcticExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1676 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1736 + 1766 + 0 + + + 1 + 1736 + 1767 + 0 + + + 1 + 1736 + 1768 + 0 + + + 1 + 1736 + 1769 + 0 + + + + 1 + 202988 + 0 + + 1766 + Misc02BT01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I remember the Headmaster of your school as one of the strongest warriors in Berk! He fought valiantly for us all. I remember that he was always stern but very kind, with the iron in his backbone to get the job done. He hasn't changed a bit over the years, so it's no surprise he is running the school. @@ He seems determined to train those Speed Stingers! He hasn't left that area since he arrived. He might need some backup, but I don't have the dragon expertise to help out. Would you meet him up there and see what’s going on?</Text><ID>926206</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Hello there, student! Training a Speed Stinger is coming up to be harder than I thought. The methods I've learned over the years are failing on these dragons. I'm at a loss as to what I can do.</Text><ID>926207</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster by the Speed Stingers</Text><ID>926204</ID></Title><Desc><Text>Talk to the Headmaster by the Speed Stingers</Text><ID>926204</ID></Desc></Data> + 0 + false + + + 1767 + Misc02BT02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Thanks to your work with them, they won't attack me when I draw close. However, they also won't let me forge a bond with them, no matter what I do. +Hiccup has knowledge and connection with dragons that is unrivaled. Will you ask him for advice on these Speed Stingers?</Text><ID>926210</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, it's tough. From my experience, Speed Stingers are [c][3eebff]pack hunters[/c][ffffff], otherwise known as [c][3eebff]social predators[/c][ffffff]. They work together with other Speed Stingers to hunt their prey and follow an alpha Speed Stinger. These dragons take their direction from the alpha, so they won't really want to leave the group.</Text><ID>926211</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about the Speed Stingers</Text><ID>926208</ID></Title><Desc><Text>Talk to Hiccup about the Speed Stingers</Text><ID>926208</ID></Desc></Data> + 0 + false + + + 1768 + Misc02BT03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Maybe we'd be able to train a Speed Stinger if we get her as an egg. The key to training one of these Speed Stingers would be to get one away from its pack. You won't be able to do that without making the dragon angry, though. That’s no way to train a dragon! @@ Will you test if my hypothesis is correct with the Headmaster? Go back up to the peak and see what you can do.</Text><ID>926214</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Well? What has Hiccup told you?</Text><ID>926215</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SpeedStingerNest</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Speed Stingers with caution</Text><ID>926212</ID></Title><Desc><Text>Approach the Speed Stingers, but be very careful!</Text><ID>926213</ID></Desc></Data> + 0 + false + + + 1769 + Misc02BT04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I see. I know that [c][3eebff]pack animals[/c][ffffff] like [c][3eebff]wolves and lions[/c][ffffff] are highly social and are very close to every animal in the pack. They see each other as family and close in to defend any member of their group. Unless we train the entire pack, we may have no luck training a Speed Stinger! @@ Give it a try, {{Name}}. Approach the Speed Stinger and {{input}} on it. Maybe you'll be able to forge a bond with the entire pack.</Text><ID>926218</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>It looks like we'll need to put some more thought and time to figure this out. I'm looking forward to the challenge! For now, I need to get back to the school and make sure everything is running smoothly. Thank you for your help, student.</Text><ID>926219</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralIdle04</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpeedStingerNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the Speed Stinger to try to train it</Text><ID>926216</ID></Title><Desc><Text>{{Input}} on the Speed Stinger. Maybe you'll be able to train it</Text><ID>941542</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 202988 + true + 100 + 100 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 202988 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 202988 + true + 50 + 50 + + 0 + +
+ + 400 +

8

+ 0 + + 1 + 1750 + 202988 + true + 400 + 400 + + 0 + +
+ false +
+ + 1749 + Quest_Water Cycle 01 + 10 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQWaterCycle01T00.unity3d/PfGrpQWaterCycle01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCloudsDO</Scene><Asset>RS_DATA/PfGrpQClouds04T01.unity3d/PfGrpQClouds04T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Great 'nut Debate</Text><ID>926630</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1167 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1749 + 1803 + 0 + + + 1 + 1749 + 1804 + 0 + + + 1 + 1749 + 1805 + 0 + + + 1 + 1749 + 1806 + 0 + + + 1 + 1749 + 1807 + 0 + + + 1 + 1749 + 1808 + 0 + + + 1 + 1749 + 1809 + 0 + + + 1 + 1749 + 1810 + 0 + + + 1 + 1749 + 1811 + 0 + + + 1 + 1749 + 1812 + 0 + + + 1 + 1749 + 1813 + 0 + + + + 1 + 203016 + 0 + + 1803 + WaterCycle01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank Thor you're here, {{Name}}. Please, please help me out! Ruffnut and Tuffnut are bickering with each other. They just won't stop yelling and they're hurting poor Meatlug's ears! She's very sensitive, you know. Can you help them solve the argument so that they can give my Gronckle some peace and quiet?</Text><ID>927224</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Don't talk to me about my thieving brother. He's the one that's stealing my precious water. What kind of monster steals water from their twin's bucket?</Text><ID>927225</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut about her argument with her brother.</Text><ID>936581</ID></Desc></Data> + 0 + false + + + 1804 + WaterCycle01T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQWaterCycle01T02.unity3d/PfGrpQWaterCycle01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927228</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Just because my water was better than hers doesn't mean she can just throw it out when I'm not paying attention. I wasn't paying attention all night and all day, so she had plenty of time to throw the Thorston water out! @@ My special Thorston water was in my bucket at the top of the stairs to the Great Hall. Go there and grab the bucket, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutInsult01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927229</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>See? My bucket is bone dry. This water thievery is a disgrace to the good Thorston name!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBucketCoin</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Thorston buckets</Text><ID>927226</ID></Title><Desc><Text>Find the Thorston buckets on Berk.</Text><ID>927227</ID></Desc></Data> + 0 + false + + + 1805 + WaterCycle01T03 + <Data><Offer><Type>Popup</Type><ID>927232</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, Odin! This is just getting worse and worse. Can you ask the Botanist for help? Maybe she can put an end to this fight.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927233</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Say no more, student! I know exactly what happened. [c][3eebff]The water evaporated out of their buckets.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist about the water </Text><ID>927230</ID></Title><Desc><Text>Talk to the Botanist about the missing water.</Text><ID>927231</ID></Desc></Data> + 0 + false + + + 1806 + WaterCycle01T04 + <Data><Offer><Type>Popup</Type><ID>927236</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You see, there's only so much water in the world, and it needs to be used and reformed and used again over and over by every person, animal, and plant. It changes states from water to vapor and back again through a process called [c][3eebff]the water cycle[/c][ffffff]. @@ I can show it to you in action! First, let's recreate the situation that the twins were in earlier today. We can grab a bucket full of water from the waters at the Lookout.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_School_WaterArea</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fill the bucket with water</Text><ID>927234</ID></Title><Desc><Text>Visit the school lake and fill a bucket with water.</Text><ID>927235</ID></Desc></Data> + 0 + false + + + 1807 + WaterCycle01T05 + <Data><Offer><Type>Popup</Type><ID>927239</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bring the water to me, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BondingArea</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Bring the water back to the Botanist</Text><ID>927237</ID></Title><Desc><Text>Bring the water back to the Botanist.</Text><ID>927238</ID></Desc></Data> + 0 + false + + + 1808 + WaterCycle01T06 + <Data><Offer><Type>Popup</Type><ID>927242</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Here! I placed the bucket above this campfire. Can you tell {{dragon name}} to shoot the campfire and turn up the heat?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927243</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The heat caused the water to change forms into a gaseous state! This is called [c][3eebff]evaporation[/c][ffffff], and it is the first step of the water cycle. The heat from the sun turns water in glaciers, lakes, streams, and oceans into water vapor. The invisible vapor is lighter than air, so it rises up and goes into the air.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BondingArea</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfFirePitBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the campfire</Text><ID>927240</ID></Title><Desc><Text>Shoot the campfire.</Text><ID>927241</ID></Desc></Data> + 0 + false + + + 1809 + WaterCycle01T07 + <Data><Offer><Type>Popup</Type><ID>927246</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>It's not just water from rivers, lakes, and oceans that evaporate. Vikings like us sweat and plants [c][3eebff]transpire[/c][ffffff] (or lose water out of their leaves). That moisture also rises up into the air and turns into water vapor. @@ Fly up to Gothi's hut to see the water vapor gathering!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly up to Gothi's Hut</Text><ID>927244</ID></Title><Desc><Text>Fly up to Gothi's Hut in Berk.</Text><ID>927245</ID></Desc></Data> + 0 + false + + + 1810 + WaterCycle01T08 + <Data><Offer><Type>Popup</Type><ID>927249</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You see those clouds? They're made up of the water vapor that rose up. The air gets colder and colder as it gets higher. Vapor turns back into water when the temperature drops and condenses into clouds. This process is a part of the water cycle, and is called [c][3eebff]condensation[/c][ffffff]. @@ Get closer to the clouds and you'll see what I mean!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CloudVisit</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get closer to the clouds</Text><ID>927247</ID></Title><Desc><Text>Get closer to the clouds in the sky.</Text><ID>927248</ID></Desc></Data> + 0 + false + + + 1811 + WaterCycle01T09 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_RuffnutVisit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927252</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These tiny droplets of water fall back down to the ground when they combine into larger, heavier drops that can no longer float in the air. The water returns to the ground in the form of rain, snow, sleet, or hail. This part of the cycle is called [c][3eebff]precipitation[/c][ffffff]. @@ There's a final part of the water cycle. Come back down to Berk, {{Name}}, and meet me by the waterfall at the beach. +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927253</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The last phase of the water cycle is called [c][3eebff]collection[/c][ffffff]. The rain or snow starts collecting in rivers, streams, oceans, and lakes to end back up on the ground. This water is available again until it evaporates and the water cycle begins anew.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuffnutVisit</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the waterfall in Berk</Text><ID>927250</ID></Title><Desc><Text>Look at the waterfall by the beach in Berk.</Text><ID>927251</ID></Desc></Data> + 0 + false + + + 1812 + WaterCycle01T10 + <Data><Offer><Type>Popup</Type><ID>927256</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Well, I hope you understand the water cycle! Now, I'll leave it to you to do the harder task: convincing the twins of the truth! Ha ha. Go back and tell Tuffnut that he shouldn't leave his buckets of water out in the sun unless he wants the water to evaporate!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927257</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So… if I understand Phlegma correctly, [c][3eebff]the sun[/c][ffffff] stole the precious Thorston water! That fiend! I'll have to teach the sun a lesson in Viking toughness. No one steals from Tuffnut, not even the sun!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutIdle02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut about the water cycle.</Text><ID>927255</ID></Desc></Data> + 0 + false + + + 1813 + WaterCycle01T11 + <Data><Offer><Type>Popup</Type><ID>927260</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You're right. Now, if we can just figure out how to throw rocks that high in the sky… We'll need a Thorston Plan, brother.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927261</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, thank Thor! I guess it's too much to ask for the twins to be quiet. At least they changed topics. You're a lifesaver, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Fishlegs in Berk</Text><ID>927258</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 203016 + true + 350 + 350 + + 0 + + + + 65 +

2

+ 0 + + 1 + 633 + 203016 + true + 65 + 65 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203016 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203016 + true + 200 + 200 + + 0 + +
+ false +
+ + 1769 + Deathsong_Deathsong01 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong01T00.unity3d/PfGrpDSDeathsong01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Assault on Berk!</Text><ID>926549</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1769 + 1881 + 0 + + + 1 + 1769 + 1883 + 0 + + + 1 + 1769 + 1885 + 0 + + + 1 + 1769 + 1886 + 0 + + + 1 + 1769 + 1887 + 0 + + + + 1 + 203035 + 0 + + 1881 + Deathsong01T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfBattleBoat_School_01</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfBattleBoat_SchoolMobile</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>There has been an increase in Death Song sightings outside of Berk.@@All Dragon Riders should be prepared to take immediate action to defend our town at a moment’s notice!</Text><ID>926640</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Movie</Type><Asset>RS_MOVIES/DeathSong01.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Be very careful, {{Name}}. The Death Song is an extremely dangerous hunter. It can trap you and {{dragon name}} in its deadly amber blast!</Text><ID>926641</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>We need help in Berk!</Text><ID>927680</ID></Title><Desc><Text>We need help in Berk!</Text><ID>927680</ID></Desc></Data> + 0 + false + + + 1883 + Deathsong01T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Why is this dragon here, so far from its home? It must be seeking a new habitat. Perhaps Death Song Island has run out of food, water, or space. I wish I knew; we can’t let this dangerous dragon invade Berk. @@ Death Songs are an [c][3eebff]invasive species[/c][ffffff] that will destroy our ecosystem if it makes our island its new home. +In the meantime, we need to protect Berk. Come talk to me and let's plan our strategy. Keep your head down!</Text><ID>926644</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Watch out!</Text><ID>923247</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDSDeathsong01T02.unity3d/PfGrpDSDeathsong01T02</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWhoa</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 1885 + Deathsong01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Death Songs shoot a fast-hardening amber-like substance. {{Input}} on it to shatter the amber with {{dragon name}}'s fireball.</Text><ID>926648</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestDeathsongExpansion.unity3d/SndDragDeathsongRoar</Asset><NPC>PfPlayer</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh no, the amber hardened too quickly for the fireball to burn through. Last time, we had to use Monstrous Nightmare gel to melt the Death Song amber with intense fire.</Text><ID>926649</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDSDeathsong01T03.unity3d/PfGrpDSDeathsong01T03</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfAmberFlightChunkAstrid</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfAmberFlightChunkAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the amber with {{dragon name}}</Text><ID>926646</ID></Title><Desc><Text>Shoot the amber with {{dragon name}}</Text><ID>926646</ID></Desc></Data> + 0 + false + + + 1886 + Deathsong01T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_ArchaeologistBerk</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The Death Song is flying away! Looks like it's done attacking Berk, but I'm sure it will return to complete its invasion. @@ I need to talk to Stoick and Hiccup about securing the island and assessing the damage. Will you talk to Heather about finding Monstrous Nightmare gel to dissolve all this Death Song amber?</Text><ID>926652</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestoffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>What a nightmare! There aren't enough Monstrous Nightmares around to clear the entire island. Maybe we can create a new compound in the Lab that will work as a substitute. </Text><ID>926653</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherGenNotRight</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 1887 + Deathsong01T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'll go to the Lab and start researching now. But there's a bigger problem. I saw the Death Song fly over the bridge toward Sven's farm. We need to go make sure everyone there is alright. @@ Please go across the bridge to Sven's farm. I’ll send help so you won't face danger alone. +</Text><ID>926656</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Death Song is a powerful dragon that will require the best help you can gather. {{Input}} on your dragon button in the top left of the screen and {{input}} on the age up button on a young dragon to change it to a Broad Wing dragon!</Text><ID>926657</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Sven's Farm in Berk</Text><ID>926654</ID></Title><Desc><Text>Go to Sven's Farm in Berk</Text><ID>926654</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203035 + true + 300 + 300 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 203035 + true + 70 + 70 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203035 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203035 + true + 350 + 350 + + 0 + +
+ + 1 +

6

+ 10996 + + 1 + 2300 + 203035 + true + 1 + 1 + + 0 + +
+ false +
+ + 1771 + Deathsong_Deathsong02 + 35 +

+ <Data><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong02T04.unity3d/PfGrpDSDeathsong02T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong02T03.unity3d/PfGrpDSDeathsong02T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong02T02.unity3d/PfGrpDSDeathsong02T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mystery of Sven’s Farm</Text><ID>926550</ID></Title><Desc><Text>The Death Song is attacking Berk!</Text><ID>926551</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1769 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1771 + 1888 + 0 + + + 1 + 1771 + 1889 + 0 + + + 1 + 1771 + 1890 + 0 + + + 1 + 1771 + 2063 + 0 + + + 1 + 1771 + 1891 + 0 + + + 1 + 1771 + 2501 + 0 + + + + 1 + 203036 + 0 + + 1888 + Deathsong02T01 + <Data><Setup><Scene>BerkFarmDO</Scene><Asset>PfDWHeatherTeen</Asset><Location>PfMarker_HeatherStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Hello, dragon trainer. I saw the Death Song fly towards Sven's farm. I'm heading there now to ensure his safety. The farm is down this path. {{Input}} on me and lead me down the road.</Text><ID>926660</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueAttract03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Now there's a sight you don't see every day! Each animal has certain behaviors that help them survive. The Death Song must be using its amber to build a secure, unbreakable home. @@ I've seen this with bees or spiders. They collect materials for their nests. Death Songs only seem to collect animals—for lunch!</Text><ID>926661</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestEnd02</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FrontOfNest</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeen</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Rogue Dragon Rider and lead her to the nest</Text><ID>926658</ID></Title><Desc><Text>Escort the Rogue Dragon Rider to the nest</Text><ID>941685</ID></Desc></Data> + 0 + false + + + 1889 + Deathsong02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>We need to make a few more observations. I'll keep an eye out for any dragons while you get closer to the nest—carefully! We don't want to be the Death Song's next meal.</Text><ID>926664</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>{{Name}}, look! Over there! Is that a dragon?</Text><ID>926665</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueGenPraise02</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDSDeathsong02T02b.unity3d/PfGrpDSDeathsong02T02b</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Nest02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a closer look</Text><ID>926662</ID></Title><Desc><Text>Take a closer look at the wreckage of Sven's farm</Text><ID>941686</ID></Desc></Data> + 0 + false + + + 1890 + Deathsong02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>This dragon is trapped! Dragon fire won't dissolve this amber. We can't leave this dragon here in the Death Song's clutches. @@ The Alchemist of the School of Dragons might be able to figure out the science behind this amber-like substance if she has a sample to work with. Can you {{input}} on the amber and chop off a piece?</Text><ID>926668</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Watch out!</Text><ID>923247</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DOQuestDeathsongExpansion.unity3d/SndDragDeathsongRoar</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_AmberChop</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectAmberChunk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop a piece of the amber with your axe</Text><ID>926666</ID></Title><Desc><Text>Chop a piece of the amber with your axe</Text><ID>941687</ID></Desc></Data> + 0 + false + + + 1891 + Deathsong02T04 + <Data><Setup><Scene>BerkFarmDO</Scene><Asset>PfDWHeatherTeenFollow</Asset><Location>PfMarker_FollowReset</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeenFollow</NPC><Text>We need to leave while we still can. {{Input}} on me and let's get out of here!</Text><ID>926672</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestDeathsongExpansion.unity3d/SndDragDeathsongRoar</Asset><NPC>PfDWHeatherTeenFollow</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeenFollow</NPC><Text>We have to save that dragon! I’m sorry I can't tell you who I am, but please take this nest sample to the Alchemist and help her find a way to free that dragon. Please hurry, {{Name}}!</Text><ID>926673</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer04</Asset><NPC>PfDWHeatherTeenFollow</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FollowNPC</Value></Pair><Pair><Key>Name</Key><Value>PfMarkerEnd</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>15</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeenFollow</Value></Pair><Pair><Key>Spline</Key><Value>Follow_NPC</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow the Rogue Dragon Rider out of the nest area</Text><ID>926670</ID></Title><Desc><Text>Follow the Rogue Dragon Rider out of the nest area</Text><ID>926670</ID></Desc><Reminder><Text>Stay close to the Rogue Dragon Rider!</Text><ID>936250</ID></Reminder><Failure><Text>Oh no! You need to keep up!</Text><ID>936409</ID></Failure></Data> + 0 + false + + + 2063 + Deathsong02T03.5 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Let's get out of here! Get over here while I fend the dragon off.</Text><ID>926676</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer05</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FrontOfNest</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Run to the Rogue Dragon Rider!</Text><ID>926674</ID></Title><Desc><Text>Run to the Rogue Dragon Rider!</Text><ID>926674</ID></Desc></Data> + 0 + false + + + 2501 + Deathsong02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Perhaps the Rogue Dragon Rider has a good point. You should go to the Lab and see if you can solve this problem.</Text><ID>927690</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hi {{Name}}! Give me a moment to catch my breath. I just came from the Wilderness!</Text><ID>927691</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherHello02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AtLab</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Lab at the School</Text><ID>927688</ID></Title><Desc><Text>Go to the Lab at the School</Text><ID>927688</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203036 + true + 100 + 100 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 203036 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203036 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203036 + true + 350 + 350 + + 0 + +
+ false +
+ + 1777 + Deathsong_MaskedCrusader01 + 15 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpDSCrusader01T05.unity3d/PfGrpDSCrusader01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSCrusader01T09.unity3d/PfGrpDSCrusader01T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Death Song Amber</Text><ID>926603</ID></Title><Desc><Text>You must free the trapped dragon!</Text><ID>926604</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1771 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1777 + 1896 + 0 + + + 2 + 1777 + 1778 + 0 + + + 1 + 1777 + 1897 + 0 + + + 2 + 1777 + 1779 + 0 + + + 1 + 1777 + 1903 + 0 + + + 1 + 1777 + 1904 + 0 + + + 2 + 1777 + 1780 + 0 + + + 1 + 1777 + 1906 + 0 + + + 1 + 1777 + 1907 + 0 + + + 1 + 1777 + 1908 + 0 + + + 1 + 1777 + 1909 + 0 + + + + 1 + 203042 + 0 + + 1778 + Deathsong_Crusader01T02 + 15 +

1777

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1778 + 1898 + 0 + + + + 1 + 203043 + 0 + + 1898 + MaskedCrusader01T02.1 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I've gathered a few things from the experiments I've conducted previously. I dissolved actual amber by heating it, grinding it, and then dissolving it in ethynol. I don't think this stuff from the Death Song has the same components. @@ I think we can use them to test out our theories but we're missing one more ingredient. Will you talk to Fishlegs about the hydrochloric acid he received from Johann?</Text><ID>927020</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Here, you can have anything you want that will help us get rid of the Death Song. I'll do my part to help, but I would be happy if I never have to see that dragon again! @@ I still have nightmares about when Meatlug and I were stuck in its amber. We were this close to being dragon snacks!</Text><ID>927021</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs about hydrochloric cid</Text><ID>941713</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11947 + + 1 + 2245 + 203043 + true + 1 + 1 + + 0 + +
+ false + + + 1779 + Deathsong_Crusader01T04 + 15 +

1777

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's go inside the lab!</Text><ID>926597</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>By mixing two substances together, we made a new substance with dissolving properties. You are really good at chemical reactions!</Text><ID>926598</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><RemoveItem><ItemID>11947</ItemID><Quantity>1</Quantity></RemoveItem><Random>0</Random><Title><Text>Go into the lab</Text><ID>922980</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1779 + 1899 + 0 + + + 1 + 1779 + 1900 + 0 + + + 1 + 1779 + 1901 + 0 + + + 1 + 1779 + 1902 + 0 + + + + 1 + 203317 + 0 + + 1899 + MaskedCrusader01T04.1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboVinSalt</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Dissolve the amber with vinegar and salt</Text><ID>941714</ID></Desc></Data> + 0 + false + + + 1900 + MaskedCrusader01T04.2 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboBakSalt</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Dissolve the amber with baking soda and salt</Text><ID>941715</ID></Desc></Data> + 0 + false + + + 1901 + MaskedCrusader01T04.3 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboSaltHcl</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Dissolve the amber with vinegar and hydrochloric acid</Text><ID>941716</ID></Desc></Data> + 0 + false + + + 1902 + MaskedCrusader01T04.4 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>ComboVinBak</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Dissolve the amber with vinegar and baking soda</Text><ID>941717</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12014 + + 1 + 2304 + 203317 + true + 1 + 1 + + 0 + +
+ false +
+ + 1780 + Deathsong_Crusader01T07 + 15 +

1777

+ <Data><Offer><Type>Popup</Type><ID>926601</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's go into the lab.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>926602</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Perfect! That's all the glass I needed. Thank you both for your help.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Perform the steps of the experiment.</Text><ID>926599</ID></Title><Desc><Text>Help Meatlug make more glass.</Text><ID>926600</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1780 + 1905 + 0 + + + + 1 + 0 + 0 + + 1905 + MaskedCrusader01T07.1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>BarfSandstone</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Go into the Lab</Text><ID>926596</ID></Desc></Data> + 0 + false + + false +
+ + 1896 + MaskedCrusader01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh no! The Death Song created a nest at Sven's farm instead of flying away from Berk? That's terrifying. @@ I've been trying to figure out what we can do to help. We should use the scientific method to find the answer to our troubles. How can we dissolve the amber-like substance that the Death Song left all over the village? @@ We should conduct an experiment with a sample of the target object. Can you give me the piece you took from Sven's farm?</Text><ID>927034</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherHello01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Perfect. This is the first step on the way to solving our problem!</Text><ID>927035</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>11946</Value></Pair><Pair><Key>ItemDescription</Key><Value>Amber Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the piece of amber to Heather</Text><ID>927032</ID></Title><Desc><Text>Give the piece of amber to Heather</Text><ID>927032</ID></Desc></Data> + 0 + false + + + 1897 + MaskedCrusader01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Come back to me and let's make a hypothesis.</Text><ID>927038</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherIdle03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's an interesting theory. I can't wait to test it out.</Text><ID>927039</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherHello02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesisCrusader.unity3d/PfUiHypothesisCrusader</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Make a hypothesis</Text><ID>929848</ID></Title><Desc><Text>Meet Heather to create a hypothesis</Text><ID>941718</ID></Desc></Data> + 0 + false + + + 1903 + MaskedCrusader01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh! Before I forget, I have a request. I've used up all my glass bottles in...well, I need more glass bottles. We need a Gronckle to turn sandstone into glass. Will you ask Fishlegs if Meatlug can help us out with this?</Text><ID>927042</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug and I would love to help out, {{Name}}! We'll do our part.</Text><ID>927043</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Fishlegs by the lake at the School</Text><ID>927040</ID></Title><Desc><Text>Meet Fishlegs by the lake at the School</Text><ID>941719</ID></Desc></Data> + 0 + false + + + 1904 + MaskedCrusader01T06 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWGronckleMeatlug</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Input}} on Meatlug and lead her to the lab, my friend!</Text><ID>927046</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hello, Meatlug! Are you ready to do some work?</Text><ID>927047</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherHello02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AtLab</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGronckleMeatlug</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Meatlug and lead her to the Lab</Text><ID>927044</ID></Title><Desc><Text>Escort Meatlug to the Lab</Text><ID>941720</ID></Desc><Reminder><Text>Lead Meatlug to the Lab!</Text><ID>936258</ID></Reminder><Failure><Text>Oh no! You left Meatlug behind!</Text><ID>936259</ID></Failure></Data> + 0 + false + + + 1906 + MaskedCrusader01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Take as much of this concoction as you need, {{Name}}. You need to go back to Sven's farm as soon as possible so that you can free that dragon!</Text><ID>927050</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Sven's Farm</Text><ID>927048</ID></Title><Desc><Text>Visit Sven's Farm</Text><ID>927048</ID></Desc></Data> + 0 + false + + + 1907 + MaskedCrusader01T09 + <Data><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSCrusader01T09.unity3d/PfGrpDSCrusader01T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{Input}} on the Death Song amber and melt it using Heather's solution.</Text><ID>927053</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_AmberBlocker</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dissolve the amber blocking the farm way</Text><ID>927051</ID></Title><Desc><Text>Dissolve the amber blocking the farm way</Text><ID>927051</ID></Desc></Data> + 0 + false + + + 1908 + MaskedCrusader01T10 + <Data><Setup><Scene>BerkFarmDO</Scene><Asset>PfAmberMeltChunk</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You need to rush down to the nest and see if the dragon is still alive! {{Input}} on the dragon and free him from the amber.</Text><ID>927056</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfAmberMeltChunk</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>AmberMeltChunkScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dissolve the amber to free the dragon</Text><ID>927054</ID></Title><Desc><Text>Dissolve the amber to free the dragon</Text><ID>941721</ID></Desc></Data> + 0 + false + + + 1909 + MaskedCrusader01T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It's too dangerous to spend the time to melt the Death Song's nest because the dragon could return at any time. Hiccup needs to know right away.</Text><ID>927059</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, this is bad. We need to think about how we can protect the village from the Death Song. We know from experience that the Death Song can be a dangerous threat to us all!</Text><ID>927060</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Offer your help to Hiccup in Berk</Text><ID>927057</ID></Title><Desc><Text>Offer your help to Hiccup in Berk</Text><ID>927057</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 203042 + true + 50 + 50 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 203042 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203042 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203042 + true + 200 + 200 + + 0 + +
+ false +
+ + 1781 + Deathsong_Defenses01 + 4 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Berk Defense</Text><ID>926586</ID></Title><Desc><Text>Gobber needs to beef up the defenses in Berk.</Text><ID>926587</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1777 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1781 + 1910 + 0 + + + 2 + 1781 + 1782 + 0 + + + 1 + 1781 + 1916 + 0 + + + 2 + 1781 + 1786 + 0 + + + 1 + 1781 + 1920 + 0 + + + 1 + 1781 + 2499 + 0 + + + + 2 + 203044 + 0 + + 1782 + Deathsong_Defenses01T03 + 4 +

1781

+ <Data><Offer><Type>Popup</Type><ID>926581</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Well, uh… the thing is, she isn't quite ready. People kept coming to my shop to borrow all sorts of things and she's in a few pieces! Fishlegs took the bow, Bucket has the rope, and Ruffnut has the crank. @@ Get those items back for me and I'll have Freya ready for combat in a jiffy!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gather parts for the ballista </Text><ID>926580</ID></Title><Desc><Text>Gather parts for the ballista </Text><ID>926580</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 2 + 1782 + 1783 + 0 + + + 2 + 1782 + 1784 + 0 + + + 2 + 1782 + 1785 + 0 + + + + 2 + 0 + 0 + + 1783 + Defenses01T03.1 + 4 +

1782

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Fishlegs about the bow</Text><ID>926574</ID></Title><Desc><Text>Talk to Fishlegs about the bow</Text><ID>926574</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1783 + 1913 + 0 + + + + 2 + 203046 + 0 + + 1913 + Defenses01T03.1 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hello {{Name}}! The large bow? Yes, I made a harp with it and some Yak hair. She's a fan of the classical arias, you know. I'm always looking to innovate, so if Gobber needs it back I’m happy to give it up!</Text><ID>926890</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about the bow</Text><ID>926574</ID></Title><Desc><Text>Talk to Fishlegs about the bow</Text><ID>926574</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11966 + + 1 + 2209 + 203046 + true + 1 + 1 + + 0 + +
+ false +
+ + 1784 + Defenses01T03.2 + 4 +

1782

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Ruffnut about the crank</Text><ID>926576</ID></Title><Desc><Text>Talk to Ruffnut about the crank</Text><ID>926576</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1784 + 1914 + 0 + + + + 2 + 203045 + 0 + + 1914 + Defenses01T03.2 + <Data><End><Type>Popup</Type><ID>926893</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Bummer! Barf and Belch are not going to be happy. We rolled the crank on their back as a back massager. Pro tip: dragons love it, but Tuffnut? Not so much. He cried like a baby! It was awesome.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut about the crank</Text><ID>926576</ID></Title><Desc><Text>Talk to Ruffnut about the crank</Text><ID>926576</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11967 + + 1 + 2208 + 203045 + true + 1 + 1 + + 0 + +
+ false +
+ + 1785 + Defenses01T03.3 + 4 +

1782

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Bucket about the rope</Text><ID>926577</ID></Title><Desc><Text>Talk to Bucket about the rope</Text><ID>926577</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1785 + 1915 + 0 + + + + 2 + 203047 + 0 + + 1915 + Defenses01T03.3 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Hello {{Name}}! The thick rope Gobber used as the second part of a pulley system? Yes, you can have it back. Mulch wanted to make a sheep launcher prototype, but it didn't work out very well. The sheep launched so fast its wool flew right off. Have you ever seen a naked sheep flying through the air? Not a pretty sight.</Text><ID>926896</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket about the rope</Text><ID>926577</ID></Title><Desc><Text>Talk to Bucket about the rope</Text><ID>926894</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11968 + + 1 + 2210 + 203047 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 1786 + Deathsong_Defenses01T05 + 4 +

1781

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm glad I caught up to you, {{Name}}! I heard Heather gave you some liquid that will dissolve the Deathsong Amber. Can you melt the amber on the houses in Berk? I’d love to get back inside.</Text><ID>926584</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thanks, {{Name}}. You're definitely doing your part to get Berk back in tiptop shape!</Text><ID>926585</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Melt amber from Fishlegs's house</Text><ID>926582</ID></Title><Desc><Text>Melt Amber with Astrid</Text><ID>926583</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1786 + 1917 + 0 + + + 1 + 1786 + 1918 + 0 + + + 1 + 1786 + 1919 + 0 + + + + 2 + 0 + 0 + + 1917 + Defenses01T05.1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FishlegsHouse</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>GronckleScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dissolve the amber on Fishlegs's house</Text><ID>926897</ID></Title><Desc><Text>Dissolve the amber on the houses in Berk</Text><ID>941704</ID></Desc></Data> + 0 + false + + + 1918 + Defenses01T05.2 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfHouseNadderAmber</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>NadderScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dissolve the amber on Astrid's house</Text><ID>926899</ID></Title><Desc><Text>Dissolve the amber on the houses in Berk</Text><ID>941704</ID></Desc></Data> + 0 + false + + + 1919 + Defenses01T05.3 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TwinsRoof</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>ZipplebackScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dissolve the amber on the twins' house</Text><ID>926901</ID></Title><Desc><Text>Dissolve the amber on the houses in Berk</Text><ID>941704</ID></Desc></Data> + 0 + false + + false +
+ + 1910 + Defenses01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Death Song has a way of mesmerizing our dragons. If it's attacking Berk and building its nest on Sven's farm, all our dragons could be in danger. We need another way. @@Gobber is our most talented blacksmith here on the island, and I'm sure he'll be itching to design something to protect us. Can you talk to him about our options?</Text><ID>926905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestSide3_1.unity3d/DlgHiccupBerk02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I have tears coming to my eyes, {{greeting}}! I knew ol' Freya would be proudly defending Berk once more, if I just gave it a bit more time. Freya's the ballista, you know. The big, big, big crossbow.</Text><ID>927712</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about the defenses</Text><ID>926903</ID></Title><Desc><Text>Talk to Gobber about the defenses</Text><ID>926903</ID></Desc></Data> + 0 + false + + + 1916 + Defenses01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should return to Gobber with the parts of the ballista.</Text><ID>926913</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Perfect! I'll have this crossbow built up in no time.</Text><ID>926914</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>11966</Value></Pair><Pair><Key>ItemDescription</Key><Value>Crossbow Bow</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>11967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Crank</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>11968</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pulley Rope</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Gobber with the ballista parts</Text><ID>926911</ID></Title><Desc><Text>Return to Gobber and give him the ballista parts</Text><ID>941705</ID></Desc></Data> + 0 + false + + + 1920 + Defenses01T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_ByCrossbow</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>If we don't get the defenses done soon, it won't matter how much amber dissolver we have. Can you go see Gobber and see how the crossbow is coming?</Text><ID>926917</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Oh ho! Isn't she a beaut? Of course, she's just the first. I'm all ramped up to build more. We'll have Berk looking like a fortress in no time at all.</Text><ID>926918</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ByCrossbow</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Gobber by the ballista</Text><ID>926915</ID></Title><Desc><Text>Meet Gobber by the ballista</Text><ID>926915</ID></Desc></Data> + 0 + false + + + 2499 + Defenses01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can tell our chieftain that Berk's in good hands!</Text><ID>927717</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Me, chieftain? It still sounds odd to me. +Don't worry. I won't let that distract me from the danger of the Death Song here.</Text><ID>927718</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Hiccup about the developments</Text><ID>927715</ID></Title><Desc><Text>Return to Hiccup and tell him about what you have done to help protect Berk</Text><ID>941706</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 203044 + true + 350 + 350 + + 0 + +
+ + 120 +

2

+ 0 + + 1 + 542 + 203044 + true + 120 + 120 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203044 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203044 + true + 50 + 50 + + 0 + +
+ false +
+ + 1787 + Deathsong_DragonEye01 + 4 +

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWHeadmaster</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWBotanist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpDSDragonEye01T01.unity3d/PfGrpDSDragonEye01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpDSDragonEye01T00.unity3d/PfGrpDSDragonEye01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mysterious Dragon Eye</Text><ID>926588</ID></Title><Desc><Text>Look at the Groncicle Dragon Eye</Text><ID>926589</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1781 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1787 + 1921 + 0 + + + 1 + 1787 + 1922 + 0 + + + 1 + 1787 + 1923 + 0 + + + 1 + 1787 + 1924 + 0 + + + 1 + 1787 + 1925 + 0 + + + + 1 + 203048 + 0 + + 1921 + DragonEye01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I asked the Archaeologist to join us for an important meeting in the Great Hall. He was supposed to come to Berk on one of Johann's ships but he’s late. Can you check the Berk docks to see if he's arrived?</Text><ID>926921</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hello, {{Name}}, I'm glad to see you. It's been a while! I travel far and wide as an archaeologist as I look for ancient civilizations. In remote places, I carefully dig up ancient man-made artifacts to figure out how they lived. I love my work, especially when we make amazing discoveries like we did in Icestorm Island, but nothing feels as good as coming home.</Text><ID>926922</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Archaeologist at the dock in Berk</Text><ID>926919</ID></Title><Desc><Text>Meet the Archaeologist at the dock in Berk</Text><ID>926919</ID></Desc></Data> + 0 + false + + + 1922 + DragonEye01T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWArchaeologist</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>So, what grand adventure is Hiccup planning this time? I can't wait! Now, if I'm correct, the meeting is in the Great Hall. {{Input}} on me and take me there, my friend!</Text><ID>926925</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreatHallExit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>Escort the Archaeologist to the Great Hall</Text><ID>926923</ID></Title><Desc><Text>Escort the Archaeologist to the Great Hall</Text><ID>926923</ID></Desc><Reminder><Text>Don't leave the Archaeologist behind!</Text><ID>936226</ID></Reminder><Failure><Text>Oh no! You left Skulder behind!</Text><ID>936437</ID></Failure></Data> + 0 + false + + + 1923 + DragonEye01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's go inside.</Text><ID>926928</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ah! Welcome to the party, {{Name}}, and thank you for bringing our guest. I wanted to show you this artifact we recovered from the Ship Graveyard recently. @@ I think it might hold the key to solving our Death Song problem...and might help us with other dragon problems in the future!</Text><ID>926929</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/DragonEye01.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Great Hall</Text><ID>923243</ID></Title><Desc><Text>Enter the Great Hall</Text><ID>923243</ID></Desc></Data> + 0 + false + + + 1924 + DragonEye01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's called the Dragon Eye. When the light from a dragon's fireball projects through a specific Dragon Eye lens, it shows us vital information about the dragon class. Here’s how we activate it. @@ {{Input}} on Toothless and he’ll shoot a fireball to illuminate the lens with his special dragon fire!</Text><ID>926932</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Toothless to light the Dragon Eye</Text><ID>926930</ID></Title><Desc><Text>{{Input}} on Toothless to light the Dragon Eye</Text><ID>926930</ID></Desc></Data> + 0 + false + + + 1925 + DragonEye01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Isn't that amazing? It has maps and information about the dragon, even things that aren't in the Book of Dragons. The creators of the Dragon Eye had intimate knowledge of all sorts of dragons. It makes me a bit envious! @@ You should take a closer look at the projections. Walk up to the wall and you can see the whole thing!</Text><ID>926935</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This means that the artifact we recovered at Icestorm Island is a Dragon Eye lens. How exciting! If we use it with this device, we can learn even more about the island and the Groncicles that call it home. @@ If different Dragon Eye lenses hold information on the different dragon classes, we would only need to find the Death Song lens to learn more about the dragon. Well, I'll be glad to help out. Finding and studying ancient man-made artifacts is my expertise! With {{Name}}'s help, I'm sure we’ll be solving the Death Song's mysteries in no time!</Text><ID>926936</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DragonEyeProjection</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the projections on the wall</Text><ID>926933</ID></Title><Desc><Text>Look at the projections on the wall</Text><ID>926933</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203048 + true + 100 + 100 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 203048 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203048 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203048 + true + 350 + 350 + + 0 + +
+ false +
+ + 1788 + Deathsong_MaskedCrusader02 + 11 +

+ <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpDSCrusader02T00.unity3d/PfGrpDSCrusader02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>SinkingBoatINTDO</Scene><Asset>RS_DATA/PfGrpDSCrusader02T08.unity3d/PfGrpDSCrusader02T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpDSCrusader02T04.unity3d/PfGrpDSCrusader02T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Shipwreck Lane</Text><ID>926611</ID></Title><Desc><Text>You must go to the Ship Graveyard to look for the Death Song Dragon Eye lens, but you find a dire situation along the way.</Text><ID>926612</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1787 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1788 + 1926 + 0 + + + 2 + 1788 + 1789 + 0 + + + 1 + 1788 + 1930 + 0 + + + 2 + 1788 + 1790 + 0 + + + 1 + 1788 + 1999 + 0 + + + 1 + 1788 + 2000 + 0 + + + 1 + 1788 + 2001 + 0 + + + 1 + 1788 + 2002 + 0 + + + 2 + 1788 + 1979 + 0 + + + 1 + 1788 + 2498 + 0 + + + + 1 + 203049 + 0 + + 1789 + Crusader02T02 + 11 +

1788

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Look for the Dragon Eye lens</Text><ID>926605</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1789 + 1928 + 0 + + + 1 + 1789 + 1929 + 0 + + + 1 + 1789 + 1927 + 0 + + + + 1 + 0 + 0 + + 1927 + Crusader02T02.1 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The lens isn't here.</Text><ID>927066</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Reaper</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check the ships for the Dragon Eye Lens</Text><ID>927061</ID></Title><Desc><Text>Check the ships for the Dragon Eye Lens</Text><ID>927061</ID></Desc></Data> + 0 + false + + + 1928 + Crusader02T02.2 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The lens isn't here.</Text><ID>927066</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SeaStacks</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check the sea stacks for the Dragon Eye Lens</Text><ID>927064</ID></Title><Desc><Text>Check the sea stacks for the Dragon Eye Lens</Text><ID>927064</ID></Desc></Data> + 0 + false + + + 1929 + Crusader02T02.3 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The lens isn't here.</Text><ID>927066</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TidePools</Value></Pair><Pair><Key>Range</Key><Value>13</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check the tide pools for the Dragon Eye Lens</Text><ID>927067</ID></Title><Desc><Text>Check the tide pools for the Dragon Eye Lens</Text><ID>927067</ID></Desc></Data> + 0 + false + + false + + + 1790 + Crusader02T04 + 11 +

1788

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I need to get into the ship but those giant eels are keeping my Razorwhip at bay. Blast those eels so we can get to the ship, please! We need to get inside the ship!</Text><ID>926608</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer04</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Good!</Text><ID>926609</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueGenPraise02</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot eels from the ship</Text><ID>926606</ID></Title><Desc><Text>Shoot eels from the ship</Text><ID>926606</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 1790 + 1931 + 0 + + + + 1 + 0 + 0 + + 1931 + Crusader02T04.1 + <Data><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Eels02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfGiantEel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot eels from the ship</Text><ID>926606</ID></Title><Desc><Text>Shoot eels from the ship</Text><ID>926607</ID></Desc></Data> + 0 + false + + false +
+ + 1979 + Crusader02T09 + 11 +

1788

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Exit the ship</Text><ID>926610</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1979 + 2003 + 0 + + + + 1 + 203296 + 0 + + 2003 + Crusader02T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Up the hatch, quickly!</Text><ID>927074</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Wow, we got these eggs out just in the nick of time. I'm glad we make such a great team because I never could have done it without you. @@ My Razorwhip Windshear seems to be glad to know you risked your life to save the egg. Why don't you keep the egg and make sure to train it to be a good dragon? I trust you to do a good job. @@ I'm sorry, but I still can't tell you my secret identity. Innocent people would be hurt if my secret was revealed to the world, and I don't want that to happen. I hope I've proven that you can trust me.</Text><ID>927075</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd04</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Exit the Ship</Text><ID>926610</ID></Title><Desc><Text>Exit the Ship</Text><ID>926610</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11963 + + 1 + 2274 + 203296 + true + 1 + 1 + + 0 + +
+ false +
+ + 1926 + Crusader02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>So now we know what to do to make Berk safe. We need the Death Song Dragon Eye lens so that we can figure out how to defeat it. It could be anywhere... so it’s time for all hands on deck! We'll check all the surrounding islands to see if we can find the lens. @@ We found the Dragon Eye in the Ship Graveyard. We didn't see lenses while we were there, but maybe we may have missed something. I need you to check it out. You can fly out to sea and you'll find the way to the Ship Graveyard.</Text><ID>927078</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This scene of dead ships and whistling wind is quite eerie. It's a wonder that Johann would hide his treasures in this place.</Text><ID>927079</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the Ship Graveyard</Text><ID>927076</ID></Title><Desc><Text>Visit the Ship Graveyard</Text><ID>927076</ID></Desc></Data> + 0 + false + + + 1930 + Crusader02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There is someone flying in the distance. You should investigate further.</Text><ID>927082</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>{{Name}}! Thank Thor you're here. I need your help!</Text><ID>927083</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueAttract03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WreckRogue</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to the Rogue Dragon Rider</Text><ID>927080</ID></Title><Desc><Text>Talk to the Rogue Dragon Rider</Text><ID>927080</ID></Desc></Data> + 0 + false + + + 1999 + Crusader02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I could use your help within the ship, too. Let's go inside!</Text><ID>927086</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueAttract01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>SinkingBoatINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the ship</Text><ID>927084</ID></Title><Desc><Text>Enter the ship</Text><ID>927084</ID></Desc></Data> + 0 + false + + + 2000 + Crusader02T06 + <Data><Setup><Scene>SinkingBoatINTDO</Scene><Asset>PfDWHeatherTeen</Asset><Location>PfMarker_Escort</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>The thing we need is at the heart of the ship. I know the way, but I want to take the rear and keep an eye out for any dangers that might follow us. Will you {{input}} on me and lead us down the corridors?</Text><ID>927089</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>The Razorwhip eggs are in that room...</Text><ID>927090</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestEnd06</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>SinkingBoatINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FollowNPC</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeen</Value></Pair></Objective><Type>Escort</Type><Title><Text>Escort the Rogue Dragon Rider to the heart of the ship</Text><ID>927087</ID></Title><Desc><Text>Escort the Rogue Dragon Rider to the heart of the ship</Text><ID>927087</ID></Desc><Reminder><Text>Stay close to the Rogue Dragon Rider!</Text><ID>936250</ID></Reminder><Failure><Text>Oh no! You left the Rogue Dragon Rider behind!</Text><ID>936261</ID></Failure></Data> + 0 + false + + + 2001 + Crusader02T07 + <Data><Setup><Scene>SinkingBoatINTDO</Scene><Asset>RS_DATA/PfGrpDSCrusader02T00b.unity3d/PfGrpDSCrusader02T00b</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Have you ever met a dragon like mine before? She's called a Razorwhip. They're pretty rare in the dragon world, and I’m the only one who's trained one before. They don’t give their trust easily. @@ The Razorwhip had a nest near Berk, but I moved them here when the Death Song attacked the island. I didn't realize that this ship was infested with giant eels. We need to get them someplace safe! Will you grab one of those eggs? Be very gentle with them.</Text><ID>927093</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>SinkingBoatINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfEggRazorwhip</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab a dragon egg</Text><ID>927091</ID></Title><Desc><Text>Grab a dragon egg</Text><ID>927091</ID></Desc></Data> + 0 + false + + + 2002 + Crusader02T08 + <Data><Setup><Scene>SinkingBoatINTDO</Scene><Asset>PfDWHeatherTeen</Asset><Location>PfMarker_FollowNPC</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>SinkingBoatINTDO</Scene><Asset>PfOcean</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Oh no! The eels must be wrecking this ship to get at the eggs. We need to get out of here before the ship sinks! Quick, {{input}} on me and I'll lead the way out of here. Stay close!</Text><ID>927096</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueAttract03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>SinkingBoatINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_End</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>3</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeen</Value></Pair><Pair><Key>Spline</Key><Value>Follow_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow the Rogue Dragon Trainer</Text><ID>927094</ID></Title><Desc><Text>Follow the Rogue Dragon Trainer toward the exit</Text><ID>941722</ID></Desc><Reminder><Text>Stay close!</Text><ID>936262</ID></Reminder><Failure><Text>Oh no! The Rogue Dragon Rider left you behind!</Text><ID>936263</ID></Failure></Data> + 0 + false + + + 2498 + Crusader02T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Astrid should know what happened at the Ship Graveyard. You should talk to her at the Training Grounds.</Text><ID>927736</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow, that sounds like quite an adventure! I'm glad you were able to save the dragon eggs, and I'm sure you'll do an excellent job raising that Razorwhip. +It's a shame the Dragon Eye lens wasn't there...</Text><ID>927737</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go back to Astrid</Text><ID>927734</ID></Title><Desc><Text>Go back to Astrid with the news</Text><ID>941723</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 203049 + true + 200 + 200 + + 0 + +
+ + 120 +

2

+ 0 + + 1 + 542 + 203049 + true + 120 + 120 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203049 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203049 + true + 50 + 50 + + 0 + +
+ false +
+ + 1813 + Deathsong_Deathsong03 + 11 +

+ <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong03T00.unity3d/PfGrpDSDeathsong03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Journey to Death Song Island</Text><ID>926555</ID></Title><Desc><Text>You must go to Death Song island to recover the Dragon Eye lens, but you get more than you bargained for!</Text><ID>926556</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1788 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1813 + 2034 + 0 + + + 1 + 1813 + 2041 + 0 + + + 1 + 1813 + 2042 + 0 + + + 2 + 1813 + 1976 + 0 + + + 1 + 1813 + 2470 + 0 + + + 1 + 1813 + 2047 + 0 + + + 1 + 1813 + 2300 + 0 + + + 1 + 1813 + 2301 + 0 + + + 2 + 1813 + 1977 + 0 + + + + 1 + 203071 + 0 + + 1976 + Deathsong03T04 + 11 +

1813

+ <Data><Offer><Type>Popup</Type><ID>926553</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Unfortunately, the camp is not the same as I left it those years ago. Will you help me search for the artifacts that might be in this area?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistCamp</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Give stuff to the Archaeologist</Text><ID>926552</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1976 + 2297 + 0 + + + 1 + 1976 + 2298 + 0 + + + 1 + 1976 + 2299 + 0 + + + + 1 + 0 + 0 + + 2297 + Deathsong03T04a + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong03T04a.unity3d/PfGrpDSDeathsong03T04a</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My old [c][3eebff]trowel [/c][ffffff]! This little shovel looking thing has helped me carefully dig up many artifacts when a regular shovel is too big. I use the trowel the most! So glad you found it.</Text><ID>926679</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArchTrowel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the trowel near the old camp</Text><ID>926677</ID></Title><Desc><Text>Find the trowel at the Archaeologist's old camp</Text><ID>941688</ID></Desc></Data> + 0 + false + + + 2298 + Deathsong03T04b + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong03T04b.unity3d/PfGrpDSDeathsong03T04b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, the ever useful [c][3eebff]hand brush[/c][ffffff]. It would be impossible to carefully move the soil away from a unit without this tool.</Text><ID>926682</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArchBrush</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the brush near the old camp</Text><ID>926680</ID></Title><Desc><Text>Find the brush near the Archaeologist's old camp</Text><ID>941689</ID></Desc></Data> + 0 + false + + + 2299 + Deathsong03T04c + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong03T04c.unity3d/PfGrpDSDeathsong03T04c</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah, my small [c][3eebff]pickaxe[/c][ffffff]! I use pickaxes to scrape away the soil from the artifacts, once I unearth them. It was an amazing tool for me for many years!</Text><ID>926685</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArchPickAxe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the pickaxe near the old camp</Text><ID>926683</ID></Title><Desc><Text>Find the pickaxe near the Archaeologist's old camp</Text><ID>941690</ID></Desc></Data> + 0 + false + + false + + + 1977 + Deathsong03T08 + 11 +

1813

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Go back to Berk</Text><ID>926554</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1977 + 2302 + 0 + + + + 1 + 203293 + 0 + + 2302 + Deathsong03T08 + <Data><Setup><Scene>HubBerkDO</Scene><Location>PfMarker_ArchaeologistBerk</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>926688</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's high time that we get out of here, {{Name}}! I don't want to see that terrifying dragon again. Let's return to Berk. Right now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926689</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That's quite enough adventure for now. I hope this lens holds the secret to defeating the Death Song, {{Name}}. I'm sure you will be able to decipher it with Hiccup soon!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Escape to Berk!</Text><ID>926686</ID></Title><Desc><Text>Fly back to Berk!</Text><ID>926687</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12152 + + 1 + 2273 + 203293 + true + 1 + 1 + + 0 + +
+ false +
+ + 2034 + Deathsong03T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistBerk</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>If the Dragon Eye lens isn't in the Ship Graveyard, we need to figure out where else it could be. Now, what I'm about to ask of you is very dangerous but it's our best option. @@ Snotlout scouted Death Song island and he says that the dangerous dragon isn't there. Now is our best chance to look for the Dragon Eye lens! The Archaeologist has been wracking his memories and he thinks he saw an artifact like it at the island. Will you talk to him?</Text><ID>926692</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It has been years since I was there but there were remnants of an ancient civilization there. I collected many relics and artifacts, but I wasn't able to take them all off the island when I was chased off by some temperamental dragons. I know it will be dangerous but I know you will do your best to protect me.</Text><ID>926693</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Archaeologist at Berk</Text><ID>926690</ID></Title><Desc><Text>Meet the Archaeologist at Berk</Text><ID>926690</ID></Desc></Data> + 0 + false + + + 2041 + Deathsong03T02 + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Into the great beyond! Let’s go to the dangerous island that the Death Song calls home... Melody island!</Text><ID>926696</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Melody Island is a sweet name for a very dangerous place, my friend.</Text><ID>926697</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Melody Island</Text><ID>926877</ID></Title><Desc><Text>Go to Melody Island</Text><ID>926827</ID></Desc></Data> + 0 + false + + + 2042 + Deathsong03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This island has changed a lot over the years. When I was here last, it was a vibrant island with dozens of dragons. Now, there’s nary a dragon anywhere! I never thought I'd miss the sight of those ugly beasts, but it's almost eerie without them here. @@ I found where my camp used to be. Come to me and I'll show you my old home away from home.</Text><ID>926700</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah! Overgrown weeds, holes in my tent, and a thick layer of dust over all my things. It's home sweet home.</Text><ID>926701</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Archaeologist at his old camp</Text><ID>926698</ID></Title><Desc><Text>Meet the Archaeologist at his old camp</Text><ID>926698</ID></Desc></Data> + 0 + false + + + 2047 + Deathsong03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We need to find the Dragon Eye lens before the dragon gets back. We’ll cover more ground if we split up. Why don’t you try heading down toward the trees? This path seems to be a bit familiar to me. Maybe it will jog a few memories...</Text><ID>926704</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DSClue</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look around Melody Island for clues</Text><ID>926702</ID></Title><Desc><Text>Look around Melody Island for clues</Text><ID>941691</ID></Desc></Data> + 0 + false + + + 2300 + Deathsong03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That sound! Was that the Death Song? The Archaeologist might be in trouble!</Text><ID>926707</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It was here! The Death Song! I’m sure it will return to eat me at any moment. Save yourself, {{Name}}! Take the Dragon Eye lens and run.</Text><ID>926708</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TrappedArchaeologist</Value></Pair><Pair><Key>Name</Key><Value>PfDWArchaeologist01</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Archaeologist</Text><ID>931265</ID></Title><Desc><Text>Find the Archaeologist</Text><ID>931265</ID></Desc></Data> + 0 + false + + + 2301 + Deathsong03T07 + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>PfAmberMeltChunk</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Use the dissolving solution you made with Heather to free the Archaeologist from the amber!</Text><ID>926711</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh, thank Odin! I always thought my life would end in the gullet of a giant dragon. I was certain that was happening today! </Text><ID>926712</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfAmberMeltChunk</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>AmberMeltChunkScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dissolve the amber and free the Archaeologist</Text><ID>926709</ID></Title><Desc><Text>Free the Archaeologist by melting the amber</Text><ID>941692</ID></Desc></Data> + 0 + false + + + 2470 + Deathsong03T04.5 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Please give me the tools. I'll be happy to put them to good use once more.</Text><ID>926715</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you, {{Name}}.</Text><ID>926716</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>12150</Value></Pair><Pair><Key>ItemDescription</Key><Value>Hand Brush</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>12149</Value></Pair><Pair><Key>ItemDescription</Key><Value>Trowel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>12151</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pickaxe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the tools back to the Archaeologist</Text><ID>926713</ID></Title><Desc><Text>Give the Archaeologist's old tools back to him</Text><ID>941693</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 203071 + true + 200 + 200 + + 0 + +
+ + 120 +

2

+ 0 + + 1 + 542 + 203071 + true + 120 + 120 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203071 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203071 + true + 50 + 50 + + 0 + +
+ false +
+ + 1818 + Deathsong_Deathsong04 + 11 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong04T06.unity3d/PfGrpDSDeathsong04T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Hatchery is in Trouble!</Text><ID>926561</ID></Title><Desc><Text>The Hatchery is in Trouble!</Text><ID>926561</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1978 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1818 + 2056 + 0 + + + 1 + 1818 + 2057 + 0 + + + 2 + 1818 + 1819 + 0 + + + 1 + 1818 + 2059 + 0 + + + 1 + 1818 + 2060 + 0 + + + 1 + 1818 + 2061 + 0 + + + 1 + 1818 + 2062 + 0 + + + + 1 + 203074 + 0 + + 1819 + Deathsong04T03 + 11 +

1818

+ <Data><Offer><Type>Popup</Type><ID>926559</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We need to get this clear of the amber right away. Can you use the solution you made with Heather to dissolve these Death Song amber pieces?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong04T03.unity3d/PfGrpDSDeathsong04T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>926560</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We need an answer to the threat of the Death Song. Hiccup told me that the Thunderdrum might be a good response, but we need to figure that out fast and get moving on the solution.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Free the Amber from the Hatchery</Text><ID>926558</ID></Title><Desc><Text>Free the Amber from the Hatchery</Text><ID>926558</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 1819 + 2058 + 0 + + + + 1 + 0 + 0 + + 2058 + Deathsong04T03.1 + <Data><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfAmberMeltChunk</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>AmberMeltChunkScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy the amber from the Hatchery</Text><ID>926717</ID></Title><Desc><Text>Destroy the amber from the Hatchery</Text><ID>926717</ID></Desc></Data> + 0 + false + + false + + + 2056 + Deathsong04T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong04T01.unity3d/PfGrpDSDeathsong04T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Camera01Target</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Bad news, {{Name}}. The Death Song was spotted flying towards the school! With its hypnotic song, the Death Song can paralyze our dragon defenses and fly directly to the school. I need your help! Will you fly to the school and look for the Death Song?</Text><ID>926721</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Whoa! Close call.</Text><ID>926722</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWhoa</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HatcheryINTExit</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Help Astrid at the School</Text><ID>926719</ID></Title><Desc><Text>Meet Astrid at the School</Text><ID>904911</ID></Desc></Data> + 0 + false + + + 2057 + Deathsong04T02 + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong04T03.unity3d/PfGrpDSDeathsong04T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't know if it’s a good sign or a bad sign that the Death Song is leaving the school… did it find enough food to get him full? @@ Uh oh… we better get inside the Hatchery, right away.</Text><ID>926725</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh no… it stole dragon eggs!</Text><ID>926726</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridReally</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go in to the Hatchery</Text><ID>926723</ID></Title><Desc><Text>Go in to the Hatchery</Text><ID>926723</ID></Desc></Data> + 0 + false + + + 2059 + Deathsong04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid is right. The Death Song is a danger to all dragons and Vikings that live on our islands. We can't afford to wait, or it will keep attacking and taking our dragons. Talk to the Headmaster and update him on the situation, {{Name}}. </Text><ID>926729</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>For all my years of fighting against dragons, I couldn’t do anything when the Death Song attacked. It used its song to freeze our dragons in place and it had its way in the Hatchery. We are running out of time, {{Name}}. I would like to find a peaceful way to resolve this problem, but I will use my axe if I must to protect my students and their dragons.</Text><ID>926730</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGenPraise01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text><ID>922008</ID></Title><Desc><Text>Talk to the Headmaster</Text><ID>922008</ID></Desc></Data> + 0 + false + + + 2060 + Deathsong04T05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Before the Death Song entered the Hatchery, it landed on Johann’s trading post and ravaged it. I didn't see exactly what happened as I was busy trying to defend the young ones. Will you go check up on him and make sure he is well?</Text><ID>926733</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Oh! {{Name}}, the Death Song gave me such a fright. It landed in front of me and roared, paralyzing me in fear! Then it struck out and stole all my baskets full of the freshest eels from the waters around the schools. I am no dragon trainer, but I hear dragons don't like eels. Why would this massive dragon take eels? @@ Thank you for your concern, my friend, but I will be fine. Other than the blow to my ego, it hardly hurt me at all!</Text><ID>926734</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Johann</Text><ID>927429</ID></Title><Desc><Text>Talk to Johann</Text><ID>927429</ID></Desc></Data> + 0 + false + + + 2061 + Deathsong04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We've been relying on dragons and their dragon trainers to defend the Hatchery. With the Death Song increasing its hunting grounds, we're going to need more man-made defenses. We need catapults and crossbows if we want to stand a chance. Will you talk to Gobber at the School about building more defenses for the school?</Text><ID>926737</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I’ve been waiting for this day for years, {{greeting}}! I was born to do this job.</Text><ID>926738</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber at the School</Text><ID>941609</ID></Desc></Data> + 0 + false + + + 2062 + Deathsong04T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Now that Freya is ready to go, I can make some catapults for the school! I know how to harness energy to make dangerous machines to fend off the Death Song. Machines use a lot of energy and motion to work. Once that arm is released on the catapult, there is no stopping the projectile. An object in motion stays in motion and hopefully hits our target. @@ There's only one way to make sure that you've made a good machine: testing! You need to test your designs to find the best solutions. Take this net shooter, for example. Hiccup tested this design against... well, Toothless. The good thing is that he found it was a very effective design! @@ That's why we remade it. You should take a closer look at the machine!</Text><ID>926741</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'll focus on making more machines and setting them up around the school. We'll be ready to fight against the Death Song when he shows his face again here!</Text><ID>926742</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StablesExit</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at Hiccup's net shooter</Text><ID>926739</ID></Title><Desc><Text>Look at Hiccup's net shooter</Text><ID>926739</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 203074 + true + 200 + 200 + + 0 + +
+ + 110 +

2

+ 0 + + 1 + 526 + 203074 + true + 110 + 110 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203074 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203074 + true + 350 + 350 + + 0 + +
+ false +
+ + 1822 + Deathsong_Deathsong05 + 3 +

+ <Data><Setup><Scene>ReaperINTDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong05T00b.unity3d/PfGrpDSDeathsong05T00b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong05T00.unity3d/PfGrpDSDeathsong05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Following the Rogue Rider</Text><ID>926565</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1818 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1822 + 2067 + 0 + + + 1 + 1822 + 2069 + 0 + + + 1 + 1822 + 2070 + 0 + + + 1 + 1822 + 2071 + 0 + + + 2 + 1822 + 1824 + 0 + + + 1 + 1822 + 2081 + 0 + + + 1 + 1822 + 2082 + 0 + + + 1 + 1822 + 2083 + 0 + + + + 1 + 203088 + 0 + + 1824 + Deathsong05T05 + 3 +

1822

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Free Bing, Bang, and Boom</Text><ID>926564</ID></Title><Desc><Text>Free Bing, Bang, and Boom</Text><ID>926564</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1824 + 2079 + 0 + + + + 1 + 0 + 0 + + 2079 + Deathsong05T05.1 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe you can open one of the cell doors!</Text><ID>926745</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ReaperINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CellDoor</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>Gate01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the door</Text><ID>926743</ID></Title><Desc><Text>{{Input}} on the door and free the Thunderdrums</Text><ID>941694</ID></Desc></Data> + 0 + false + + false + + + 2067 + Deathsong05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah! I almost forgot in the middle of all this talk about my machines. I noticed that you've been talking to that masked dragon rider a lot recently. I saw him fly out toward the Ship Graveyard at top speed. He looked like he was on a mission! @@ You might want to follow him there and figure out what's going on. A dragon rider going at that speed means only thing: danger!</Text><ID>926748</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>{{Name}}! Thank Odin you're here!</Text><ID>926749</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer08</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Rogue Dragon Rider at the Ship Graveyard</Text><ID>926746</ID></Title><Desc><Text>Use the Timberjack to visit the Ship Graveyard</Text><ID>941695</ID></Desc></Data> + 0 + false + + + 2069 + Deathsong05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>We need your help on the deck of the Reaper, right away. Please come!</Text><ID>926752</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer05</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I think this dragon is Thornado, who used to be Stoick's dragon. He seems desperate to go inside the ship, but these giant eels are attacking us. It's taking both of us to fight these eels off!</Text><ID>926753</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueHello02</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Reaper</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to the Rogue Dragon Rider</Text><ID>927080</ID></Title><Desc><Text>Fly over to the Rogue Dragon Rider on the deck of the Reaper</Text><ID>941696</ID></Desc></Data> + 0 + false + + + 2070 + Deathsong05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>We need you to explore the ship for us. Go down inside the ship and see why Thornado keeps trying to get in please. {{Input}} on the hatch to enter the ship. Watch your step!</Text><ID>926756</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer07</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ReaperINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>{{Input}} on the door to enter the Reaper</Text><ID>926754</ID></Title><Desc><Text>{{Input}} on the door to enter the Reaper</Text><ID>926754</ID></Desc></Data> + 0 + false + + + 2071 + Deathsong05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Why would Thornado want to enter the ship? You must explore the ship to find the answer. Be wary of the traps within the halls and proceed deeper into the heart of the Reaper.</Text><ID>926759</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Bing, Bam, and Boom are locked up! Who could have trapped them?</Text><ID>926760</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ReaperINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ReaperCages</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Why did Thornado want to come down into the Reaper?</Text><ID>926757</ID></Title><Desc><Text>Explore the Reaper</Text><ID>941697</ID></Desc></Data> + 0 + false + + + 2081 + Deathsong05T06 + <Data><Setup><Scene>ReaperINTDO</Scene><Asset>PfDWBingNPC</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{Input}} on Bing and lead the dragons out of the Reaper.</Text><ID>926763</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ReaperINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PlayerStart01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>9</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBingNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Bing and lead the dragons out</Text><ID>926761</ID></Title><Desc><Text>{{Input}} on Bing and lead the dragons out of the ship</Text><ID>941698</ID></Desc><Reminder><Text>Don't leave the Thunderdrums behind!</Text><ID>936252</ID></Reminder><Failure><Text>Oh no! You left the Thunderdrums behind!</Text><ID>936407</ID></Failure></Data> + 0 + false + + + 2082 + Deathsong05T07 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong05T07.unity3d/PfGrpDSDeathsong05T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>PfGrpDSDeathsong05T00</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Thornado would be happy to see his dragons safe and sound. You should exit this ship and return to the deck of the Reaper.</Text><ID>926766</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You can see the gratitude in Thornado's eyes.</Text><ID>926767</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>{{Input}} on the ladder to return to the Ship Graveyard</Text><ID>926764</ID></Title><Desc><Text>{{Input}} on the ladder and return to the Ship Graveyard</Text><ID>941699</ID></Desc></Data> + 0 + false + + + 2083 + Deathsong05T08 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong05T08.unity3d/PfGrpDSDeathsong05T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Thank you for your help, {{Name}}. Thornado looks like he's anxious to get his babies to safety. Let's all get out of this dangerous place! You should go to Hiccup at the Training Grounds and let him know what happened.</Text><ID>926770</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Look who decided to drop by. Our old friend Thornado hasn’t been on the island for a while so it's good to see him. We'll want him on our side when we take on the Death Song. Did you have something to do with bringing him back? Good job, buddy.</Text><ID>926771</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup02</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Hiccup at the Training Grounds</Text><ID>926768</ID></Title><Desc><Text>Talk to Hiccup at the Training Grounds</Text><ID>926768</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203088 + true + 300 + 300 + + 0 + +
+ + 110 +

2

+ 0 + + 1 + 526 + 203088 + true + 110 + 110 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203088 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203088 + true + 50 + 50 + + 0 + +
+ false +
+ + 1828 + Deathsong_Misc01 + 12 +

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpDSMisc01T00b.unity3d/PfGrpDSMisc01T00b</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSMisc01T03.unity3d/PfGrpDSMisc01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Master Amber Scheme</Text><ID>926623</ID></Title><Desc><Text>Snotlout’s Amber Scheme</Text><ID>926624</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1813 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1828 + 2087 + 0 + + + 1 + 1828 + 2088 + 0 + + + 1 + 1828 + 2090 + 0 + + + 2 + 1828 + 1962 + 0 + + + 2 + 1828 + 1963 + 0 + + + 1 + 1828 + 2230 + 0 + + + 2 + 1828 + 1964 + 0 + + + 2 + 1828 + 1965 + 0 + + + + 1 + 203124 + 0 + + 1962 + Deathsong_Misc01T04 + 12 +

1828

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the Amber to Snotlout</Text><ID>926617</ID></Title><Desc><Text>Give the Amber to Snotlout</Text><ID>926617</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1962 + 2223 + 0 + + + + 1 + 203279 + 0 + + 2223 + Misc01T04.1 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Snotlout is waiting at the Training Grounds for the Death Song Amber pieces.</Text><ID>927135</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This is it! Oh, these pieces are worth their weight in gold. I can turn this into something very useful for us all.</Text><ID>927136</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>11946</Value></Pair><Pair><Key>ItemDescription</Key><Value>Amber Piece</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Death Song Amber to Snotlout</Text><ID>927133</ID></Title><Desc><Text>Give the Death Song Amber to Snotlout</Text><ID>927133</ID></Desc></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 203279 + true + 200 + 200 + + 0 + +
+ false + + + 1963 + Deathsong_Misc01T05 + 12 +

1828

+ <Data><Offer><Type>Popup</Type><ID>926619</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The possibilities are endless! I’m going to work on these amber inventions right away. I need you to talk to everyone so that they can get the first dibs on the goods. @@ Can you make sure to get the word out so that people know that my special new items are in stock? Thanks, business partner.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutGenPraise02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gather the people</Text><ID>926618</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1963 + 2224 + 0 + + + 1 + 1963 + 2225 + 0 + + + 1 + 1963 + 2226 + 0 + + + 1 + 1963 + 2227 + 0 + + + 1 + 1963 + 2228 + 0 + + + 1 + 1963 + 2229 + 0 + + + + 1 + 202800 + 0 + + 2224 + Misc01T5.1 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Snotlout thinks he can make something useful out of the Death Song amber? It'll be worth a laugh, at least. I'm in!</Text><ID>927139</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about Snotlout's scheme</Text><ID>927137</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 2225 + Misc01T06 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, not again. Snotlout is up to no good… again! How did Snotlout rope you into one of his crazy schemes, {{Name}}? @@ Well, I'll be there. I need to make sure whatever he's doing is harmless to Berk. C'mon, Toothless. +</Text><ID>927142</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about Snotlout's scheme</Text><ID>927140</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 2226 + Misc01T07 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That muttonhead! This is a serious situation and he's just making it worse with his dumb money making plans. Ohh, it's just like Snotlout to only think about himself!</Text><ID>927145</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAngrySnotlout</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about Snotlout's scheme</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 2227 + Misc01T08 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>How interesting! Did Snotlout say what he was making with the Death Song amber? I'm curious to find out! There might be some really interesting science behind his inventions…</Text><ID>927148</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle05</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about Snotlout's scheme</Text><ID>927146</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 2228 + Misc01T09 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Did he make anything that I can use to hit my brother in his head? Oh, Tuffnut's done nothing wrong. I just like hitting him in the head.</Text><ID>927151</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut about Snotlout's scheme</Text><ID>927149</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 2229 + Misc01T10 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Well, I'll go… but this better be a catered event. If I'm going to be sold something, I expect to be wooed! Snotlout needs to make me feel appreciated if he wants me to spend my precious money.</Text><ID>927154</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutSilly06</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut about Snotlout's scheme</Text><ID>927152</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 11661 + + 1 + 2466 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11662 + + 1 + 2467 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11663 + + 1 + 2468 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11665 + + 1 + 2464 + 202800 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11667 + + 1 + 2465 + 202800 + true + 1 + 1 + + 0 + +
+ false +
+ + 1964 + Deathsong_Misc01T12 + 12 +

1828

+ <Data><Offer><Type>Popup</Type><ID>926621</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Step right up to the tables to take a closer look. I have everything that you might possibly need. These items glisten in the sun with the golden hue of the Death Song! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpDSMisc01T00.unity3d/PfGrpDSMisc01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Look at his inventions</Text><ID>926620</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 1964 + 2231 + 0 + + + 1 + 1964 + 2232 + 0 + + + 1 + 1964 + 2233 + 0 + + + + 1 + 0 + 0 + + 2231 + Misc01T12.1 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>These mugs have great grip and perfect storage capacity! The cup is translucent, so you can see your liquid while you enjoy it. The amber gets… sticky, with hot drinks. I would stick to cold brews with this cup.</Text><ID>927157</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAllRight</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Misc01T12.1</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the amber pieces</Text><ID>927155</ID></Title><Desc><Text>Look at the amber pieces</Text><ID>927155</ID></Desc></Data> + 0 + false + + + 2232 + Misc01T12.2 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Can't get a good night's sleep because your dragon likes to snore? I'm looking at you here, Fishlegs. Use these Death Song amber ear plugs to shut out the world! You won't be hearing anything while the amber is covering your ears.</Text><ID>927160</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutYeah</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Misc01T12.2</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the ear plugs</Text><ID>927158</ID></Title><Desc><Text>Look at the ear plugs</Text><ID>927158</ID></Desc></Data> + 0 + false + + + 2233 + Misc01T12.3 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This backscratcher is for that one spot on your back that you can never quite reach. If you get an itch there, it can be a terrible night! Use this Death Song amber backscratcher to satisfy that itch in style. Don't put too much pressure on it, though. If you aren't careful, you can tear right through your skin…</Text><ID>927163</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutGreat</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Misc01T12.3</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the backscratcher</Text><ID>927161</ID></Title><Desc><Text>Look at the backscratcher on the table +</Text><ID>941728</ID></Desc></Data> + 0 + false + + false +
+ + 1965 + Deathsong_Misc01T13 + 12 +

1828

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1965 + 2282 + 0 + + + + 1 + 203280 + 0 + + 2282 + Misc01T13.1 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpDSMisc01T13.unity3d/PfGrpDSMisc01T13</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh ho! I've saved the best for last. Come upstairs to meet me and you'll find your prize for helping me out.</Text><ID>927166</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I've made a little statue that you can put in your farm, made out of the highest grade amber! I call it "Snotlout in Repose." You can have one for free, since you helped me out so much during this business venture. Don't ever say I never did you a favor!</Text><ID>927167</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWLawnGnomeAmber</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up Snotlout's... present</Text><ID>927164</ID></Title><Desc><Text>Pick up Snotlout's... present</Text><ID>941729</ID></Desc></Data> + 0 + false + + false +
+ + 2087 + Misc01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You know what, {{Name}}? Where some Vikings see "dangerous dragon I need to run away from," Snotlout sees "opportunity." These golden Death Song amber chunks are perfect materials for everyday goods! I mean, we use resources found from the earth and animals in our everyday lives. @@ We can turn natural resources into useful resources! There is so much potential around us. If you help me out, I'll make sure you get a cut of the profits. We need the quality resources from Death Song Island itself. I'll keep an eye out for the dragon and give you warning if it's headed back to its home. Go to the island and bring back some amber!</Text><ID>927170</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Death Song Island</Text><ID>927168</ID></Title><Desc><Text>Go to Death Song Island</Text><ID>927168</ID></Desc></Data> + 0 + false + + + 2088 + Misc01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Death Song amber is scattered all around the island! You should look for a place with a lot of high quality Death Song amber.</Text><ID>927173</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That looks similar to the Death Song nest at Sven’s farm. You must be careful…</Text><ID>927174</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NestEntrance</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for high grade Death Song Amber</Text><ID>927171</ID></Title><Desc><Text>Look for high grade Death Song Amber at the island</Text><ID>941730</ID></Desc></Data> + 0 + false + + + 2090 + Misc01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{Input}} on the chunks of Death Song amber across the island, use your axe to chop it into pieces and gather them for Snotlout. He would be happy with 6 pieces of Death Song amber.</Text><ID>927177</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There are no signs of life on the island, and the silence feels oppressive. Death Song Island is an eerie place.</Text><ID>927178</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_AmberChopArea</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectAmberChunk</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop 6 pieces of amber from the amber chunks</Text><ID>927175</ID></Title><Desc><Text>Collect 6 pieces of amber</Text><ID>941731</ID></Desc></Data> + 0 + false + + + 2230 + Misc01T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Good! You've gathered some exclusive clientele. I'm ready for you all now in the Great Hall.</Text><ID>927181</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Ta-da! Good Vikings of Berk, I have gathered here the greatest in Deathsong amber technology. You're going to be shocked. You're going to be amazed. You're going to want to purchase two of everything! It's just 10 coins per invention. What a deal!</Text><ID>927182</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutGenPraise01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Snotlout at the Great Hall</Text><ID>927179</ID></Title><Desc><Text>Meet Snotlout at the Great Hall</Text><ID>927179</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 203124 + true + 250 + 250 + + 0 + +
+ + 300 +

2

+ 0 + + 1 + 520 + 203124 + true + 300 + 300 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 203124 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203124 + true + 50 + 50 + + 0 + +
+ false +
+ + 1961 + Deathsong_MaskedCrusader04 + 40 +

+ <Data><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSCrusader04T00.unity3d/PfGrpDSCrusader04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSCrusader04T03.unity3d/PfGrpDSCrusader04T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>PfDWHeatherTeen</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Where's Heather?</Text><ID>926615</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1822 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1961 + 2236 + 0 + + + 1 + 1961 + 2237 + 0 + + + 1 + 1961 + 2238 + 0 + + + 2 + 1961 + 1966 + 0 + + + 1 + 1961 + 2240 + 0 + + + 1 + 1961 + 2241 + 0 + + + + 1 + 203308 + 0 + + 1966 + Deathsong_Crusader04T04 + 40 +

1961

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Shoot Thornado</Text><ID>926614</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1966 + 2239 + 0 + + + + 1 + 0 + 0 + + 2239 + Crusader04T4.1 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Help! My bombs seem to get its attention and I need to keep it from eating Windshear. Have Thornado sonic blast it!</Text><ID>927115</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer08</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDeathsongNPC</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathsongNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Death Song with Thornado's sonic blast</Text><ID>927113</ID></Title><Desc><Text>Shoot the Death Song with Thornado's sonic blast</Text><ID>941725</ID></Desc></Data> + 0 + false + + false + + + 2236 + Crusader04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidC</NPC><Text>Hey! Speedifist, the fastest knot tier on Berk. That's me! Oh, are you looking for Heather? I think she went toward Berk.</Text><ID>927118</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DOQuestDeathsongExpansion.unity3d/SndDragLabDragonExcited</Asset><NPC>PfPlayer</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That dragon roar came from across the bridge. It sounds like a dragon in distress.</Text><ID>927119</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Heather at Berk</Text><ID>927116</ID></Title><Desc><Text>Look for Heather at Berk</Text><ID>927116</ID></Desc></Data> + 0 + false + + + 2237 + Crusader04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Go to Sven's farm to investigate.</Text><ID>927122</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the sound at Sven's Farm</Text><ID>927120</ID></Title><Desc><Text>Go to Sven's Farm</Text><ID>941726</ID></Desc></Data> + 0 + false + + + 2238 + Crusader04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like Thornado sensed the dragon distress as well… or perhaps the Death Song. Certain animal behaviors contribute to their survival. Many of these behaviors are known from birth, and these instincts helped the dragon get to where he needs to be. @@ {{Input}} on Thornado.</Text><ID>927125</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWThunderdrumThornado</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWThunderdrum</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Thornado and mount him</Text><ID>926830</ID></Title><Desc><Text>Mount Thornado</Text><ID>941727</ID></Desc></Data> + 0 + false + + + 2240 + Crusader04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Yes it is working. Keep at it! Shoot the Death Song again!</Text><ID>927128</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer04</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDeathsongNPC</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathsongNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Death Song with Thornado's sonic blast</Text><ID>927126</ID></Title><Desc><Text>Shoot the Death Song with Thornado's sonic blast</Text><ID>941725</ID></Desc></Data> + 0 + false + + + 2241 + Crusader04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I need to dissolve the amber, but I'm all out of my solution. Can you free Windshear for me? We need to hurry and get out of here before the Death Song returns!</Text><ID>927131</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer05</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>We need to regroup and come up with a plan to get rid of this menace once and for all! Maybe we can figure out a scientific solution at the Lab...</Text><ID>927132</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestEnd06</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRazorwhip</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>AmberMeltChunkScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free Windshear</Text><ID>927129</ID></Title><Desc><Text>Free Windshear</Text><ID>927129</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203308 + true + 100 + 100 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 203308 + true + 150 + 150 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203308 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203308 + true + 50 + 50 + + 0 + +
+ false +
+ + 1967 + Deathsong_Deathsong06 + 41 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>What's This?</Text><ID>926568</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1961 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1967 + 2242 + 0 + + + 1 + 1967 + 2243 + 0 + + + 1 + 1967 + 2244 + 0 + + + 1 + 1967 + 2245 + 0 + + + 1 + 1967 + 2246 + 0 + + + 1 + 1967 + 2247 + 0 + + + 1 + 1967 + 2248 + 0 + + + 1 + 1967 + 2292 + 0 + + + 1 + 1967 + 2250 + 0 + + + 2 + 1967 + 1968 + 0 + + + 1 + 1967 + 2295 + 0 + + + 1 + 1967 + 2296 + 0 + + + + 1 + 203263 + 0 + + 1968 + Deathsong06T10 + 41 +

1967

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Collect Amber Earplugs from Snotlout</Text><ID>926567</ID></Title><Desc><Text>Collect Amber Earplugs from Snotlout</Text><ID>926567</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1968 + 2294 + 0 + + + + 1 + 203298 + 0 + + 2294 + Deathsong06T10.1 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey Astrid! I was only kidding. No need to get angry. +Talk to me, {{Name}}.</Text><ID>926774</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Well... Snotlout the Artiste must now get back to work on his next masterpiece!</Text><ID>926775</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12147 + + 1 + 2276 + 203298 + true + 1 + 1 + + 0 + +
+ false + + + 2242 + Deathsong06T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong06T01.unity3d/PfGrpDSDeathsong06T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfBombFragmentsNPC</NPC><Text>This is identical to a piece of the bottles the Rogue Dragon Rider was throwing against the Death Song. If it is next to the Lab, then Heather must know where it came from. @@ You should pick up some of the glass shards.</Text><ID>926778</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRogueBombFragments</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up a glass piece</Text><ID>926776</ID></Title><Desc><Text>Pick up a glass piece</Text><ID>926776</ID></Desc></Data> + 0 + false + + + 2243 + Deathsong06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Give the glass shard to Heather and talk to her about the identity of the Rogue Dragon Rider.</Text><ID>926781</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well… you're right, {{Name}}. I am the rogue dragon rider and Windshear is my Razorwhip. You see, I've been on a crusade against Dagur's allies. He needs to pay for harming my village and my parents. @@ When I put on the mask, I can act without fear that Dagur would hurt my friends or the School of Dragons as retaliation. I feel like I can make a difference. @@ I hope you understand, {{Name}}. I did it to protect us.</Text><ID>926782</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>12145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Broken Glass Fragments</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the glass piece to Heather</Text><ID>926779</ID></Title><Desc><Text>Give the glass piece to Heather</Text><ID>926779</ID></Desc></Data> + 0 + false + + + 2244 + Deathsong06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I was rash in my attack of the Death Song. Let's use the scientific method to come up with a plan! @@ As I see it, we need to solve 2 problems. First, how do we keep the Death Song from mesmerizing my dragon? And second, how do we keep the dragon from settling in Berk? @@ Let's start with our research. Can you go talk to the Headmaster and see if he has any advice on how to solve our problems?</Text><ID>926785</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I've been thinking of ways around the problem, ever since the dragon began to menace my school and my people. Why is the dragon coming here now? What has changed? @@ I have a theory. The Archaeologist said there were no dragons on Death Song Island. It is searching for alternate food sources and settling in Berk where there is plenty of prey. If we find it another food source, it should leave our dragons alone!</Text><ID>926786</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestEnd03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text><ID>922008</ID></Title><Desc><Text>Talk to the Headmaster</Text><ID>922008</ID></Desc></Data> + 0 + false + + + 2245 + Deathsong06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That’s a great idea! Didn't the Death Song steal eels from Johann? Most dragons hate eels, but maybe this one likes to eat them! @@ Wait! There were giant eels in the Ship Graveyard that nearly ate the Razorwhip eggs. Maybe the Death Song would love to eat them! They're certainly large enough for a filling meal. @@ That's one answer, two more to go. How should we keep the Death Song away from Berk? Maybe the Botanist has an idea?</Text><ID>926789</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The Death Song built a nest on Berk. It must be creating a home on Berk. If you get rid of the nest, the Death Song should go elsewhere. </Text><ID>926790</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist</Text><ID>923207</ID></Desc></Data> + 0 + false + + + 2246 + Deathsong06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Alright, if we can get the Death Song away from the nest in Sven's farm we can sneak in and destroy it. Then it can build a new nest elsewhere or maybe stay on Death Song Island. @@ That's two! We just need to make our dragons immune to the Death Song's siren call. Can you talk to Fishlegs? Maybe he's read up on the problem.</Text><ID>926793</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Death Song's call is like a beautiful song to the dragons. If a dragon hears the melody, they're completely mesmerized. The only way to be safe is to block out the sound! </Text><ID>926794</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHuh</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs at the Lookout</Text><ID>921116</ID></Desc></Data> + 0 + false + + + 2247 + Deathsong06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Snotlout mentioned he was making earplugs with his stash of amber. It might do the trick. You should talk to Snotlout about his inventions. </Text><ID>926797</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Ah ha! I knew everyone would come crawling back to acknowledge my brilliance. I can't just give you these ear plugs. Do you think amber just grows on trees? @@ And think about how much work the great artiste Snotlout put into these ear plugs! Every one of these is a pièce de résistance. I think that means you can't resist it.</Text><ID>926798</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout at the Training Grounds</Text><ID>904286</ID></Desc></Data> + 0 + false + + + 2248 + Deathsong06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I am going to need a lot in return. If you help me set up for my next pieces, I'll give you the ear plugs. +I need 6 logs of wood. Chop chop!</Text><ID>926801</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That's a good start.</Text><ID>926802</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutGenPraise01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop 6 wood logs from the Wilderness</Text><ID>926799</ID></Title><Desc><Text>Go to the Wilderness and chop 6 wood logs from these trees</Text><ID>941700</ID></Desc></Data> + 0 + false + + + 2250 + Deathsong06T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm preparing a set of ear plugs for you, {{Name}}. They're hand-made, limited edition, and signed by the artiste Snotlout! +But… before I can hand it over, I want Hiccup's foot. Not the one he has on right now, but Gobber should have the old prosthetic. I want it on my mantle!</Text><ID>926805</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>What are you doing, Snotlout? Knock it off! Give {{Name}} the ear plugs or I am going to thump the Artiste right out of you!</Text><ID>926806</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAngrySnotlout</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get Hiccup's old foot to Snotlout</Text><ID>926803</ID></Title><Desc><Text>Get Hiccup's old foot to Snotlout</Text><ID>926803</ID></Desc></Data> + 0 + false + + + 2292 + Deathsong06T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>These amber ear plugs took a lot of blood, sweat and tears. I need more. Bring me 4 pieces of dragon nip and 6 wood logs. Hookfang needs compensation for the fire he used to warm the amber.</Text><ID>926809</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This will make Hookfang very happy.</Text><ID>926810</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos05</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 4 pieces of Dragon Nip to Snotlout</Text><ID>926807</ID></Title><Desc><Text>Gather Dragon Nip in your farm and give them to Snotlout</Text><ID>941701</ID></Desc></Data> + 0 + false + + + 2295 + Deathsong06T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionAction</Asset><NPC>PfDWAlchemist</NPC><Text>You should give Heather the ear plugs.</Text><ID>926813</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Amber ear plugs? What a great idea! The Death Song amber seems to harden very quickly into a strong substance. Maybe it will work really well to block out the Death Song's call. It's a little bit ironic, don't you think? @@ We've made a hypothesis to each of our problems. We'll test them during the procedure phase. It will be dangerous testing it out… but when have Vikings ever shied away from danger? We just need to find the right time.</Text><ID>926814</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>12147</Value></Pair><Pair><Key>ItemDescription</Key><Value>Amber Ear Muffs</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Heather</Text><ID>926811</ID></Title><Desc><Text>Return to Heather</Text><ID>926811</ID></Desc></Data> + 0 + false + + + 2296 + Deathsong06T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh, about the… other matter. Please keep the identity of the rogue dragon rider a secret. I don’t want the secret to leak to Dagur. The secret is more secure if fewer people know the truth. @@ I won’t stop you from talking to Valka, but please think about what I said!</Text><ID>926817</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You found out who the rogue dragon rider is but you promised to keep it a secret? Well… I'll trust your judgement for now, {{Name}}, but tell the rogue dragon rider to come talk to me.</Text><ID>926818</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 203263 + true + 200 + 200 + + 0 + +
+ + 110 +

2

+ 0 + + 1 + 526 + 203263 + true + 110 + 110 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203263 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203263 + true + 350 + 350 + + 0 + +
+ false +
+ + 1969 + Deathsong_Deathsong07 + 6 +

+ <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong07T00.unity3d/PfGrpDSDeathsong07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong07T00b.unity3d/PfGrpDSDeathsong07T00b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong07T00c.unity3d/PfGrpDSDeathsong07T00c</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Death Song Menace</Text><ID>926569</ID></Title><Desc><Text>The Death Song Menace!</Text><ID>926570</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1967 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1969 + 2251 + 0 + + + 1 + 1969 + 2252 + 0 + + + 1 + 1969 + 2253 + 0 + + + 1 + 1969 + 2254 + 0 + + + 1 + 1969 + 2255 + 0 + + + 1 + 1969 + 2256 + 0 + + + 1 + 1969 + 2257 + 0 + + + 1 + 1969 + 2319 + 0 + + + 1 + 1969 + 2320 + 0 + + + 1 + 1969 + 2258 + 0 + + + 1 + 1969 + 2259 + 0 + + + 1 + 1969 + 2321 + 0 + + + 1 + 1969 + 2500 + 0 + + + + 1 + 203268 + 0 + + 2251 + Deathsong07T01 + <Data><Offer><Type>Popup</Type><ID>926821</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>{{Name}}! Thank Odin you're here. The Death Song is attacking the Training Grounds. Please go there and help, but be careful. You are one of our best students, {{Name}}, and we don't want you getting stuck in amber. Ride with the wind!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>926822</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>No! Hookfang! No!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutUpset02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDSDeathsong07T01.unity3d/PfGrpDSDeathsong07T01</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>We need help in the Training Grounds!</Text><ID>926820</ID></Title><Desc><Text>We need help in the Training Grounds!</Text><ID>926820</ID></Desc></Data> + 0 + false + + + 2252 + Deathsong07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Death Song has taken Hookfang! You should make sure Snotlout is okay. Check up on him by Fireball Frenzy.</Text><ID>926825</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>For Thor's sake, forget about me. That ravenous beast took Hookfang! Please! If you don't go to Melody Island now, my precious Fangster will be eaten whole. I need you and I need your help. @@ I'll be fine… even if my toe is starting to cramp.</Text><ID>926826</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout and see if he needs help</Text><ID>926823</ID></Title><Desc><Text>Talk to Snotlout and see if he needs help</Text><ID>926823</ID></Desc></Data> + 0 + false + + + 2253 + Deathsong07T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I wish we could prepare more, but we're out of time. Go to Melody Island! I'll grab Thornado and meet you there. + +</Text><ID>926829</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer07</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Melody Island</Text><ID>926877</ID></Title><Desc><Text>Go to Melody Island</Text><ID>926827</ID></Desc></Data> + 0 + false + + + 2254 + Deathsong07T04 + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>PfDWThunderdrumThornado</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Here we are in the belly of the beast… figuratively, at least. Let's make sure the Death Song doesn't make that a reality. @@ Thank Thor, Thornado is here to help. {{Input}} on him to mount him. +</Text><ID>926832</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueAttract01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWThunderdrumThornado</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWThunderdrum</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Thornado and mount him</Text><ID>926830</ID></Title><Desc><Text>{{Input}} on Thornado and mount him</Text><ID>927123</ID></Desc></Data> + 0 + false + + + 2255 + Deathsong07T05 + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>PfDWWindshearNPC</Asset><Location>PfMarker_RogueRiderStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Let's go to the Death Song's nest. You've been here with the Archaeologist, right? You should take point while I cover our back. {{Input}} on me and lead me to the nest.</Text><ID>926835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer04</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>That looks terrifying... +There's Hookfang! It looks like we got here in time.</Text><ID>926836</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestEnd02</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NestEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWindshearNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead Heather to the Death Song nest</Text><ID>926833</ID></Title><Desc><Text>Lead Heather to the Death Song nest</Text><ID>926833</ID></Desc></Data> + 0 + false + + + 2256 + Deathsong07T06 + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>PfDWThunderdrumThornado</Asset><Location>PfMarker_NestEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Windshear's immune to the hypnotic song! Remind me to thank Snotlout for his useful invention. We need to act quickly to save Hookfang. I'll fly up and distract him. You go in and free Hookfang! Let's go!</Text><ID>926839</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestDeathsongExpansion.unity3d/SndDragDeathsongCall</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>You did it!</Text><ID>926840</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRoguePos02</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfAmberMeltChunk</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>AmberMeltChunkScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free Hookfang</Text><ID>926837</ID></Title><Desc><Text>Free Hookfang from the amber prison</Text><ID>941702</ID></Desc></Data> + 0 + false + + + 2257 + Deathsong07T07a + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Oof, I need your help right away. We want to keep its attention on us and not on Hookfang. Fly up and tell Thornado to hit the Death Song!</Text><ID>926843</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer08</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDeathsongChase</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathsongChase</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Death Song with Thornado's sound blasts</Text><ID>926850</ID></Title><Desc><Text>Shoot the Death Song with Thornado's sound blasts</Text><ID>926850</ID></Desc></Data> + 0 + false + + + 2258 + Deathsong07T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Let's get it over to the Ship Graveyard. I'll keep its attention but make sure it doesn't turn back! Thornado will be able to keep it in line, so make sure to keep hitting it with sonic blasts!</Text><ID>926846</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueAttract03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly out to the Ship Graveyard</Text><ID>926844</ID></Title><Desc><Text>Fly out to the Ship Graveyard</Text><ID>926844</ID></Desc></Data> + 0 + false + + + 2259 + Deathsong07T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I think our plan worked, {{Name}}. The Death Song took to the eel right away and struck it with its amber blast. With all these eels in this place, it won't be bothering Berk for food. @@ Most animals that [c][3eebff]migrate[/c][ffffff], or move, from one habitat to another do so because of a few reasons. Some migrate to [c][3eebff]look for better nesting areas.[/c][ffffff] Some migrate [c][3eebff]to avoid the harsh climates[/c][ffffff] that come with different seasons. [c][3eebff]The primary reason why animals migrate is to look for food sources.[/c][ffffff] @@ As long as the animal has a good food source, it won't migrate to any new habitats! @@ Meet me at the School when you're ready, but first we need to go back to the Training Grounds and tell everyone the great news. I guess we can free Snotlout, too… </Text><ID>926849</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestEnd01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to the Training Grounds</Text><ID>926847</ID></Title><Desc><Text>Go back to the Training Grounds</Text><ID>926847</ID></Desc></Data> + 0 + false + + + 2319 + Deathsong07T07b + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Great! I think it's working. Try shooting the Death Song again.</Text><ID>926852</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueQuestOffer08</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDeathsongChase</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathsongChase</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Death Song with Thornado's sound blasts</Text><ID>926850</ID></Title><Desc><Text>Shoot the Death Song with Thornado's sound blasts</Text><ID>926850</ID></Desc></Data> + 0 + false + + + 2320 + Deathsong07T07c + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Keep it up!</Text><ID>11467</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRogueEncourage01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Okay, I'm pretty sure we have its attention now...</Text><ID>926856</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWCrusaderDO.unity3d/DlgHeatherRoguePos01</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDeathsongChase</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathsongChase</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Death Song with Thornado's sound blasts</Text><ID>926850</ID></Title><Desc><Text>Shoot the Death Song with Thornado's sound blasts</Text><ID>926850</ID></Desc></Data> + 0 + false + + + 2321 + Deathsong07T10 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong07T10.unity3d/PfGrpDSDeathsong07T10</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hookfang! I'm so happy you're still alive! I knew that you'd be just fine, you big dumb dragon. How could you let yourself get captured like that and worry me sick? @@ {{Name}}, help me out here. I've fallen and I can't get up. Please get me out of this amber.</Text><ID>926859</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Thank you, thank you…I take back almost everything I said about you. The Snotlout is back!</Text><ID>926860</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>ItemName</Key><Value>AmberMeltChunkScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free Snotlout from the amber</Text><ID>926857</ID></Title><Desc><Text>{{Input}} on the amber and dissolve it to free Snotlout from the amber</Text><ID>941703</ID></Desc></Data> + 0 + false + + + 2500 + Deathsong07T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Now that you know Snotlout is okay, you should talk to Heather at the Lab.</Text><ID>927705</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>What a rush! We did an amazing job at Melody Island, {{Name}}, and found the Death Song a good food supply. Great work!</Text><ID>927706</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather at the School</Text><ID>920988</ID></Title><Desc><Text>Meet Heather at the School</Text><ID>927703</ID></Desc></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 203268 + true + 150 + 150 + + 0 + + + + 500 +

1

+ 0 + + 1 + 518 + 203268 + true + 500 + 500 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203268 + true + 200 + 200 + + 0 + +
+ + 500 +

8

+ 0 + + 1 + 2247 + 203268 + true + 500 + 500 + + 0 + +
+ false +
+ + 1970 + Deathsong_Deathsong08 + 15 +

+ <Data><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong08T00.unity3d/PfGrpDSDeathsong08T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong08T00b.unity3d/PfGrpDSDeathsong08T00b</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpDSDeathsong08T06.unity3d/PfGrpDSDeathsong08T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_AmberBlocker</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_AmberBlockerToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Loose Ends</Text><ID>926572</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1969 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1970 + 2283 + 0 + + + 1 + 1970 + 2285 + 0 + + + 1 + 1970 + 2286 + 0 + + + 1 + 1970 + 2287 + 0 + + + 1 + 1970 + 2288 + 0 + + + 2 + 1970 + 1986 + 0 + + + 1 + 1970 + 2290 + 0 + + + + 1 + 203285 + 0 + + 1986 + Deathsong08T07 + 15 +

1970

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the Death Song</Text><ID>926571</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1986 + 2289 + 0 + + + + 1 + 203307 + 0 + + 2289 + Deathsong08T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>If the Death Song won't take care of its baby, it will need protection and guidance from a dragon trainer, like yourself. It already seems fond of you! {{Input}} on him so that you can train him.</Text><ID>926863</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You have formed a bond with the baby Death Song!</Text><ID>926864</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDeathsongBabyNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the baby Death Song</Text><ID>926861</ID></Title><Desc><Text>{{Input}} on the baby Death Song</Text><ID>926873</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12177 + + 1 + 2299 + 203307 + true + 1 + 1 + + 0 + +
+ false + + + 2283 + Deathsong08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now that we’ve solved that, we have just one more point of contention. We need to destroy the Death Song’s nest in Berk! We'll need to help out at Sven’s farm. Hiccup will help lead us through it.</Text><ID>926867</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Boy, am I glad that we don’t have to fight the Death Song anymore. That may have been the second most dangerous dragon we’ve ever faced! And this time, I didn’t have to lose any limbs…</Text><ID>926868</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupHello01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Sven’s Farm</Text><ID>926865</ID></Title><Desc><Text>Go to Sven’s Farm</Text><ID>926865</ID></Desc></Data> + 0 + false + + + 2285 + Deathsong08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that we found the Death Song a bigger food source at the Ship Graveyard, we should help poor Sven get his farm back. @@ The Death Song nest has a really intriguing shape, don't you think? From my observations, it looks similar in form to ant and termite nests. I wonder what’s inside of the nest. Lots of bones of its prey, I bet! Let's take a look.</Text><ID>926871</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Is that a baby Death Song? </Text><ID>926872</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_InsideNest</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look inside the nest</Text><ID>926869</ID></Title><Desc><Text>Look inside the nest</Text><ID>926869</ID></Desc></Data> + 0 + false + + + 2286 + Deathsong08T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, I bet the baby Death Song isn't nearly as dangerous as the full grown type, but let's be cautious. Walk up slowly to the dragon and show it you don’t mean harm. {{Input}} on the baby Death Song.</Text><ID>926875</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Aww, he took right to you! Maybe he was lonely up here.</Text><ID>926876</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDeathsongBabyNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the baby Death Song</Text><ID>926873</ID></Title><Desc><Text>{{Input}} on the baby Death Song</Text><ID>926873</ID></Desc></Data> + 0 + false + + + 2287 + Deathsong08T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>When we drove the Death Song away from Berk, we must have driven it away from its baby! Oh no. We need to fix that. Let's take the baby Death Song to its home in Melody Island.</Text><ID>926879</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Melody Island</Text><ID>926877</ID></Title><Desc><Text>Go to Melody Island</Text><ID>926827</ID></Desc></Data> + 0 + false + + + 2288 + Deathsong08T06 + <Data><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>PfDWDeathsongBabyNPC</Asset><Location>PfMarker_RogueRiderStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{Input}} on the baby Death Song and lead him to the Death Song nest. </Text><ID>926882</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Death Song is not attacking. Perhaps it is still full from eating that giant eel. +It doesn't look like it wants its baby back. Maybe it left the baby on purpose? Some animal species don't nurture their babies.</Text><ID>926883</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDeathsongIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FrontofNest</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDeathsongBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the baby Death Song to the Death Song nest</Text><ID>926880</ID></Title><Desc><Text>Lead the baby Death Song to the Death Song nest</Text><ID>926880</ID></Desc><Reminder><Text>Don't leave the baby Death Song behind!</Text><ID>936254</ID></Reminder><Failure><Text>Oh no! You left the baby Death Song!</Text><ID>936255</ID></Failure></Data> + 0 + false + + + 2290 + Deathsong08T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should leave this island and go back to Berk before you wear out your welcome with this dangerous dragon.</Text><ID>926886</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ah, just the Viking I wanted to see. Come talk to me when you have a moment. </Text><ID>926887</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Berk</Text><ID>926554</ID></Title><Desc><Text>Go back to Berk</Text><ID>926884</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 203285 + true + 250 + 250 + + 0 + +
+ + 300 +

2

+ 0 + + 1 + 520 + 203285 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203285 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203285 + true + 50 + 50 + + 0 + +
+ false +
+ + 1971 + Deathsong_Epilogue + 45 +

+ <Data><Setup><Scene>BerkFarmDO</Scene><Asset>RS_DATA/PfGrpDSEpilogue01T04.unity3d/PfGrpDSEpilogue01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Aftermath</Text><ID>926592</ID></Title><Desc><Text>Aftermath of Deathsong Island.</Text><ID>926593</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1970 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1971 + 2260 + 0 + + + 1 + 1971 + 2261 + 0 + + + 1 + 1971 + 2264 + 0 + + + 1 + 1971 + 2269 + 0 + + + 1 + 1971 + 2272 + 0 + + + + 1 + 203295 + 0 + + 2260 + Epilogue01T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Thank the heavens it's over. I'm very impressed that you were able to achieve this without harming dragon or Viking! The spirit of dragons truly runs through you, wild one, and you should continue to embrace it. @@ The Archaeologist wanted to speak with you before he headed out again. You'll find him by the docks.</Text><ID>926967</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Another adventure in Berk! You make life interesting, {{Name}}. Thank you for saving my life on Death Song Island. I won't be going back to that cursed place by myself anytime soon. Without your help, I would have been dragon food! @@ As I travel the world and study people from long ago, I can get myself into spots of trouble. I'll call on you if I ever get into a jam, my friend.</Text><ID>926968</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Speak to the Archaeologist by the docks in Berk</Text><ID>941708</ID></Desc></Data> + 0 + false + + + 2261 + Epilogue01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You should be proud of what you've accomplished here. Talk to Hiccup, and I'm sure he'd say the same thing!</Text><ID>926971</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We're venturing into unknown territory here with the baby Death Song! Well, [c][3eebff]you[/c][ffffff] are. Don't worry, I'm here to help. Talk to me if you ever run into problems with your baby Death Song. The Death Song can grow up to be a dangerous predator, but maybe your influence can make it coexist with other dragons.</Text><ID>926972</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 2264 + Epilogue01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You know, you and Astrid worked really well together. I was very impressed. She told me to send you in her direction when we were through. Go talk to her!</Text><ID>926975</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There's my partner! We protected Berk from the biggest danger it's seen in years. Wasn't that exhilarating? Whoo! Some day, you and I should join the Berk Guard together.</Text><ID>926976</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 2269 + Epilogue01T04 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWAlchemist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh, Heather told me that she was looking for you. I think I saw her at Sven's farm. You should go talk to her.</Text><ID>926979</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>We did something incredible together. Thank you for trusting in me, even when I was hiding my identity. You knew my secret and you respected my decisions, whether you agreed with me or not. We've been through the forge of battle together now, and I know I have a true friend in you.</Text><ID>926980</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherGenThanks</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkFarmDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather at Sven's Farm</Text><ID>941709</ID></Desc></Data> + 0 + false + + + 2272 + Epilogue01T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpDSEpilogue01T05.unity3d/PfGrpDSEpilogue01T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_PathtoSvensFarm</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>I need my identity secret for a little bit longer... I think Valka knows I have the best intentions for the village now, but you should talk to her. I think I saw her at the entrance to Sven's Farm in Berk.</Text><ID>926983</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWHeatherTeen</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Thornado. Hiccup has told me everything about you, Stoick's old friend. You came back and helped when Berk needed you. I can feel the bond you had with my husband... and I thank you. @@ {{Name}}. I didn't notice you there. You deserve the highest of praise for how you helped with the Death Song. As we discover more about our world we often come across strange new threats. It is the risk we must take. @@ We need more dragon trainers like you if we want to learn about these mighty creatures. I'll rely on you in the future, young dragon trainer.</Text><ID>926984</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Meet Valka and Thornado at the entrance to Sven's Farm in Berk</Text><ID>941710</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 203295 + true + 200 + 200 + + 0 + + + + 90 +

2

+ 0 + + 1 + 525 + 203295 + true + 90 + 90 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203295 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203295 + true + 50 + 50 + + 0 + +
+ false +
+ + 1972 + Deathsong_Misc02 + 4 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpDSMisc02T03.unity3d/PfGrpDSMisc02T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Invasive Species?</Text><ID>926625</ID></Title><Desc><Text>Invasive Species</Text><ID>926626</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1813 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1972 + 2262 + 0 + + + 1 + 1972 + 2263 + 0 + + + 1 + 1972 + 2265 + 0 + + + 1 + 1972 + 2266 + 0 + + + + 1 + 203270 + 0 + + 2262 + Misc02T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I've been thinking, {{Name}}. Maybe we're looking at this the wrong way. I think we can find a way to coexist peacefully with the Death Song. After all, it created a giant nest in Berk naturally. Can we figure out a way to convince the dragon to stay here without eating all of our dragons? @@ Can you talk to the Botanist? She might have some good ideas.</Text><ID>927185</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The Death Song has invaded Berk? That could be very bad to the Berk ecosystem. @@ You see, there are invasive species in the plant and animal worlds. An invasive species is an organism that is not native to the ecosystem. Because it was not originally in the ecosystem, it causes damage to the environment, economy, or health of the native species.</Text><ID>927186</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Botanist at the Lookout</Text><ID>927183</ID></Title><Desc><Text>Meet the Botanist at the Lookout</Text><ID>927183</ID></Desc></Data> + 0 + false + + + 2263 + Misc02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I'll show you what I mean. I've been working on combating an invasive species in the Wilderness. Go to the Wilderness, {{Name}}.</Text><ID>927189</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the meadow in the Wilderness</Text><ID>927187</ID></Title><Desc><Text>Go to the meadow in the Wilderness</Text><ID>927187</ID></Desc></Data> + 0 + false + + + 2265 + Misc02T03 + <Data><Setup><Scene>HubWilderness01DO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These weeds pose a serious problem to this meadow. If the weeds are allowed to grow, they will soon begin to spread out across the entire meadow. It will take all the resources from the plants that belong here, and those original plants will all die. @@ Any animals that rely on the original plants to live will also die. This one tiny weed could eventually wreck the ecosystem of the Wilderness. @@ Can you tell {{dragon name}} to burn this weed? Be very careful not to burn the field!!</Text><ID>927192</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great! Because of your help, the weed won't take over the ecosystem of the Wilderness.</Text><ID>927193</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectDWWeed</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Clear the field of weeds using {{dragon name}}'s fireball</Text><ID>927191</ID></Title><Desc><Text>Clear the field of weeds using {{dragon name}}'s fireball</Text><ID>927191</ID></Desc></Data> + 0 + false + + + 2266 + Misc02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>So you see, Berk is like the meadow, and the Death Song is like the weed. We already knew that the Death Song is a very dangerous dragon, but its presence at Berk could imbalance the ecosystem. @@ It could take over and destroy our environment, our dragons, and our way of life! +I'm sorry for the bad news, but please tell Hiccup that there's little hope of the dragon ever peacefully coexisting with us on Berk.</Text><ID>927196</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I... suppose that makes sense. The Death Song has taken over part of Sven's farm and built a nest and there is amber everywhere. If the Death Song spreads more of its amber around, we could be in big trouble.</Text><ID>927197</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203270 + true + 300 + 300 + + 0 + + + + 300 +

2

+ 0 + + 1 + 520 + 203270 + true + 300 + 300 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 203270 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203270 + true + 50 + 50 + + 0 + +
+ false +
+ + 1973 + Deathsong_Misc03 + 15 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Legend of the Dragon Valkyrie</Text><ID>926627</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1781 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1973 + 2267 + 0 + + + 1 + 1973 + 2268 + 0 + + + 1 + 1973 + 2270 + 0 + + + 1 + 1973 + 2271 + 0 + + + + 1 + 203271 + 0 + + 2267 + Deathsong_Misc03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>If we want to fight the Death Song, we'll need to gather as much intel as we can about this dangerous dragon. Can you talk to the others and see what they know about our foe? Any information could be very valuable to us. @@ Fishlegs could have some important information about the dragon. Start with him!</Text><ID>927200</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Death Song? We don't have much intel on it. It wasn't in the Book of Dragons. I noticed that its wings are very colorful. It kind of looks like a butterfly crossed with a dragon! @@ Oh! Maybe it has the patterns and colorings on its wings for similar reasons. Some butterflies use their wings as camouflage to blend into their environment, or as a warning to predators that they are poisonous. @@ Butterflies also use their colorful markings to make them look bigger than they are. Some wings have 'eyespots' so that they look like the eyes of a larger creature.</Text><ID>927201</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about the Death Song</Text><ID>927198</ID></Title><Desc><Text>Talk to Fishlegs about the Death Song and its camouflage</Text><ID>941732</ID></Desc></Data> + 0 + false + + + 2268 + Deathsong_Misc03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Our ancestors might have run across the Death Song in some form. After all, there is the saga of the Dragon Valkyrie. It sounds a little bit like the Death Song. The dragon in the story has wings like a butterfly and attacks other dragons, just like our dangerous enemy. @@ It makes me tear up when I tell it. Ask Hiccup to tell it to you!</Text><ID>927204</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsElsewhere</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The saga of the Dragon Valkyrie? I haven't heard that in years. That's an interesting theory that it might be about the Death Song.</Text><ID>927205</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupHello01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text> Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text> Talk to Hiccup</Text><ID>941733</ID></Desc></Data> + 0 + false + + + 2270 + Deathsong_Misc03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Unfortunately, I don't remember much about the tale. It had to do with a valkyrie, a butterfly, and a dragon? I think so. It has been told by Vikings since the time of Odin. @@ Astrid said something about it recently. She might be more help than I am.</Text><ID>927208</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupElsewhere</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I never got to hear the whole legend, {{Name}}. Valka pulled me aside and told me how Hiccup and I reminded her of the warrior and valkyrie in the famed legend. Then Gobber showed up and that was the end of that.</Text><ID>927209</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at the Training Grounds</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid at the Training Grounds</Text><ID>924006</ID></Desc></Data> + 0 + false + + + 2271 + Deathsong_Misc03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It sounds like an interesting story but I don’t know enough to tell you. You should talk to Valka to hear the whole thing.</Text><ID>927212</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ahh, the saga of the Dragon Valkyrie. Now that’s a story! My parents told it to me when I met Stoick, but I hadn't thought of it in ages. Ahh yes, a beautiful story indeed. @@ A long time ago when we first settled on Berk, a warrior and a valkyrie fell madly in love. She loved butterflies and would spend long hours in the meadows watching them flutter by. @@ When she and the warrior got engaged, he vowed to find the most beautiful butterfly in the world as a symbol of his love. He traveled far and wide to find his elusive prize. He finally found it in the nest of an angry dragon horde. @@ Vikings and dragons were bitter enemies at the time, so his band of Vikings struck. They fought valiantly, but he fell to the dragons. @@ The valkyrie was heartbroken when the men returned with the butterfly... but without her warrior. She fled to the forest, never to return to the village. They say she could be heard crying in the forest, alone and vulnerable... but it was a ruse to draw dragons in. She would attack them to avenge her warrior's death. @@ After many years, the trickster god Loki turned her into a dragon with wings like a butterfly that would destroy dragons to avenge the death of her true love! @@ Perhaps there is truth in the saga and that the Dragon Valkyrie has finally returned to menace Berk. Whether that's true or not, we need to protect our dragons and our Vikings from the deadly reach of the Death Song.</Text><ID>927213</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka at Berk</Text><ID>928722</ID></Title><Desc><Text>Talk to Valka at Berk</Text><ID>928722</ID></Desc></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 203271 + true + 200 + 200 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 203271 + true + 200 + 200 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 203271 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203271 + true + 50 + 50 + + 0 + +
+ false +
+ + 1974 + Deathsong_Groncicle10 + 4 +

+ <Data><Setup><Scene>BerkCloudsDO</Scene><Asset>RS_DATA/PfGrpDSGroncicle10T08.unity3d/PfGrpDSGroncicle10T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpDSGroncicle10T00.unity3d/PfGrpDSGroncicle10T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWBotanist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWHeadmaster</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWAlchemist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Groncicle Inside Scoop</Text><ID>926594</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1815 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1974 + 2273 + 0 + + + 1 + 1974 + 2274 + 0 + + + 1 + 1974 + 2275 + 0 + + + 1 + 1974 + 2276 + 0 + + + 1 + 1974 + 2277 + 0 + + + 1 + 1974 + 2278 + 0 + + + 1 + 1974 + 2279 + 0 + + + 1 + 1974 + 2280 + 0 + + + 1 + 1974 + 2281 + 0 + + + + 1 + 203305 + 0 + + 2273 + Groncicle10T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I was trying to think back on the adventure we had in Icestorm Island, {{Name}}. Right before the Berserkers arrived on the island and forced us to evacuate, you and the Archaeologist found a treasure vault. Didn't you say one of the items was a lens of some sort? Do you think it was for the Dragon Eye? @@ I know that the Archaeologist kept the artifact afterwards. Will you talk to him and see where it is? If you go now, you can catch him before he leaves Berk.</Text><ID>926987</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Great minds think alike, my friend! My thoughts began racing immediately after I saw those wonderful projections on the wall. I could never figure out the purpose of the artifact in the vault. Perhaps this was it!</Text><ID>926988</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist by the Berk Docks</Text><ID>926985</ID></Title><Desc><Text>Talk to the Archaeologist by the Berk Docks</Text><ID>926985</ID></Desc></Data> + 0 + false + + + 2274 + Groncicle10T02 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpDSGroncicle10T02.unity3d/PfGrpDSGroncicle10T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I returned to the village after the Berserkers left and grabbed the artifact. Fishlegs was really interested in it, so I let him borrow it to examine it! Would you get it for me? It should still be in the Lookout.</Text><ID>926991</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDragonEyeLens</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Dragon Eye Lens on the bench in the Lookout</Text><ID>926989</ID></Title><Desc><Text>Find the Dragon Eye Lens on the bench in the Lookout</Text><ID>926989</ID></Desc></Data> + 0 + false + + + 2275 + Groncicle10T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Archaeologist is waiting at the Great Hall.</Text><ID>926994</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Amazing! I am always fascinated by how efficient dragons are. It would have taken me a week to get there and back.</Text><ID>926995</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Archaeologist in the Great Hall</Text><ID>926992</ID></Title><Desc><Text>Meet the Archaeologist in the Great Hall</Text><ID>926992</ID></Desc></Data> + 0 + false + + + 2276 + Groncicle10T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Will you give the Dragon Eye lens to Hiccup? He’ll know how to unlock its secrets.</Text><ID>926998</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Welcome back, {{Name}}. Wow! That’s definitely a Dragon Eye lens.</Text><ID>926999</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12152</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Eye Lens</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Dragon Eye Lens to Hiccup</Text><ID>926996</ID></Title><Desc><Text>Give the Dragon Eye Lens to Hiccup in the Great Hall</Text><ID>941711</ID></Desc></Data> + 0 + false + + + 2277 + Groncicle10T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ooh! The Dragon Eye lens only shows its secrets when the flame of a dragon of the same Dragon Class reflects through the artifact. The Groncicle is a Boulder class dragon. That means we need another Boulder Class dragon like my dear Gronckle Meatlug to use the Dragon Eye! @@ {{Input}} on Meatlug and use the Dragon Eye!</Text><ID>927002</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGronckleMeatlug</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGronckleMeatlug</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Meatlug</Text><ID>927602</ID></Title><Desc><Text>{{Input}} on Meatlug</Text><ID>927602</ID></Desc></Data> + 0 + false + + + 2278 + Groncicle10T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's fascinating… Let's take a closer look at the projection.</Text><ID>927005</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Here we go… The Groncicle is a Boulder Class dragon that lives in cold environments. They are a helpful, friendly race that are allies to those who treat them with respect.</Text><ID>927006</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DragonEyeProjection</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a closer look at the projections</Text><ID>927003</ID></Title><Desc><Text>Take a closer look at the projections</Text><ID>927003</ID></Desc></Data> + 0 + false + + + 2279 + Groncicle10T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It says here that the Groncicle's ice breath is amazing! There are only a few dragons that have it, such as a… "Bewilderbeast"? It says that the Groncicle can use the ice breath on clouds to condense the water vapor, causing it to rain or snow. @@ That would be a great way to partially control the amount or type of precipitation. That's quite an ability. @@ Let's test that out. You made friends with that little Groncicle in Icestorm Island, right? Take him with you to Gothi's hut in Berk!</Text><ID>927009</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly up to Gothi's hut with your Groncicle</Text><ID>927007</ID></Title><Desc><Text>Fly up to Gothi's hut with your Groncicle</Text><ID>927007</ID></Desc></Data> + 0 + false + + + 2280 + Groncicle10T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That cloud is gathering but it isn't ready to release the moisture. If we use the Groncicle's ice breath on the gathering cloud, it will allow water droplets or ice crystals to form more easily. Try it now.</Text><ID>927012</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It worked! We caused condensation in the cloud and it's starting to rain!</Text><ID>927013</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCloudsDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cloud</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>TargetTrigger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your Groncicle's ice breath on the clouds</Text><ID>927010</ID></Title><Desc><Text>Use your Groncicle's ice breath on the clouds</Text><ID>927010</ID></Desc></Data> + 0 + false + + + 2281 + Groncicle10T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's absolutely amazing, {{Name}}. Come back down and talk to me!</Text><ID>927016</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's another thing we need to add to the Groncicle page in the Book of Dragons. The Dragon Eye is helping us gain a deeper understanding of the dragons around us. What an amazing artifact!</Text><ID>927017</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup </Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup +</Text><ID>941712</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203305 + true + 100 + 100 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 203305 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203305 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203305 + true + 350 + 350 + + 0 + +
+ false +
+ + 1978 + Deathsong_MaskedCrusader03 + 45 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Who is the Rogue Rider?</Text><ID>926613</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1815 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1978 + 2303 + 0 + + + 1 + 1978 + 2304 + 0 + + + 1 + 1978 + 2305 + 0 + + + 1 + 1978 + 2306 + 0 + + + + 1 + 203294 + 0 + + 2303 + Crusader03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I've heard much about this masked stranger who showed up after the Death Song arrived on Berk. I've heard he is a dragon rider with a well-raised Razorwhip and I've seen him help against the Death Song, but I want to know more. Find out the rogue dragon rider's identity for me. @@ Perhaps Gobber knows something? He cleared some amber with the rogue dragon rider's help. He might be able to point you in the right direction.</Text><ID>927099</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>What a strange Viking, that masked dragon rider! He helped dissolve some amber from the bridge to Sven’s farm with some odd device. He was helpful but didn’t speak a word! </Text><ID>927100</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about the Rogue Dragon Rider</Text><ID>927097</ID></Title><Desc><Text>Talk to Gobber about the Rogue Dragon Rider</Text><ID>927097</ID></Desc></Data> + 0 + false + + + 2304 + Crusader03T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpDSCrusader03T02.unity3d/PfGrpDSCrusader03T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>He was throwing something to dissolve the amber. You should check out the bridge and see if there’s any clues left over.</Text><ID>927103</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>These glass fragments seem familiar. These were once flasks of amber-dissolving solution before they were thrown on the Deathsong amber!</Text><ID>927104</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRogueBombFragments</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for clues at the bridge to Sven's Farm</Text><ID>927101</ID></Title><Desc><Text>Look for clues at the bridge to Sven's Farm. You can pick up glass fragments left behind by the rogue rider</Text><ID>941724</ID></Desc></Data> + 0 + false + + + 2305 + Crusader03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Meatlug helped you create your glass bottles. You should talk to Fishlegs and see who else created glass with Meatlug's help.</Text><ID>927107</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hi {{Name}}! Meatlug only made glass for you, Hiccup, and Heather. Why do you ask?</Text><ID>927108</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about making glass with Meatlug</Text><ID>927105</ID></Title><Desc><Text>Talk to Fishlegs. Who else could have made glass in the lab?</Text><ID>927106</ID></Desc></Data> + 0 + false + + + 2306 + Crusader03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank Thor I found you, {{Name}}! We have a problem. Please come talk to me.</Text><ID>927111</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The Deathsong is starting to expand its hunting area. It looks like it's not happy with the island of Berk and wants to hunt more!</Text><ID>927112</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203294 + true + 100 + 100 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 203294 + true + 300 + 300 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 203294 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203294 + true + 50 + 50 + + 0 + +
+ false +
+ + 2175 + Loki01: Dreadfall + 8 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Dreadfall</Text><ID>927374</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 11-01-2015 12:00:00,12-01-2015 12:00:00 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2175 + 2623 + 0 + + + 1 + 2175 + 2624 + 0 + + + 1 + 2175 + 2625 + 0 + + + 1 + 2175 + 2626 + 0 + + + 1 + 2175 + 2627 + 0 + + + + 1 + 203557 + 0 + + 2623 + Loki01T01: Talk to Hiccup + <Data><Offer><Type>Popup</Type><ID>928821</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I feel a bit restless. Every year around this time of the season, the Flightmare would fly over Berk and frighten everyone with his glowing wings and deadly claws. We had to ready our defenses and grab weapons so that we'd be prepared for the scary dragon! The weeks before the arrival of the feared dragon were so tense and stressful. @@ I'm pleased that we understand the dragon now, but... I don't know, a little part of me misses those weeks. What can I say? A few weeks of scares can liven up the end of the year! @@ Can you mention this to Hiccup? I don't think we can do anything to change this, but maybe he'll have some ideas. Who knows, maybe he can rustle up a scary new dragon to threaten our village! Okay, maybe not.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928822</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Mulch said that? Sven and Bucket told me something similar this morning, as well. It's an interesting dilemma. Whenever we learn the truth behind a dragon, we debunk some traditions and myths. It's good to know the truth... but losing tradition is bittersweet. @@ Maybe we can create a holiday for the fall where we remember the fear the Flightmare raised within us. Tuffnut's been talking about some sort of festivity for the fall... he might have some good ideas.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup about the Frightmare.</Text><ID>928820</ID></Desc></Data> + 0 + false + + + 2624 + Loki01T02: Talk to Tuffnut + <Data><Offer><Type>Popup</Type><ID>928825</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>SPEAK NO MORE, GOOD SIR! For portents of mayhem and events, you cannot look further than the Nut twins! Come to me, brave Viking, if you dare to look into the heart of madness and fall under the spell of the [c][3eebff]Dreadfall[/c][ffffff]...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuetsOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932808</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I'm so excited, {{Name}}. Hiccup usually shakes his head and sighs when I bring up my own plans. I can't believe I have his permission this time. I need to strike while the iron is hot!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutCheer</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>933392</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yeah! We gotta do it!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut at Berk</Text><ID>928823</ID></Title><Desc><Text>Talk to Tuffnut at Berk.</Text><ID>928824</ID></Desc></Data> + 0 + false + + + 2625 + Loki01T03: Talk to Fishlegs + <Data><Offer><Type>Popup</Type><ID>928830</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The messenger of Loki is the one who can tell the tales of legends and gods! Speak with the Viking bulging with knowledge and he shall point the way. @@ It's Fishlegs, dude.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928831</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! Are you a part of Ruffnut and Tuffnut's plans? It's so exciting! I love having projects like this one. I think we can make Dreadfall an important part of Berk tradition. I think we can use the event to remember how much we used to fear the dragons that we didn't understand and have a little fun as well!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 2626 + Loki01T04: Find the Book of Loki + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpQLoki01T04.unity3d/PfGrpQLoki01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928834</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oops, I almost forgot my lines. Don't let Tuffnut know I slipped out of the role! @@ The God of Mischief is the Harbinger of Chaos, and those who wish to experience his Trials must prove themselves worthy. Find the Book of Loki in the place of gathering to earn a chance to earn the glory of Dreadfall!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectBookSingle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Book of Loki in a place of gathering</Text><ID>928832</ID></Title><Desc><Text>Find the Book of Loki in the Great Hall.</Text><ID>928833</ID></Desc></Data> + 0 + false + + + 2627 + Loki01T05: Enter the Loki Trials + <Data><Offer><Type>Popup</Type><ID>928837</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You have proven yourself worthy, Viking {{Name}}! Ruffnut and I are ready for true believers to take the test. Cross the anointed bridge and come to the bridge on the right!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928838</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Enter: Loki's Maze of Mayhem! The blessings of Loki await those who can finish his lessons...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HauntedHouseExit</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach Loki's Maze of Mayhem in Berk</Text><ID>928835</ID></Title><Desc><Text>Approach Loki's Maze of Mayhem at the cave in Berk.</Text><ID>928836</ID></Desc></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 203557 + true + 150 + 150 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 203557 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203557 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203557 + true + 50 + 50 + + 0 + +
+ false +
+ + 2176 + LokiMazeT01 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 01/01/2015,01/01/2016 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2176 + 2628 + 0 + + + + 1 + 203560 + 0 + + 2628 + LokiMazeT01 + <Data><Setup><Scene>HauntedHouseDO</Scene><Asset>PfLokiHelmetChest</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203560 + true + 100 + 100 + + 0 + + + + 1 +

6

+ 12348 + + 1 + 2545 + 203560 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 12349 + + 1 + 2546 + 203560 + true + 1 + 1 + + 0 + +
+ false +
+ + 2178 + RTTE08_Dragons06 + 11 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons06T00.unity3d/PfGrpRTTEDragons06T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Skrill Diversion</Text><ID>927510</ID></Title><Desc><Text>Skrill Diversion</Text><ID>927510</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2180 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2178 + 2632 + 0 + + + 1 + 2178 + 2981 + 0 + + + 1 + 2178 + 2633 + 0 + + + 2 + 2178 + 2214 + 0 + + + 1 + 2178 + 2635 + 0 + + + 1 + 2178 + 2636 + 0 + + + 1 + 2178 + 2637 + 0 + + + 1 + 2178 + 2638 + 0 + + + + 1 + 203563 + 203564 + + 2214 + RTTE08_Dragons06T03 + 11 +

2178

+ <Data><Offer><Type>Popup</Type><ID>927508</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay, ready? + +Now! Blast him!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>ScuttleclawIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons06T03CS.unity3d/PfGrpRTTEDragons06T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot the Skrill</Text><ID>927507</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 2 + + 1 + 2214 + 2634 + 0 + + + + 1 + 0 + 0 + + 2634 + RTTE_Dragons06T03 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfGrpRTTEDragons06T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSkrill</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSkrill</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Skrill!</Text><ID>930294</ID></Title><Desc><Text>Shoot the Skrill!</Text><ID>930295</ID></Desc></Data> + 0 + false + + false + + + 2632 + RTTE_Dragons06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>During today's Dragon Hunter lookout patrol, Stormfly and I saw an interesting island near Glacier Island that we want to check out. It looked like there might even be dragon nests there. Come with me, {{Name}}. I could use the company!</Text><ID>930298</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons06T01CS.unity3d/PfGrpRTTEDragons06T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>What's going on over there?</Text><ID>930299</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Astrid at Scuttleclaw Island</Text><ID>930296</ID></Title><Desc><Text>Meet Astrid at Scuttleclaw Island</Text><ID>930481</ID></Desc></Data> + 0 + false + + + 2633 + RTTE_Dragons06T02 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Dragons06T02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>These Scuttleclaws need some help. We can lead the Skrill away from the Scuttleclaw nest, just like the dolphins in shark attacks! We need to get its attention. I'll stay at low altitude. Can you fly higher to get to a vantage point?</Text><ID>930302</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This looks like a good position. Okay, this will be a bit tricky... but I hope we can make it work. When I say go, you hit it with {{dragon name}}'s fireballs. As you shoot it, I'll swoop down and get its attention. The angry Skrill should follow me, away from the Scuttleclaw nest.</Text><ID>930303</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Dragons06T02</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly up to get a vantage point</Text><ID>930300</ID></Title><Desc><Text>Fly up to get a vantage point</Text><ID>930300</ID></Desc></Data> + 0 + false + + + 2635 + RTTE_Dragons06T04 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons06T04.unity3d/PfGrpRTTEDragons06T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Astrid needs your help! Follow the Skrill and stay close. Shoot it with fireballs to slow it down.</Text><ID>932829</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great, just like we planned! Of course, now I have an angry Skrill on my tail. Help me out!</Text><ID>932933</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons06T04CS.unity3d/PfGrpRTTEDragons06T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSkrill02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSkrill02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Skrill chasing Stormfly</Text><ID>930304</ID></Title><Desc><Text>Shoot the Skrill chasing Stormfly</Text><ID>930304</ID></Desc></Data> + 0 + false + + + 2636 + RTTE_Dragons06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Whew! That was a close one. I think I lost the Skrill. Can you come find me? I think this place is very interesting...</Text><ID>930310</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_AstridNest</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AstridNest</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid at the Scuttleclaw cave</Text><ID>930308</ID></Title><Desc><Text>Find Astrid at the Scuttleclaw cave</Text><ID>930308</ID></Desc></Data> + 0 + false + + + 2637 + RTTE_Dragons06T06 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow, what did we discover here? This place looks amazing... and it doesn't look anything like the rest of the island.</Text><ID>930313</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridSchoolofDragons</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Is that a Flightmare egg? Wow! I think we might have stumbled on a Flightmare nest.</Text><ID>930314</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FlightmareNest</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>What is this cave?</Text><ID>930311</ID></Title><Desc><Text>Look around the cave</Text><ID>941832</ID></Desc></Data> + 0 + false + + + 2638 + RTTE_Dragons06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's get out of here before she returns and thinks we're threatening its egg. Let's get back to Dragon's Edge!</Text><ID>930317</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We need to adopt the mentality of the Scuttleclaw pack for the defense of Dragon's Edge. Every one of us can't do everything. We need to specialize roles, so that we are all pitching in on different tasks to protect our base. @@ Thank you for your help, {{Name}}. I couldn't have done it without you by my side!</Text><ID>930318</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Dragon's Edge</Text><ID>930315</ID></Title><Desc><Text>Go back to Dragon's Edge</Text><ID>930315</ID></Desc></Data> + 0 + false + + + 2981 + RTTE_Dragons06T01.5 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The Skrill must be an [c][3eebff]invasive species[/c][ffffff]! The Skrill is a much stronger dragon but the Scuttleclaws have an advantage in numbers. @@ Look! A single Scuttleclaw isn't strong enough to fight off the Skrill, but the Skrill can't take on all the Scuttleclaws at once! The flock of Scuttleclaws acts in sync as a defense against predators. Each dragon performs a specialized role to help its flock-mates defeat threats. @@ Cooperative pack behavior is how some animals and mammals survive. Musk oxen and elephants will circle around their young to form a defensive barrier. Dolphins will travel in shoals to defend the group from shark attacks. @@ If a shark gets too close, two dolphins will split off from the others and attract the shark away from the group.</Text><ID>930321</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Learn about Scuttleclaw behavior</Text><ID>930319</ID></Title><Desc><Text>Learn about Scuttleclaw behavior</Text><ID>930319</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203563 + true + 300 + 300 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 203563 + true + 70 + 70 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203563 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203563 + true + 350 + 350 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203564 + true + 350 + 350 + + 0 + +
+ false +
+ + 2180 + RTTE07_Dragons05 + 4 +

+ <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons05T00.unity3d/PfGrpRTTEDragons05T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Archaeologist, Dragon Trainer </Text><ID>927506</ID></Title><Desc><Text>Archaeologist, Dragon Trainer </Text><ID>927506</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2208 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2180 + 2794 + 0 + + + 1 + 2180 + 2795 + 0 + + + 1 + 2180 + 2796 + 0 + + + 1 + 2180 + 2797 + 0 + + + 1 + 2180 + 2798 + 0 + + + 1 + 2180 + 2799 + 0 + + + 1 + 2180 + 2800 + 0 + + + 1 + 2180 + 2801 + 0 + + + 1 + 2180 + 2802 + 0 + + + 1 + 2180 + 2974 + 0 + + + + 1 + 203593 + 0 + + 2794 + RTTE07_Dragons05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Dragon's Edge version 2 is looking to be a lot better than the first go around. We have a lot of defenses that we didn't have when we first arrived here. The Dragon Hunters will be really surprised next time they come here! It's thanks to your hard work, {{Name}}. @@ The Archaeologist mentioned that he could use the help of an expert dragon trainer to solve a peculiar dragon problem. You definitely can be called an expert dragon trainer now. He's at Mudraker Island. @@ Before you go, will you talk to Harald? He's made some great progress with understanding dragons, and maybe he'd want to go too.</Text><ID>930258</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Ah! That's a tempting offer, mate, but I'll have to pass. I've been reading the Book of Dragons. It's a fascinating tome, if I may say so. @@ Besides, the Archaeologist is a... strange man. He doesn't like me much, though I wouldn't be able to tell you why. I ran into him once and he accused me of trying to hurt him, for no reason!</Text><ID>930259</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald at Dragon's Edge</Text><ID>930256</ID></Title><Desc><Text>Talk to Harald at Dragon's Edge</Text><ID>930256</ID></Desc></Data> + 0 + false + + + 2795 + RTTE07_Dragons05T02 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I suppose you'll be off to meet the Archaeologist? On your way, then! I'll be safe and warm here at Dragon's Edge, curled up by the fire with the Book of Dragons. @@ Please don't mention me to the Archaeologist. He's such an unpredictable man, and I would hate to see him act irrationally if he knew I were here.</Text><ID>930262</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBIcestorm.unity3d/PfUiMissionActionDBIcestorm</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}! You'll be helping me out with this dragon problem? How wonderful, how wonderful! After our little adventures at Icestorm Island and with the Death Song, I'm sure you'll be able to sort out this misunderstanding.</Text><ID>930263</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist at Mudraker Island</Text><ID>930260</ID></Title><Desc><Text>Talk to the Archaeologist at Mudraker Island</Text><ID>930215</ID></Desc></Data> + 0 + false + + + 2796 + RTTE07_Dragons05T03 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>As you know, I've been wary of dragons in the past. It's hard to forget years of dragon attacks and childhood memories of how afraid I was. But my adventures with you at my side have convinced me that I really need to get with the times and train my own dragon! @@ I started excavating this island for Viking relics when I noticed a little dragon friend watching me whenever I used my pickaxe. I want to train him, but he always runs away! Maybe you can help me out. Please, {{input}} on me and I'll lead you to my campsite.</Text><ID>930266</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh! Be very quiet, {{Name}}. There's the adorable little fellow!</Text><ID>930267</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Camp</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>7</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Camp</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and follow him to the dig site</Text><ID>930264</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him to the dig site</Text><ID>930264</ID></Desc><Reminder><Text>Don't fall behind!</Text><ID>936412</ID></Reminder><Failure><Text>Oh no! You need to keep up!</Text><ID>936409</ID></Failure></Data> + 0 + false + + + 2797 + RTTE07_Dragons05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I think that he is a "Mudraker." The name certainly suits him. He almost never comes out of the mud. In fact, this is the most I've seen of him so far. He's usually much more secretive. @@ He has his back to us... do you think you could get close to him, {{input}} on him and calm him down so I can train him?</Text><ID>930270</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>How did he know you were there? He wasn't even looking at us and you were barely making any noise! That doesn't make sense to me!</Text><ID>930271</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MudArea</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Mudraker</Text><ID>930268</ID></Title><Desc><Text>Get closer to the Mudraker</Text><ID>941829</ID></Desc></Data> + 0 + false + + + 2798 + RTTE07_Dragons05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You might need some additional help to figure this dragon out. Perhaps Fishlegs and his encyclopedic knowledge would be helpful here. He is back at Dragon's Edge.</Text><ID>930274</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hmm. The Mudraker hid when you drew close, even when it couldn't see you? That's really interesting! Let me think back on the Book of Dragons notes on that particular dragon... Ah hah! I got it! @@ The Mudraker has special [c][3eebff]sense receptors[/c][ffffff] to react to vibrations! You see, different animals and dragons have evolved to react to unique senses to help them survive. The Mudraker can escape stealthy predators because of his ability to react to vibrations. @@ Over countless generations, the Mudraker developed unique adaptations to survive in his environment, just like the Snow Wraith and the Armorwing! @@ Your movement caused vibrations in the mud, which allowed him to sense that you were coming close.</Text><ID>930275</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos04</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs at Dragon's Edge</Text><ID>931030</ID></Title><Desc><Text>Talk to Fishlegs at Dragon's Edge</Text><ID>930272</ID></Desc></Data> + 0 + false + + + 2799 + RTTE07_Dragons05T06 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist_Cutscenes</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'd love to see this happen with my own eyes. Who knows, maybe I'll even be able to update the Book of Dragons with some new information! @@ I'll meet you and the Archaeologist at the dig site!</Text><ID>930278</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fishlegs! {{Name}} and I might need some additional back up on this little gathering. We can't figure this dragon out. Do you have a clue on how to get this dragon out into the clearing?</Text><ID>930279</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to the dig site</Text><ID>930276</ID></Title><Desc><Text>Return to the dig site</Text><ID>930276</ID></Desc></Data> + 0 + false + + + 2800 + RTTE07_Dragons05T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Mudraker can sense vibrations, right? It must have really connected with a sound you made. That's what made him come and see what you were doing. My hypothesis is that you made a sound at your dig site, and its vibrations alerted the Mudraker to come closer. @@ Let's test that hypothesis. There must be a noise that your clothes make when you move, Archaeologist. {{Name}}, can you help shake the Archaeologist so his clothes rustle? {{Input}} on him.</Text><ID>930282</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's working!</Text><ID>930283</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 2801 + RTTE07_Dragons05T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Certain sounds will draw the Mudraker closer? Maybe the sound of {{dragon name}}'s fireball will also work. After all, it's a very familiar sound to dragons. Can you tell your dragon to shoot the rock?</Text><ID>930286</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Mudraker really didn't like that noise. I bet it reminds the Mudraker of predators that it might have faced in the past. He probably has some very nasty memories of that sound!</Text><ID>930287</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfQuestRock</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>ShootableRock</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the rock with {{dragon name}}</Text><ID>930284</ID></Title><Desc><Text>Shoot the rock with {{dragon name}}</Text><ID>930284</ID></Desc></Data> + 0 + false + + + 2802 + RTTE07_Dragons05T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>When I excavate relics, I dig at the ground with my pickaxe. Maybe that sound was what drew him to me. {{Name}}, can you strike that rock with your axe?</Text><ID>930290</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons05T09CS.unity3d/PfGrpRTTEDragons05T09CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfQuestRock</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>QuestRockScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Hit the rock with your axe</Text><ID>930288</ID></Title><Desc><Text>{{Input}} on the Chop icon to hit the rock with your axe</Text><ID>941830</ID></Desc></Data> + 0 + false + + + 2974 + RTTE07_Dragons05T10 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You did it! Um. He looks very... big, standing next to me. I hope that I can train him. Well, thank you, Fishlegs and {{Name}}. I'll be able to do this, with your help!</Text><ID>930293</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Watch the Archaeologist</Text><ID>930291</ID></Title><Desc><Text>Watch the Archaeologist meet the Mudraker</Text><ID>941831</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203593 + true + 300 + 300 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 203593 + true + 70 + 70 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203593 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203593 + true + 200 + 200 + + 0 + +
+ false +
+ + 2195 + RTTE01_Villains01 + 61 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains01T00.unity3d/PfGrpRTTEVillains01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Threat of the Dragon Hunters</Text><ID>927477</ID></Title><Desc><Text>Threat of the Dragon Hunters</Text><ID>927477</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2195 + 2705 + 0 + + + 1 + 2195 + 2706 + 0 + + + 1 + 2195 + 2972 + 0 + + + 1 + 2195 + 2973 + 0 + + + 1 + 2195 + 2707 + 0 + + + 1 + 2195 + 2708 + 0 + + + 1 + 2195 + 2709 + 0 + + + 2 + 2195 + 2201 + 0 + + + 1 + 2195 + 2711 + 0 + + + 1 + 2195 + 2712 + 0 + + + + 1 + 203658 + 0 + + 2201 + RTTE01_Villains01T06 + 61 +

2195

+ <Data><Offer><Type>Popup</Type><ID>927475</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay! Now that the nest is--you know, not on fire--let's get these baby dragons calm. Can you find the baby Hobblegrunts and {{input}} on them? Use your training to direct them back to the nest.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927476</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, you're doing amazing! Those dragons really took a shine to you. Your training is really paying off. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Comfort the Hobblegrunts</Text><ID>927474</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2201 + 2710 + 0 + + + 1 + 2201 + 2739 + 0 + + + 1 + 2201 + 2740 + 0 + + + + 1 + 0 + 0 + + 2710 + RTTE01_Villains01T06A + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHobblegruntBaby_01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHobblegruntBaby_01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the baby Hobblegrunt to comfort him</Text><ID>929928</ID></Title><Desc><Text>{{Input}} on the baby Hobblegrunt to send him home</Text><ID>941801</ID></Desc></Data> + 0 + false + + + 2739 + RTTE01_Villains01T06B + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHobblegruntBaby_02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHobblegruntBaby_02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobblegrunt to comfort her</Text><ID>929930</ID></Title><Desc><Text>{{Input}} on the Hobblegrunt to send her to her nest</Text><ID>941802</ID></Desc></Data> + 0 + false + + + 2740 + RTTE01_Villains01T06C + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHobblegruntBaby_03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHobblegruntBaby_03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobblegrunt to comfort him</Text><ID>929932</ID></Title><Desc><Text>{{Input}} on the Hobblegrunt to send him to his nest</Text><ID>941803</ID></Desc></Data> + 0 + false + + false + + + 2705 + RTTE01_Villains01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Reports indicate a rise in activity from Dragon Hunters on the outskirts of Hobblegrunt Island.@@The Dragon Riders are asking all Dragon Trainers to help them in chasing the Dragon Hunters off. Please make your way to Hobblegrunt Island as soon as possible!</Text><ID>929936</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good timing, {{Name}}! We could really use your help.</Text><ID>929937</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Hobblegrunt Island</Text><ID>929934</ID></Title><Desc><Text>Meet the Dragon Riders at Hobblegrunt Island</Text><ID>941804</ID></Desc></Data> + 0 + false + + + 2706 + RTTE01_Villains01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We have two main priorities: protect the baby Hobblegrunts and defeat the Dragon Hunters! It'll be too hard to try to stop them from nabbing dragons if they get to land, so we need to stop them here and now.</Text><ID>929940</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good shot!</Text><ID>929941</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfShip01-PlayerTarget</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfShip01-PlayerTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Dragon Hunter ships</Text><ID>929938</ID></Title><Desc><Text>Shoot the Dragon Hunter ships</Text><ID>941805</ID></Desc></Data> + 0 + false + + + 2707 + RTTE01_Villains01T03 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains01T03.unity3d/PfGrpRTTEVillains01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! {{Name}}, help! Meatlug and I have been practicing this secret shot with Gronckle Iron, but I dropped the bag near the nest! Can you find it for me?</Text><ID>929944</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Yes, that's it!</Text><ID>929945</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfGronckleBaitBox</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find Fishlegs's satchel on the island</Text><ID>929942</ID></Title><Desc><Text>Find Fishlegs's satchel on the island</Text><ID>929942</ID></Desc></Data> + 0 + false + + + 2708 + RTTE01_Villains01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Please, fly up and give it to me!</Text><ID>929948</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Woohoo! It worked!</Text><ID>929949</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains01T04CS.unity3d/PfGrpRTTEVillains01T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>12399</Value></Pair><Pair><Key>ItemDescription</Key><Value>Satchel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the satchel to Fishlegs</Text><ID>929946</ID></Title><Desc><Text>Give the satchel to Fishlegs</Text><ID>929946</ID></Desc></Data> + 0 + false + + + 2709 + RTTE01_Villains01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job, dragon riders! They'll be back later, but I'll take any victory right now. @@ We need to douse this flame! We need to remove the flame's oxygen source to extinguish it--water or sand are the easy solutions. @@ We didn't bring any containers to carry water so we'll need to find sand. Can you figure out a way to get sand onto the fire?</Text><ID>929952</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains01T05CS.unity3d/PfGrpRTTEVillains01T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job. We'll need to clean up their nest, but a bit of a mess is better than it burning!</Text><ID>929953</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains01T05bCS.unity3d/PfGrpRTTEVillains01T05bCS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cliff</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfMarker_Cliff</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the cliff to dump sand on the nest</Text><ID>929950</ID></Title><Desc><Text>Shoot the cliff above the nest to dislodge sand onto the fire</Text><ID>941806</ID></Desc></Data> + 0 + false + + + 2711 + RTTE01_Villains01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup, there's a strange boat coming towards Dragon's Edge. We need to get back and check it out right away!</Text><ID>929956</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't see--wait, there he is. He docked his ship and walked right in. Who does that?</Text><ID>929957</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly out to Dragon's Edge</Text><ID>929954</ID></Title><Desc><Text>Go to Dragon's Edge</Text><ID>929044</ID></Desc></Data> + 0 + false + + + 2712 + RTTE01_Villains01T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Hiccup01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Who is this stranger, and what does he want from Dragon's Edge?</Text><ID>929960</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well met! I am Harald Forkbeard: trader, navigator, and master of adventure at your service. I hope you don't mind that I made myself at home. This island was one of my old haunts and I stopped by when I found myself in a bit of trouble. @@ You see, I had a slight disagreement with these Dragon Hunters. I offered them my wares at very reasonable prices, but they tried to steal everything instead. How insulting! I only trade with upstanding vikings, so I sailed away. @@ I need a place to lay low while I upgrade my ship. If I run into these brigands again, I need to be able to outrun them on the open sea. I hope you don't mind my staying here with you. Your dragons are amazing! I'm sure they can protect me.</Text><ID>929961</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Who is this confident stranger? Talk to him</Text><ID>929958</ID></Title><Desc><Text>Talk to the confident stranger</Text><ID>941807</ID></Desc></Data> + 0 + false + + + 2972 + RTTE01_Villains01T02B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Shoot the ship again!</Text><ID>929964</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfShip01-PlayerTarget</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfShip01-PlayerTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Dragon Hunter ships</Text><ID>929962</ID></Title><Desc><Text>Shoot the Dragon Hunter ships</Text><ID>941805</ID></Desc></Data> + 0 + false + + + 2973 + RTTE01_Villains01T02C + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We're close to taking the ship down. Give it one more solid hit!</Text><ID>929967</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great shot, {{Name}}! That was one in a million.</Text><ID>929968</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfShip01-PlayerTarget</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfShip01-PlayerTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Dragon Hunter ships</Text><ID>927537</ID></Title><Desc><Text>Shoot the Dragon Hunter ships</Text><ID>941805</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203658 + true + 300 + 300 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 203658 + true + 70 + 70 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203658 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203658 + true + 350 + 350 + + 0 + +
+ false +
+ + 2196 + RTTE02_DragonsEdge01 + 4 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T00.unity3d/PfGrpRTTEDragonsEdge01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T00Catapult.unity3d/PfGrpRTTEDragonsEdge01T00Catapult</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Home Sweet Dragon's Edge</Text><ID>927485</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2195 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2196 + 2713 + 0 + + + 1 + 2196 + 2714 + 0 + + + 1 + 2196 + 2715 + 0 + + + 1 + 2196 + 2716 + 0 + + + 1 + 2196 + 2717 + 0 + + + 1 + 2196 + 2718 + 0 + + + 2 + 2196 + 2197 + 0 + + + 1 + 2196 + 2722 + 0 + + + 2 + 2196 + 2198 + 0 + + + 1 + 2196 + 2726 + 0 + + + 1 + 2196 + 2727 + 0 + + + + 1 + 203580 + 0 + + 2197 + RTTE02_DragonsEdge01T07 + 4 +

2196

+ <Data><Offer><Type>Popup</Type><ID>927481</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait! Heather's always telling us to test things in a scientific manner. For once, I think I’m going to listen to her! (I'm all for it if it means I can shoot the catapult more.) @@ Can you find 3 boulders of different sizes on Outpost Island so that we can hurl them at the water?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gather Rocks Appropriate for ammunition</Text><ID>927480</ID></Title><Desc><Text>Gather Rocks Appropriate for ammunition</Text><ID>927480</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2197 + 2719 + 0 + + + 1 + 2197 + 2720 + 0 + + + 1 + 2197 + 2721 + 0 + + + + 1 + 0 + 0 + + 2719 + RTTE02_DragonsEdge01T7.1 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T07.unity3d/PfGrpRTTEDragonsEdge01T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfRockSmall</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find a small boulder</Text><ID>929969</ID></Title><Desc><Text>Find a small boulder in Dragon's Edge</Text><ID>941808</ID></Desc></Data> + 0 + false + + + 2720 + RTTE02_DragonsEdge01T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T08.unity3d/PfGrpRTTEDragonsEdge01T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockMarble</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find boulders for catapult ammo</Text><ID>929973</ID></Title><Desc><Text>Find boulders for catapult ammo</Text><ID>929973</ID></Desc></Data> + 0 + false + + + 2721 + RTTE02_DragonsEdge01T09 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T09.unity3d/PfGrpRTTEDragonsEdge01T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSylvite</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find boulders for catapult ammo</Text><ID>929973</ID></Title><Desc><Text>Find boulders for catapult ammo</Text><ID>929973</ID></Desc></Data> + 0 + false + + false + + + 2198 + RTTE02_DragonsEdge01T11 + 4 +

2196

+ <Data><Offer><Type>Popup</Type><ID>927484</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Tuffnut and I set up some markers in the bay so we can tell exactly where the shots are landing. When you're ready, {{input}} on the rocks to send them hurtling toward the ocean. @@ I can't wait!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_Snotlout_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_Astrid_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>{{Input}} on the catapult and test the trajectories</Text><ID>927483</ID></Title><Desc><Text>{{Input}} on the catapult and test the trajectories</Text><ID>927483</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2198 + 2723 + 0 + + + 1 + 2198 + 2724 + 0 + + + 1 + 2198 + 2725 + 0 + + + + 1 + 0 + 0 + + 2723 + RTTE02_DragonsEdge01T12 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>What a beautiful [c][3eebff]trajectory[/c][ffffff]! (That's the path an object takes in air. Tuffnut and I have [c][3eebff]a lot[/c][ffffff] of experience with throwing things.) @@ That went much farther than I expected!</Text><ID>929977</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T12CS.unity3d/PfGrpRTTEDragonsEdge01T12CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfCatapultAmmoSmall</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCatapultAmmoSmall</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the ammo next to the catapult</Text><ID>929978</ID></Title><Desc><Text>{{Input}} on the ammo next to the catapult</Text><ID>929978</ID></Desc></Data> + 0 + false + + + 2724 + RTTE02_DragonsEdge01T13 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hmm. We didn't get very far with this rock, did we? </Text><ID>929980</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T13CS.unity3d/PfGrpRTTEDragonsEdge01T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfCatapultAmmoMedium</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCatapultAmmoMedium</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the ammo next to the catapult</Text><ID>929978</ID></Title><Desc><Text>{{Input}} on the ammo next to the catapult</Text><ID>929978</ID></Desc></Data> + 0 + false + + + 2725 + RTTE02_DragonsEdge01T14 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Whoa! This rock flew the shortest distance... It also shot a little away from the target. That must be because of [c][3eebff]air resistance[/c][ffffff]. The bigger and heavier object has more mass to push through the air to the target. @@ This means that when we shot three objects with the catapult, bigger objects consistently traveled shorter distances when we apply the same amount of force. If we want this heavy rock to fly the farthest, we need to apply [c][3eebff]more force[/c][ffffff].</Text><ID>929983</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T14CS.unity3d/PfGrpRTTEDragonsEdge01T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfCatapultAmmoLarge</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCatapultAmmoLarge</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the ammo next to the catapult</Text><ID>929978</ID></Title><Desc><Text>{{Input}} on the ammo next to the catapult</Text><ID>929978</ID></Desc></Data> + 0 + false + + false +
+ + 2713 + RTTE02_DragonsEdge01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's nice to meet you, Harald. I'm Hiccup. @@ You're welcome to stay here until the danger with the Dragon Hunters blows over. And like I always say, anyone who can appreciate dragons is a friend of mine.</Text><ID>929986</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGreeting</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>You're alright, Hiccup. You won't regret taking me in... I promise. I'm a right resourceful kind of guy. You'll reap all sorts of benefits with me around. @@ Your dragon training abilities are impressive. I barely managed to get this tiny Terrible Terror to listen to me, while you have giant dragons under your command! This is my pet Leopold. He won't bite, unless I tell him to.</Text><ID>929987</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Harald at Dragon’s Edge</Text><ID>929984</ID></Title><Desc><Text>Talk to Harald at Dragon’s Edge</Text><ID>929984</ID></Desc></Data> + 0 + false + + + 2714 + RTTE02_DragonsEdge01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ah... well, dragons are actually very intelligent, Harald. We like to think of them as friends and not pets. @@ You should pet Leopold, {{Name}}. He seems like a friendly little fella!</Text><ID>929990</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Looks like I've got a lot to learn about dragons, Hiccup. I look forward to stealing all your knowledge, ha ha!</Text><ID>929991</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWMissionSoundsDO.unity3d/SndDragTerribleTerrorHappy</Asset><NPC>PfDWHarald</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLeopold</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLeopold</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Pet Leopold, the Terrible Terror</Text><ID>929988</ID></Title><Desc><Text>{{Input}} on Leopold, the Terrible Terror</Text><ID>941809</ID></Desc></Data> + 0 + false + + + 2715 + RTTE02_DragonsEdge01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's… nice, to meet you Harald. @@ The Dragon Hunters left our base in quite a nasty shape when they came through. We need to fix it as soon as we can, then make sure we set up defenses so we won’t be caught unawares again. @@ I brought some building supplies from Berk when I last visited, and I'd like some help in getting it up to Dragon’s Edge. {{Name}}, please meet me down here at the bay.</Text><ID>929994</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid by the bay</Text><ID>929992</ID></Title><Desc><Text>Meet Astrid by the bay</Text><ID>941810</ID></Desc></Data> + 0 + false + + + 2716 + RTTE02_DragonsEdge01T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Escort</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's take this slow and steady, {{Name}}. Don't mount your dragon! {{Input}} on me and follow me to Hiccup's house.</Text><ID>929997</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't mind lugging all that weight by myself, but it's always better to do things together with a friend. Maybe I’m just being paranoid since we just had so much trouble with the Dragon Hunters, but I don't trust Harald! @@ I think I'll keep an eye on him. Let me know if you spot anything suspicious.</Text><ID>929998</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiccupHouse03</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Spline</Key><Value>Astrid_Follow</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Astrid up to Dragon's Edge</Text><ID>929995</ID></Title><Desc><Text>Follow Astrid up to Dragon’s Edge with supplies</Text><ID>941811</ID></Desc><Reminder><Text>Keep up!</Text><ID>936400</ID></Reminder><Failure><Text>Oh no! She left you behind!</Text><ID>936413</ID></Failure></Data> + 0 + false + + + 2717 + RTTE02_DragonsEdge01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hey! While Astrid is busy fiddling about with boring repair stuff, my brother and I got started on repairing Dragon's Edge's defenses. Come to me and I'll tell you all about it!</Text><ID>930001</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>We set up Gobber's catapult at the base! It's a gorgeous siege weapon designed to fling things. At its core, the catapult is a [c][3eebff]lever[/c][ffffff]. Well, this is a more elaborate form of the simple machine, with a [c][3eebff]pulley[/c][ffffff] to help. @@ It'll sink a Dragon Hunter ship, no problem, if they try to attack us.</Text><ID>930002</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut about the catapult</Text><ID>929999</ID></Title><Desc><Text>Talk to Ruffnut. She's standing by the stables</Text><ID>941812</ID></Desc></Data> + 0 + false + + + 2718 + RTTE02_DragonsEdge01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Are you ready to cause some mayhem? Check out the catapult below Astrid's house. {{Input}} on it and launch that rock sky high, my friend.</Text><ID>930005</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>What a work of beauty... I think I have tears in my eyes. You see, the arm of the catapult is the [c][3eebff]lever[/c][ffffff]. The lever is balanced on a pivot, and moves the load when you pull back on the lever and let go. @@ The strength, or [c][3eebff]force[/c][ffffff], of the pull determines how far the object flies in the air. Cool, isn't it?</Text><ID>930006</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T13CS.unity3d/PfGrpRTTEDragonsEdge01T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Catapult01</Value></Pair><Pair><Key>NPC</Key><Value>PfDWCatapult</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the catapult</Text><ID>930003</ID></Title><Desc><Text>{{Input}} on the catapult</Text><ID>930003</ID></Desc></Data> + 0 + false + + + 2722 + RTTE02_DragonsEdge01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Come on, come on! Bring the precious ammo over to the catapult so we can get started.</Text><ID>930009</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ByCatapult01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the catapult</Text><ID>930007</ID></Title><Desc><Text>Go to the catapult</Text><ID>930007</ID></Desc></Data> + 0 + false + + + 2726 + RTTE02_DragonsEdge01T15 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_TargetPractice</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>As I always say to my sister, why just learn something when you can learn something while someone shoots stuff at you? Come on, it'll be fun! @@ You saw where the rocks were landing, right? Fly out there and get ready to dodge and shoot with your dragon. Trust me, you'll be happy you had this practice when the Dragon Hunters swing by again!</Text><ID>930012</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's perfect. I've got a perfect bead on you from here.</Text><ID>930013</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TargetPractice</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly above the bay</Text><ID>930010</ID></Title><Desc><Text>Fly above the bay, in the path of the catapult</Text><ID>941813</ID></Desc></Data> + 0 + false + + + 2727 + RTTE02_DragonsEdge01T16 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge01T17.unity3d/PfGrpRTTEDragonsEdge01T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Here we go. Make sure to dodge the rocks and blast it in midair! This will be so cool.</Text><ID>930016</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That. Was. Amazing! +Operation Launch Catapults At Your Face is a success. Great work all around! @@ When's my turn? @@ Oh no! My sister has terrible news! Come talk to me. I need your help right now, or all of Dragon's edge is [c][3eebff]DOOMED![/c][ffffff]</Text><ID>930017</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutCheer</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfCatapultProjectile</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfCatapultProjectile</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the catapult rock as it hurtles toward you</Text><ID>930014</ID></Title><Desc><Text>Shoot the catapult rock as it hurtles toward you</Text><ID>930014</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203580 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 203580 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203580 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203580 + true + 350 + 350 + + 0 + +
+ false +
+ + 2199 + RTTE03_Dragons01 + 16 +

+ <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons01T00NPC.unity3d/PfGrpRTTEDragons01T00NPC</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons01T07.unity3d/PfGrpRTTEDragons01T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Multi-Head Bonanza</Text><ID>927490</ID></Title><Desc><Text>Multi-Head Bonanza</Text><ID>927490</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2196 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2199 + 2728 + 0 + + + 1 + 2199 + 2729 + 0 + + + 1 + 2199 + 2730 + 0 + + + 2 + 2199 + 2200 + 0 + + + 1 + 2199 + 2734 + 0 + + + 1 + 2199 + 2735 + 0 + + + 1 + 2199 + 2736 + 0 + + + 1 + 2199 + 2737 + 0 + + + 1 + 2199 + 2738 + 0 + + + + 1 + 203582 + 0 + + 2200 + RTTE03_Dragons01T04 + 16 +

2199

+ <Data><Offer><Type>Popup</Type><ID>927487</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>This cannot stand. This [c][3eebff]CANNOT[/c][ffffff] stand! The Dragon Hunters left traps all around the island to catch unsuspecting, innocent Zipplebacks. We can't leave them here! @@ Can you go around the island and shoot the traps? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927488</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Bravo, {{Name}}. Bravo!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot the traps</Text><ID>927486</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2200 + 2731 + 0 + + + 1 + 2200 + 2732 + 0 + + + 1 + 2200 + 2733 + 0 + + + + 1 + 0 + 0 + + 2731 + RTTE03_Dragons01T4.1 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons01T04.unity3d/PfGrpRTTEDragons01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfTrapSnapperArcticA</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrapSnapperArcticA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a trap and shoot it to disable it</Text><ID>930020</ID></Title><Desc><Text>Shoot the traps</Text><ID>927486</ID></Desc></Data> + 0 + false + + + 2732 + RTTE03_Dragons01T05 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons01T05.unity3d/PfGrpRTTEDragons01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfTrapSnapperArcticB</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrapSnapperArcticB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a trap and shoot it to disable it</Text><ID>930020</ID></Title><Desc><Text>Find a trap and shoot it to disable it</Text><ID>930020</ID></Desc></Data> + 0 + false + + + 2733 + RTTE03_Dragons01T06 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons01T06.unity3d/PfGrpRTTEDragons01T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfTrapSnapperArcticC</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrapSnapperArcticC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a trap and shoot it to disable it</Text><ID>930020</ID></Title><Desc><Text>Find a trap and shoot it to disable it</Text><ID>930020</ID></Desc></Data> + 0 + false + + false + + + 2728 + RTTE03_Dragons01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It's an emergency! Those Dragon Hunters are hunting in the surrounding islands around us. More importantly, they've landed on Zippleback Island. That's where Barf n Belch's favorite friend lives. @@ This cannot stand! Bring your pitchforks and torches to Zippleback Island. It's time to start a mob against those crazy Dragon Hunters! </Text><ID>930026</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>These Dragon Hunters set a bunch of traps on the island so they can catch the Hideous Zipplebacks that live in this area. I don't know when they set them, but I bet they'll be back to claim the dragons really soon.</Text><ID>930027</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Zippleback Island </Text><ID>930024</ID></Title><Desc><Text>Go to Zippleback Island</Text><ID>930024</ID></Desc></Data> + 0 + false + + + 2729 + RTTE03_Dragons01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Oh no, we found Fart n Sniff! He's in trouble. Quick, come meet us here, but make sure you don't get caught in any traps!</Text><ID>930030</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>What sort of monster would trap a beautiful Zippleback like this?</Text><ID>930031</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Zipplebacktrap</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the twins by the Hideous Zippleback</Text><ID>930028</ID></Title><Desc><Text>Look for the twins by the Hideous Zippleback</Text><ID>930028</ID></Desc></Data> + 0 + false + + + 2730 + RTTE03_Dragons01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It'll be okay, sister. We can cut the snare net and free the Zippleback. {{Name}}, did you bring your axe? Use it to cut the net trap to shreds!</Text><ID>930034</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Be free, Fart n Sniff! Be free!</Text><ID>930035</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNetTrapZippleback</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>RopeScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the snare net rope and free the Zippleback </Text><ID>930032</ID></Title><Desc><Text>Chop the snare net and free the Zippleback</Text><ID>941814</ID></Desc></Data> + 0 + false + + + 2734 + RTTE03_Dragons01T07 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_Harald02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Ah... {{Name}}, mate, there's a mutant Zippleback here. I don't know what's wrong with him... and I don't want to get any closer. I could use your expertise.</Text><ID>930038</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I almost walked right into that thing. What's wrong with it?</Text><ID>930039</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Harald02</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Harald and talk to him</Text><ID>930036</ID></Title><Desc><Text>Find Harald at Zippleback Island</Text><ID>941815</ID></Desc></Data> + 0 + false + + + 2735 + RTTE03_Dragons01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It will be okay, Harald. That's a Snaptrapper, a calm Mystery Class dragon. It likes to set ambushes to eat its small prey and it won't come up here to attack you. In fact, they're pretty peaceful if you don't get in their way. @@ Isn't it a fascinating dragon, {{Name}}? Take a little closer look at the beautiful dragon.</Text><ID>930042</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, I see! Snaptrappers and Hideous Zipplebacks eat different types of prey. It looks like this Snaptrapper likes to eat small land animals, where Barf n Belch really prefer to swoop down and snatch fish from the ocean. @@ The two Mystery Class dragons must have shared a common ancestor a long, long time ago... and their physiology adapted and changed to match the type of food they prefer to eat. @@ The Hideous Zippleback has two heads because it helps it catch fish, whereas the Snaptrapper has four heads because it can spread out and cover more ground while it lies in ambush.</Text><ID>930043</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons01T08CS.unity3d/PfGrpRTTEDragons01T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snaptrapper</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snaptrapper</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get closer to the Snaptrapper </Text><ID>930040</ID></Title><Desc><Text>Get closer to the Snaptrapper</Text><ID>930040</ID></Desc></Data> + 0 + false + + + 2736 + RTTE03_Dragons01T09 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait, be quiet. I'm having a thought... and I'm not used to the experience. @@ So... if the Snaptrapper can hide, and wait for its prey to come for it, can we do the same to Dragon Hunters? What if we created a giant hole and covered it with branches, leaves, and other bits of camouflage so you can't see it? Then we'll slow down anyone who's trying to attack the base. @@ Hiccup will know if this is a good idea or not. Can you ask him what he thinks of a pitfall trap at Dragon's Edge? </Text><ID>930046</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, that's actually a very good idea from the twins! Animals have developed defenses through generations of adaptation. The dragons are still alive because their defense mechanisms work. We can use dragon defenses as inspiration to defend our own base. @@ I'm very excited to see what you can do with it! </Text><ID>930047</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Dragon's Edge and speak to Hiccup</Text><ID>930044</ID></Title><Desc><Text>Return to Dragon's Edge and speak to Hiccup</Text><ID>930044</ID></Desc></Data> + 0 + false + + + 2737 + RTTE03_Dragons01T10 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_PitfallRuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_PitfallTuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons01T10.unity3d/PfGrpRTTEDragons01T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Did you get permission from Lord Hiccup? Yes? Good, because we already dug the hole. Ruffnut and I are pretty good at making holes from burying each other alive all the time. You can't stop that kind of expertise! @@ Come down here and see our handiwork.</Text><ID>930050</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey guys, what are you looking at? </Text><ID>930051</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons01T10CS.unity3d/PfGrpRTTEDragons01T10CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PitfallTuffnut</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find the twins at Dragon's Edge</Text><ID>930048</ID></Title><Desc><Text>Find the twins at Dragon's Edge</Text><ID>930048</ID></Desc></Data> + 0 + false + + + 2738 + RTTE03_Dragons01T11 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_InPitfall</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>[c][3eebff]Loki'd![/c][ffffff] The pitfall trap is a success! The camouflage on the hole means that our enemies--and Snotlout--won't know it's there. What a well-executed plan, brother. @@ You want to talk to Snotlout and make sure he's okay? Or gloat. I would totally gloat.</Text><ID>930054</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Really, guys? Honestly, who puts a hole in the middle of perfectly good pathways? @@ I mean, I knew it was there... I just had to make sure that it was deep enough to trap people who fall inside. So, good job. You'll help me up, right? @@ Right? Ruffnut? Tuffnut? {{Name}}?</Text><ID>930055</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_InPitfall</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Snotlout </Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203582 + true + 300 + 300 + + 0 + +
+ + 70 +

2

+ 0 + + 1 + 524 + 203582 + true + 70 + 70 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203582 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203582 + true + 350 + 350 + + 0 + +
+ + 1 +

6

+ 10996 + + 1 + 2851 + 203582 + true + 1 + 1 + + 0 + +
+ false +
+ + 2206 + RTTE04_Dragons02 + 10 +

+ <Data><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons02T00.unity3d/PfGrpRTTEDragons02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Epic Catastrophe</Text><ID>927491</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2199 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2206 + 2757 + 0 + + + 1 + 2206 + 2758 + 0 + + + 1 + 2206 + 2759 + 0 + + + 1 + 2206 + 2760 + 0 + + + 1 + 2206 + 2761 + 0 + + + 1 + 2206 + 2762 + 0 + + + 1 + 2206 + 2763 + 0 + + + 1 + 2206 + 2764 + 0 + + + 1 + 2206 + 2976 + 0 + + + 1 + 2206 + 2977 + 0 + + + + 1 + 203580 + 0 + + 2757 + RTTE04_Dragons02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! Before I forget, you earned an Age Up ticket. This will let you choose one of your dragons to get to the Broad Wing stage immediately. We'll need you and your dragons at full strength to take on the Dragon Hunters! @@ Hiccup came and told me about your brilliant plan to use natural dragon defenses for our own base. Well, he said the thought came from you and the twins, but knowing what I know about the twins I'm guessing it was mostly your idea. @@ Anyway! I would like to introduce you to a dragon to consider for base defense: the Catastrophic Quaken! He's this amazing Boulder Class dragon that lives at Dark Deep. He has Armor 35, Jaw Strength 20, and... @@ No, there's no way I can tell you the majesty of this dragon through my dragon stats (even though they're incredibly accurate). Let me show you in person. To the Dark Deep!</Text><ID>930058</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Welcome to Dark Deep! It's the legendary island home of the Gronckles. It's a rocky, dusty place--perfect for rock-eating dragons like the Gronckle and the Quaken! @@ You see, many animals evolve over generations to live in their natural habitats. The Boulder Class dragons survive here better than most because their physiology has adapted to fit this environment!</Text><ID>930059</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dark Deep</Text><ID>930056</ID></Title><Desc><Text>Go to Dark Deep</Text><ID>930056</ID></Desc></Data> + 0 + false + + + 2758 + RTTE04_Dragons02T02 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWPrickleboggle</Asset><Location>PfMarker_Prickleboggle</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I wonder where the Gronckles and the Catastrophic Quaken are. My last few trips to this island have been really great with those dragons as company. Well, it can't be hard to find them! Let's fly around the island and look for the Quaken.</Text><ID>930062</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! The Dragon Hunters must have found this island with the Dragon Eye. Oh no, oh no... Get a grip, Fishlegs! You can't fall apart now. Dragons are in danger! @@ The Quaken looks a little worse for wear, but it looks like his friend is trapped in the cage. That is a Prickleboggle, a brilliant Sharp class dragon. He has a really unique ability to heal with his 'fireball'! @@ On my trips to the island, I've observed that the Catastrophic Quaken and the Prickleboggle have developed a [c][3eebff]symbiotic relationship[/c][ffffff], or a connection between members of different species where they help each other out. @@ It's just like you and {{dragon name}}, working together! @@ Gosh, what am I rambling on about? We need to help the Prickleboggle out!</Text><ID>930063</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Prickleboggle</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Catastrophic Quaken</Text><ID>930060</ID></Title><Desc><Text>Look for the Catastrophic Quaken</Text><ID>930060</ID></Desc></Data> + 0 + false + + + 2759 + RTTE04_Dragons02T03 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWPrickleboggle</Asset><Location>PfMarker_Prickleboggle</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't think the Quaken can break the cage without hurting the dragon inside... what do we do? Those are dragon-proof cages. Fireballs won't do a thing to harm them! @@ I'm out of ideas, {{Name}}. I wish Hiccup were here. Maybe we can go back to Dragon’s Edge and ask for Hiccup's help. I’m sure he'll know what to do! @@ Wait, I think I saw Harald's boat lagging a little bit behind us. Can you ask him if he has any solutions in mind?</Text><ID>930066</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Hey there! I'm getting a feel for the waters around your Dragon's Edge. I was navigating the shortest path here with the currents, but I appreciate you slowing down on the flight over to give me a sporting chance to keep up. @@ I know you could have blazed on over here on your fast... {{dragon name}}, you said it was called? These creatures are pretty convenient.</Text><ID>930067</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald at the beach</Text><ID>930064</ID></Title><Desc><Text>Talk to Harald at the beach</Text><ID>930064</ID></Desc></Data> + 0 + false + + + 2760 + RTTE04_Dragons02T04 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_HaraldBeach</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWPrickleboggle</Asset><Location>PfMarker_Prickleboggle</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>A dragon is stuck in a Dragon Hunter cage? Say no more, friend. I've picked up a few useful skills on the seven seas. {{Input}} on me and lead the way. I can get the dragon out of that little jam!</Text><ID>930070</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Hello, dragon! Don't claw my eyes out, you hear? Harald's going to get you out of that sticky little situation.</Text><ID>930071</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons02T04CS.unity3d/PfGrpRTTEDragons02T04CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Prickleboggle</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>7</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead Harald to the Prickleboggle trap</Text><ID>930068</ID></Title><Desc><Text>Lead Harald to the Prickleboggle trap</Text><ID>930068</ID></Desc><Reminder><Text>Harald doesn't know the way, so stay close!</Text><ID>936402</ID></Reminder><Failure><Text>Oh no! You left Harald behind!</Text><ID>936411</ID></Failure></Data> + 0 + false + + + 2761 + RTTE04_Dragons02T05 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons02T05.unity3d/PfGrpRTTEDragons02T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWPrickleboggle</Asset><Location>PfMarker_Prickleboggle02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You see? The Prickleboggle heals the Catastrophic Quaken when it gets hurt, and the Quaken defends the Prickleboggle from any predators. It's a relationship where both species benefit in unique ways. This type of symbiotic relationship is called [c][3eebff]mutualism[/c][ffffff]. @@ I think our Quaken friend is going to be just fine, {{Name}}. We should clear the island of these nasty weapons and traps that the Dragon Hunters left behind. Can you grab them all?</Text><ID>930074</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Dragon Hunters bit off more than they could chew with Dark Deep. You think you can trap the Catastrophic Quaken so easily? I wish I could have watched them slink away from the island, tails between their legs!</Text><ID>930075</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsGenPraise02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDragonHunterWeapons</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather the Dragon Hunters' tools</Text><ID>930072</ID></Title><Desc><Text>Gather the Dragon Hunters' tools around Dark Deep</Text><ID>941816</ID></Desc></Data> + 0 + false + + + 2762 + RTTE04_Dragons02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sorry, I get a little bit steamed when I think about dragons being mistreated. As much as I'm happy Quakey chased the Dragon Hunters away, they must have captured the Gronckles that lived here. @@ We need to tell Hiccup. Let's go back to Dragon's Edge and give him these disgusting tools we confiscated. @@ We'll meet you back at Dragon's Edge, Harald. Thank you so much for your help! I don't know what we would have done without you.</Text><ID>930078</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That could be a big problem. Dark Deep is far away from the Dragon Hunter bases... are they expanding their territory? Good job gathering these tools. I'll put them away where they can't be used to harm any dragons.</Text><ID>930079</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12422</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Hunter Weapon</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Dragon Hunter weapons to Hiccup at Dragon's Edge</Text><ID>930076</ID></Title><Desc><Text>Return to Dragon's Edge and give Hiccup the Dragon Hunter tools you confiscated from Dark Deep</Text><ID>941817</ID></Desc></Data> + 0 + false + + + 2763 + RTTE04_Dragons02T07 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons02T07.unity3d/PfGrpRTTEDragons02T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We were sort of busy when we were at Dark Deep, so I didn't get to show you what I took you there to see. @@ You see, the Catastrophic Quaken relies on two things to protect himself. The first is his thick, armoring hide. He can shrug off blows that would stop most dragons and keep going. Second, his nest is protected by sheer rocks on all sides so that he is protected when he is most vulnerable. @@ It leapt to my mind when Hiccup mentioned the idea of dragon defenses. We can do the same at Dragon's Edge. Let's gather some boulders around the island. If you can find 5 suitable boulders and I do the same, we might have enough to get something going here!</Text><ID>930082</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Finished!</Text><ID>10763</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBoulders</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather boulders around Dragon's Edge</Text><ID>930080</ID></Title><Desc><Text>Gather boulders around Dragon's Edge</Text><ID>930080</ID></Desc></Data> + 0 + false + + + 2764 + RTTE04_Dragons02T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons02T08.unity3d/PfGrpRTTEDragons02T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I've started a little pile at the base. Come see my handiwork!</Text><ID>930086</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug approves! That means we have the start of a respectable boulder collection. If we add your boulders to mine, that means that we'll be ready to start our little project.</Text><ID>930087</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos04</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Fishlegs by his boulders</Text><ID>930084</ID></Title><Desc><Text>Talk to Fishlegs at the base of Dragon's Edge. He is standing by his boulders</Text><ID>941818</ID></Desc></Data> + 0 + false + + + 2976 + RTTE04_Dragons02T09 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWPrickleboggle</Asset><Location>PfMarker_Prickleboggle02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Our boulders are Gronckle approved and I bet we can get the approval of another Boulder Class dragon! We're going to make the strongest wall that we can possibly make and it’s going to stand up to any possible attack. @@ We're going to need the expert at destruction: the Catastrophic Quaken! I don't know if you've seen him in action, but he can roll into a ball and slam into walls with all his force. If the wall can stand up to his attack, it can stand up to anything! @@ Can you go back to Dark Deep and convince them to come back with you? You might be able to mount the Prickleboggle and bring them both over.</Text><ID>930090</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Prickleboggle remembers you!</Text><ID>930091</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWPrickleboggle</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWPrickleboggleHeal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go to Dark Deep and mount the Prickleboggle</Text><ID>930088</ID></Title><Desc><Text>Go to Dark Deep and mount the Prickleboggle</Text><ID>930088</ID></Desc></Data> + 0 + false + + + 2977 + RTTE04_Dragons02T10 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_FishlegsWall</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_Snotlout_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should fly back to Dragon's Edge and meet Fishlegs.</Text><ID>930094</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Great! Now we'll be able to test this wall.</Text><ID>932828</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons02T10CS.unity3d/PfGrpRTTEDragons02T10CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow! We did it! We made a Quaken Approved wall! Good job, {{Name}}, I'm sure this will help protect us in the future!</Text><ID>933395</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Come back to Dragon's Edge</Text><ID>930092</ID></Title><Desc><Text>Meet Fishlegs back at Dragon's Edge</Text><ID>941819</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203580 + true + 100 + 100 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 203580 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203580 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203580 + true + 350 + 350 + + 0 + +
+ false +
+ + 2207 + RTTE05_Dragons03 + 11 +

+ <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons03T00.unity3d/PfGrpRTTEDragons03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons03T00SnowWraith.unity3d/PfGrpRTTEDragons03T00SnowWraith</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Hunter in the Blizzard</Text><ID>927492</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2206 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2207 + 2765 + 0 + + + 1 + 2207 + 2766 + 0 + + + 1 + 2207 + 2767 + 0 + + + 1 + 2207 + 2768 + 0 + + + 1 + 2207 + 2769 + 0 + + + 1 + 2207 + 2770 + 0 + + + 1 + 2207 + 2771 + 0 + + + 1 + 2207 + 2773 + 0 + + + 1 + 2207 + 2772 + 0 + + + 1 + 2207 + 2774 + 0 + + + 1 + 2207 + 2775 + 0 + + + 1 + 2207 + 2776 + 0 + + + + 1 + 203591 + 0 + + 2765 + RTTE05_Dragons03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Heather needs your help! Can you go to Glacier Island? I'll go to Dark Deep and send the Prickleboggle to help, just in case you need the backup.</Text><ID>930099</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey {{Name}}. I was wracking my brain to find any advantages we could hold over the Dragon Hunters, and I remembered my book of notes. It held a lot of insight on the Dragon Hunter defenses and ways, and I just can't find it! So I thought maybe I dropped it on this island.</Text><ID>930100</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Heather at Glacier Island</Text><ID>930097</ID></Title><Desc><Text>Find Heather at Glacier Island</Text><ID>930097</ID></Desc></Data> + 0 + false + + + 2766 + RTTE05_Dragons03T02 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>PfDWAlchemist</Asset><Location>PfMarker_Heather</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's when I found out that we have another problem on our hands. Do you remember the Snow Wraith? Well, he's in trouble. I'll show you what I mean. {{Input}} on me and I will lead you to his home.</Text><ID>930103</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBDeathsong.unity3d/PfUiMissionActionDBDeathsong</Asset><NPC>PfDWAlchemist</NPC><Text>These are Speed Stinger footprints. They're a really aggressive species that brings a lot of trouble. Judging by the patterns, it looks like there was a vicious fight here, doesn't it? @@ The Speed Stingers migrate from place to place often, though I'm not sure why. Maybe they're searching for new prey? @@ Wherever they arrive, they are an [c][3eebff]invasive species[/c][ffffff]; they can disrupt the ecosystem by taking food out of the ecosystem and wrecking the food chain. We saw how damaging an invasive species could be when we faced the Death Song at Berk. </Text><ID>930104</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnowWraithEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Spline</Key><Value>SnowWraith_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} Heather and follow her to the Snow Wraith cave</Text><ID>930101</ID></Title><Desc><Text>{{Input}} on Heather and follow her to the Snow Wraith cave</Text><ID>941820</ID></Desc><Reminder><Text>Keep up with Heather!</Text><ID>936404</ID></Reminder><Failure><Text>Oh no! She left you behind!</Text><ID>936413</ID></Failure></Data> + 0 + false + + + 2767 + RTTE05_Dragons03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I hope the Snow Wraith wasn't badly injured in his fight with the Speed Stingers. I know that he's tried to attack us in the past, but it was in his nature to protect his territory. I don't hold it against him! @@ Will you check out the cave and see if he's okay?</Text><ID>930107</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>He's not here. Where could he be? </Text><ID>930108</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnowWraithNest</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Snow Wraith in the cave--carefully</Text><ID>930105</ID></Title><Desc><Text>Enter the cave</Text><ID>936749</ID></Desc></Data> + 0 + false + + + 2768 + RTTE05_Dragons03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's look for the Snow Wraith. This might be really difficult; since the Snow Wraith uses camouflage to blend in with the surroundings. He'll be really hard to spot. </Text><ID>930111</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Of course we'd find the Snow Wraith and my book in the same place. Just my luck... @@ No matter. I'll bring the Prickleboggle to you, and we'll see if we can improve the Snow Wraith's mood.</Text><ID>930112</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnowWraithHiding</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Snow Wraith on Glacier Island</Text><ID>930109</ID></Title><Desc><Text>Look for the Snow Wraith on Glacier Island</Text><ID>930109</ID></Desc></Data> + 0 + false + + + 2769 + RTTE05_Dragons03T05 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>PfDWAlchemist</Asset><Location>PfMarker_SnowWraithHiding_Outside</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Prickleboggle looks ready to help. You should {{input}} on it and mount it.</Text><ID>930115</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWPrickleboggleHeal</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWPrickleboggleHeal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Prickleboggle and mount him</Text><ID>930113</ID></Title><Desc><Text>{{Input}} on the Prickleboggle</Text><ID>938813</ID></Desc></Data> + 0 + false + + + 2770 + RTTE05_Dragons03T06 + <Data><Setup><Scene>GlacierIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We don't want to spook the Snow Wraith with any more people than necessary. After all, wounded animals don't tend to do well being approached. @@ I'll stay out here while you go in and shoot the Snow Wrath with the Prickleboggle's healing shot, but remember not to get too close!</Text><ID>930118</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The healing blast seems to have done the trick. The Snow Wraith looks much more comfortable now.</Text><ID>930119</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSnowWraith</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSnowWraith</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Snow Wraith with Prickleboggle's healing shot</Text><ID>930116</ID></Title><Desc><Text>Shoot the Snow Wraith with Prickleboggle's healing shot</Text><ID>930116</ID></Desc></Data> + 0 + false + + + 2771 + RTTE05_Dragons03T07 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons03T07.unity3d/PfGrpRTTEDragons03T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Slowly—don't startle the dragon – pick up my book, please.</Text><ID>930122</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWBookSingle</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBookSingle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab Heather's book</Text><ID>930120</ID></Title><Desc><Text>Grab Heather's book</Text><ID>930120</ID></Desc></Data> + 0 + false + + + 2772 + RTTE05_Dragons03T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It was really hard to find the Snow Wraith because it has a special color on its skin to blend in with the environment. This is called [c][3eebff]camouflage.[/c][ffffff] The Snow Wraith uses it to sneak up on prey and hide from predators. @@ Can we do something like that to help base defenses at Dragon's Edge? Talk to Hiccup at Dragon's Edge and see if there's anything to be done.</Text><ID>930125</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDo</Asset><NPC>PfDWHiccup</NPC><Text>That's a neat idea!</Text><ID>930126</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Title><Desc><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Desc></Data> + 0 + false + + + 2773 + RTTE05_Dragons03T08 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>PfDWAlchemist</Asset><Location>PfMarker_SnowWraithHiding_Outside</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Good! Let's leave the Snow Wraith in peace and give it some room. Would you come out here and give me the book?</Text><ID>930129</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thank you. I wouldn't have gotten this back without you and the Prickleboggle. I'll read it again and see if there are any hints inside that would help us fight the Dragon Hunters.</Text><ID>930130</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>12423</Value></Pair><Pair><Key>ItemDescription</Key><Value>Heather's Book</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the book to Heather</Text><ID>930127</ID></Title><Desc><Text>Give the book to Heather</Text><ID>930127</ID></Desc></Data> + 0 + false + + + 2774 + RTTE05_Dragons03T10 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons03T10.unity3d/PfGrpRTTEDragons03T10</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We should do that to disguise our base defenses, too! To make effective camouflage, we need to make sure the catapult blends into the environment. We have two catapults up at the base right now. One is on the rocky cliff, and one sits near the tree line. @@ I need you to find things to help the catapult look like the rest of the tree line. Hobblegrunt Island had some trees that looked similar to the ones here. Can you look for some branches there so that we can leave the tree line at this island intact? Thanks!</Text><ID>930133</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hiccup told me you came here to gather some items for camouflage on our catapults. @@ This was where you fought off the Dragon Hunters, right? I... I should have been there with you guys. You could have used the extra firepower to fight off those ships.</Text><ID>930134</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherGenPraise02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFoliage</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather foliage on Hobblegrunt Island</Text><ID>930131</ID></Title><Desc><Text>Gather foliage onHobblegrunt Island</Text><ID>941821</ID></Desc></Data> + 0 + false + + + 2775 + RTTE05_Dragons03T11 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons03T11.unity3d/PfGrpRTTEDragons03T11</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I shouldn't dwell on the past. I need to figure out what I can do to make sure their attacks don't succeed in the future... and the camouflage will definitely help. Can you show me what you've been able to find on the island so far?</Text><ID>930137</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Yes, yes. This is going to work very well, I think. These will blend right in with the flora at Outpost Island. Great job finding these! </Text><ID>930138</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>12424</Value></Pair><Pair><Key>ItemDescription</Key><Value>Foliage</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the foliage to Heather</Text><ID>930135</ID></Title><Desc><Text>Give the foliage to Heather</Text><ID>930135</ID></Desc></Data> + 0 + false + + + 2776 + RTTE05_Dragons03T12 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_ByCatapult01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>This is going to be perfect! Meet Ruffnut by the catapult at Dragon's Edge—that is, if you can even find it!</Text><ID>930141</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Ruffnut did a great job installing the camouflage. You can see through the camouflage up close, but I couldn't see the catapult from the water. Invading Dragon Hunters won't even know what hit them, once these catapults start firing from nowhere. It's going to be great! @@ It's nice to be on the base with Astrid and the gang. I feel like Windshear and I need to be out here, making a difference with the gang... I love exploring science as the Alchemist of the school but I figure I can continue pursuing that out here. I just need to figure out where I need to be.</Text><ID>930142</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ByCatapult01</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the catapult at Dragon's Edge</Text><ID>930139</ID></Title><Desc><Text>Go to the catapult at Dragon's Edge</Text><ID>930139</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203591 + true + 100 + 100 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 203591 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203591 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203591 + true + 350 + 350 + + 0 + +
+ false +
+ + 2208 + RTTE06_Dragons04 + 43 +

+ <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons04T00.unity3d/PfGrpRTTEDragons04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Stuck On You</Text><ID>927502</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2207 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2208 + 2778 + 0 + + + 2 + 2208 + 2209 + 0 + + + 1 + 2208 + 2782 + 0 + + + 1 + 2208 + 2783 + 0 + + + 2 + 2208 + 2210 + 0 + + + 1 + 2208 + 2787 + 0 + + + 1 + 2208 + 2788 + 0 + + + 2 + 2208 + 2211 + 0 + + + 1 + 2208 + 2793 + 0 + + + + 1 + 203592 + 0 + + 2209 + RTTE06_Dragons04T02 + 43 +

2208

+ <Data><Offer><Type>Popup</Type><ID>927494</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The Armorwing can't seem to pull those silver ore pieces to himself. Do you think there's a scientific reason why these silver ores don't work? @@ Please help me out! We can grab some samples of different kinds of metals and take them to Heather to test in the Lab. @@ Can you fly around the island and collect some samples of the ores in the area, {{Name}}? We'll need to get a good variety. Let's grab iron ore, gold ore, and silver ore.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>904656</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Good job!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Find ores</Text><ID>927493</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2209 + 2779 + 0 + + + 1 + 2209 + 2780 + 0 + + + 1 + 2209 + 2781 + 0 + + + + 1 + 0 + 0 + + 2779 + RTTE06_Dragons04T02A + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons04T02A.unity3d/PfGrpRTTEDragons04T02A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockIron</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find iron ores at Armorwing Island</Text><ID>930143</ID></Title><Desc><Text>Find iron ores at Armorwing Island</Text><ID>941822</ID></Desc></Data> + 0 + false + + + 2780 + RTTE06_Dragons04T02B + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons04T02B.unity3d/PfGrpRTTEDragons04T02B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockGold</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find gold ores at Armorwing Island</Text><ID>930145</ID></Title><Desc><Text>Find gold ores at Armorwing Island</Text><ID>930145</ID></Desc></Data> + 0 + false + + + 2781 + RTTE06_Dragons04T02C + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons04T02C.unity3d/PfGrpRTTEDragons04T02C</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSilver</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find silver ores at Armorwing Island</Text><ID>930147</ID></Title><Desc><Text>Find silver ores at Armorwing Island</Text><ID>941823</ID></Desc></Data> + 0 + false + + false + + + 2210 + RTTE06_Dragons04T05 + 43 +

2208

+ <Data><Offer><Type>Popup</Type><ID>920610</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's go inside [c][3eebff]The Lab[/c][ffffff].</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927498</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow! Magnets are great, huh? I want to explore more science with it, but we'll save that for next time when a dragon's life isn't on the line.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Enter the lab</Text><ID>927576</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2210 + 2784 + 0 + + + 1 + 2210 + 2785 + 0 + + + 1 + 2210 + 2786 + 0 + + + + 1 + 0 + 0 + + 2784 + RTTE06_Dragons04T05A + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestSilver</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Test magnetism in the Lab</Text><ID>930151</ID></Title><Desc><Text>Test magnetism in the Lab</Text><ID>930151</ID></Desc></Data> + 0 + false + + + 2785 + RTTE06_Dragons04T05B + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestGold</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Test magnetism in the Lab</Text><ID>930151</ID></Title><Desc><Text>Test magnetism in the Lab</Text><ID>930151</ID></Desc></Data> + 0 + false + + + 2786 + RTTE06_Dragons04T05C + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestIron</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Test magnetism in the Lab</Text><ID>930151</ID></Title><Desc><Text>Test magnetism in the Lab</Text><ID>930151</ID></Desc></Data> + 0 + false + + false +
+ + 2211 + RTTE06_Dragons04T08 + 43 +

2208

+ <Data><Offer><Type>Popup</Type><ID>927500</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Perfect! Now, just drop them off one by one on your way back to the Armorwing and he should get the hint. He's like me that way--clever like a Changewing!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons04T14.unity3d/PfGrpRTTEDragons04T14</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927501</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yes, it worked! The Armorwing should be armored up in no time. I did something awesome! I need to go and rub it in Hiccup's face... but I want to stay here and make sure he's getting better.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Place rocks</Text><ID>927499</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2211 + 2789 + 0 + + + 1 + 2211 + 2790 + 0 + + + 1 + 2211 + 2791 + 0 + + + 1 + 2211 + 2792 + 0 + + + + 1 + 0 + 0 + + 2789 + RTTE06_Dragons04T08A + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_IronRock01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IronRock01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Place an iron ore on the trail</Text><ID>930159</ID></Title><Desc><Text>Place an iron ore on the trail</Text><ID>930157</ID></Desc></Data> + 0 + false + + + 2790 + RTTE06_Dragons04T08B + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_IronRock02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IronRock02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Place an iron ore on the trail</Text><ID>930159</ID></Title><Desc><Text>Place an iron ore on the trail</Text><ID>930157</ID></Desc></Data> + 0 + false + + + 2791 + RTTE06_Dragons04T08C + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_IronRock03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IronRock03</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Place an iron ore on the trail</Text><ID>930159</ID></Title><Desc><Text>Place an iron ore on the trail</Text><ID>930157</ID></Desc></Data> + 0 + false + + + 2792 + RTTE06_Dragons04T08D + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_IronRock04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IronRock04</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Place an iron ore on the trail</Text><ID>930159</ID></Title><Desc><Text>Place an iron ore on the trail</Text><ID>930157</ID></Desc></Data> + 0 + false + + false +
+ + 2778 + RTTE06_Dragons04T01 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Do you know what's wrong with your friend Snotlout? He sounds a bit... nutters. He kept rambling on about "he's sick" and "poor armor." It sounds like he might have an obsession, mate. @@ Mental health aside, he asked me to tell you in confidence to meet him at Armorwing Island. It sounds like a bit of fun! I'll follow behind you in my ship, if you don't mind. I could do with a bit of a laugh!</Text><ID>930165</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey {{Name}}, Harald. What are you doing here? Well, since you are here, I can use your help. There's a big problem! @@ I've been keeping an eye on this Armorwing ever since he nearly destroyed a family heirloom and wrecked my relationship with my father. He was doing well, but something is wrong. I think he might be sick! @@ Normally, he attracts metal pieces onto his body and melts them together. He's not attracting enough metal right now, so there are holes in his armor. He has really weak skin so he's in danger!</Text><ID>930166</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Snotlout at Armorwing Island</Text><ID>930163</ID></Title><Desc><Text>Find Snotlout at Armorwing Island</Text><ID>930163</ID></Desc></Data> + 0 + false + + + 2782 + RTTE06_Dragons04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Take the rocks to Heather for testing, {{Name}}. Harald and I will watch the Armorwing and see if we can learn anything else.</Text><ID>930169</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow, the Armorwing sounds like a very interesting dragon. </Text><ID>930170</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>7997</Value></Pair><Pair><Key>ItemDescription</Key><Value>Iron</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>8022</Value></Pair><Pair><Key>ItemDescription</Key><Value>Silver</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>7991</Value></Pair><Pair><Key>ItemDescription</Key><Value>Gold Nugget</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the rocks to Heather at the School</Text><ID>930167</ID></Title><Desc><Text>Give the rocks to Heather </Text><ID>941824</ID></Desc></Data> + 0 + false + + + 2783 + RTTE06_Dragons04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>In nature, there are fields of force like gravity and magnetism that affect all objects. Every object is made up of massive amounts of tiny particles called atoms. Gravity affects all objects uniformly, but magnetic force depends on the properties of these atoms. @@ Depending on these properties, magnetic force can have stronger or weaker affects. @@ A magnet is an object that generates a magnetic field that is invisible to the human eye and they only attract certain types of metals. Other materials such as glass or wood aren't attracted! @@ Can we figure out which materials are more, or less, affected by magnetism? Let's create a hypothesis on what metals would test as magnetic. {{Input}} on me!</Text><ID>930173</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice!</Text><ID>930174</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesisArmorWing.unity3d/PfUiHypothesisArmorWing</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Hypothesis</Text><ID>922392</ID></Title><Desc><Text>Create a hypothesis with Heather</Text><ID>941825</ID></Desc></Data> + 0 + false + + + 2787 + RTTE06_Dragons04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Metals such as iron, nickel, and cobalt are attracted to magnets. Many metals only have very weak attraction to magnets. These are metals such as copper, silver, aluminum and more. @@ You should be able to help the Armorwing with what you have learned. Go back to the island and tell Snotlout!</Text><ID>930177</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wow, this magnetism thing is crazy! It's like a super power, and [c][3eebff]my[/c][ffffff] Armorwing has it. No wonder my dragons have it. So these silver rocks aren't magnetic, but the iron rocks are. We need to figure out a way to lead the Armorwing to the iron. Hmm...</Text><ID>930178</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Armorwing Island</Text><ID>930175</ID></Title><Desc><Text>Return to Armorwing Island</Text><ID>930175</ID></Desc></Data> + 0 + false + + + 2788 + RTTE06_Dragons04T07 + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons04T07.unity3d/PfGrpRTTEDragons04T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>If I may make a suggestion, mate... how about setting a trail of iron ore that the Armorwing can follow? We could lead the thing to a place with tons of iron. It would be like setting "magnetic breadcrumbs." @@ You know the way, {{Name}}. I figure you should be able to make the trail with 4 iron ores.</Text><ID>930181</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockIron</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 4 iron ores at Armorwing Island</Text><ID>930179</ID></Title><Desc><Text>Find 4 iron ores at Armorwing Island</Text><ID>930179</ID></Desc></Data> + 0 + false + + + 2793 + RTTE06_Dragons04T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well, the victorious vikings should return to Dragon's Edge and reap the spoils of their actions! I will meet you back there shortly, {{Name}}. I would like to find out more about this odd little magnetic creature. Please go back and tell your leader about what happened.</Text><ID>930184</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, you did an amazing job with Snotlout and Harald. This magnet thing might be something big! We should research it together.</Text><ID>930185</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Title><Desc><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Desc></Data> + 0 + false + + + 125 +

2

+ 0 + + 1 + 25 + 203592 + true + 125 + 125 + + 0 + +
+ + 275 +

1

+ 0 + + 1 + 293 + 203592 + true + 275 + 275 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203592 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203592 + true + 200 + 200 + + 0 + +
+ false +
+ + 2212 + RTTE07.1_Misc01 + 11 +

+ <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEMisc01T00.unity3d/PfGrpRTTEMisc01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Adventures in Dragon Training</Text><ID>927503</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2180 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2212 + 2806 + 0 + + + 1 + 2212 + 2807 + 0 + + + 1 + 2212 + 2808 + 0 + + + 1 + 2212 + 2809 + 0 + + + 1 + 2212 + 2810 + 0 + + + 1 + 2212 + 2811 + 0 + + + 1 + 2212 + 2812 + 0 + + + 1 + 2212 + 2813 + 0 + + + + 1 + 203594 + 0 + + 2806 + RTTE07.1_Misc01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}! What did you do to the Archaeologist? I spoke to him earlier today on my patrol and he sounded like he was at the end of his rope! I thought Fishlegs said you solved his problem. Well, whatever you did, it didn't take. @@ Go back to Mudraker Island and help him out!</Text><ID>930188</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We've stumbled on a whole new problem altogether, {{Name}}. The Mudraker is over his shyness. That is, he is comfortable most of the time. But now he seems to have a major problem with me.</Text><ID>930189</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist at Mudraker Island</Text><ID>930260</ID></Title><Desc><Text>Talk to the Archaeologist at Mudraker Island</Text><ID>930215</ID></Desc></Data> + 0 + false + + + 2807 + RTTE07.1_Misc01T02 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEMisc01T02.unity3d/PfGrpRTTEMisc01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Look! Little Muddie threw mud all over my camp. Why does he hate me so much, {{Name}}? Why?! @@ Oh, I named him Muddie. It might not be an appropriate name for a dragon, but it seems to suit him. @@ Will you help me clean up my camp? I need to clear the mud from my stuff.</Text><ID>930192</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>He looked so happy to throw mud on my stuff. He must really enjoy upsetting me.</Text><ID>930193</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMudChunks</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather mud from the Archaeologist's camp</Text><ID>930190</ID></Title><Desc><Text>Gather mud from the Archaeologist's camp</Text><ID>930190</ID></Desc></Data> + 0 + false + + + 2808 + RTTE07.1_Misc01T03 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEMisc01T03.unity3d/PfGrpRTTEMisc01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The mud is just the start of the problem, {{Name}}. Muddie took my pickaxe and ran off with it. I don't know why he would steal my pickaxe. Doesn't he know that I need that to continue excavating the site? @@ I've been trying to find it but I haven't had any luck. Will you help me look for it?</Text><ID>930196</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This looks like the Archaeologist's pickaxe!</Text><ID>930197</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWArchPickAxe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Archaeologist's pickaxe</Text><ID>930194</ID></Title><Desc><Text>Find the Archaeologist's pickaxe</Text><ID>930194</ID></Desc></Data> + 0 + false + + + 2809 + RTTE07.1_Misc01T04 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEMisc01T04.unity3d/PfGrpRTTEMisc01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There was something out of place by the swampy area. You should pick it up.</Text><ID>930200</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWClueTablet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look at the object on the ground near the pickaxe</Text><ID>930198</ID></Title><Desc><Text>Look at the object on the ground near the pickaxe</Text><ID>930198</ID></Desc></Data> + 0 + false + + + 2810 + RTTE07.1_Misc01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should return to the Archaeologist and give him both of the objects you discovered.</Text><ID>930203</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you for finding my pickaxe. And you found this... object, sitting out in the sun? How peculiar. @@ This is amazing, {{Name}}. This was excavated from the dig site beside me, I'm sure of it. It fits the style and age of the other objects from this ancient village. But who could have dug it out of the site? I am the only Viking on this island.</Text><ID>930204</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>12151</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pickaxe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>12425</Value></Pair><Pair><Key>ItemDescription</Key><Value>Viking Artifact</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the items to the Archaeologist</Text><ID>930201</ID></Title><Desc><Text>Return the Archaeologist's pickaxe and give him the strange artifact you found</Text><ID>941826</ID></Desc></Data> + 0 + false + + + 2811 + RTTE07.1_Misc01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh, what a fool I've been! I've been thinking of the Mudraker as I would a human. He doesn't want to ruin my stuff with mud, he is just being a silly, playful dragon! He must have watched me excavate those things out of the dig site and wanted to help me out. He doesn't hate me after all! @@ I need your help, {{Name}}! Can you help me find the Mudraker? He deserves an apology for my grumpy nature for the last few days. Perhaps we can use the sound of an axe to call him out again...</Text><ID>930207</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEMisc01T06CS.unity3d/PfGrpRTTEMisc01T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfQuestRock</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>QuestRockScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your axe on the rock to call the Mudraker</Text><ID>930205</ID></Title><Desc><Text>Use your axe on the rock to call the Mudraker</Text><ID>930205</ID></Desc></Data> + 0 + false + + + 2812 + RTTE07.1_Misc01T07 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist_Cutscenes</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEMisc01T07CS.unity3d/PfGrpRTTEMisc01T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh dear! I don't know if I'm ready for this step quite yet.</Text><ID>930210</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Watch the Mudraker</Text><ID>930208</ID></Title><Desc><Text>Watch the Mudraker</Text><ID>930208</ID></Desc></Data> + 0 + false + + + 2813 + RTTE07.1_Misc01T08 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWMudraker</Asset><Location>PfMarker_Mudraker_Bonding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well! I'm happy to be Muddie's friend, but I don't know if I am ready to train a dragon quite yet. Maybe I will spend more time with Muddie before we take the next step together. @@ Thank you for your help. I couldn't have done this without you. Please tell Astrid she doesn't need to worry for me anymore.</Text><ID>930213</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I see. It sounds like the Archaeologist didn't know how to handle the "overeager puppy" stage of dragon friendship. I have to admit, it took me a really long time to get used to Stormfly fetching sticks and playing with Toothless! She’s so lovably goofy, my Stormfly. @@ Dragon training is not a simple task. I hope the Archaeologist is ready for more troubles in the future. </Text><ID>930214</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Title><Desc><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203594 + true + 100 + 100 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 203594 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203594 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203594 + true + 350 + 350 + + 0 + +
+ false +
+ + 2213 + RTTE07.2_Deathsong09 + 4 +

+ <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpRTTEDeathsong09T00.unity3d/PfGrpRTTEDeathsong09T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDeathsong09T09.unity3d/PfGrpRTTEDeathsong09T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Poor Archaeologist</Text><ID>927504</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2212 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2213 + 2814 + 0 + + + 1 + 2213 + 2815 + 0 + + + 1 + 2213 + 2816 + 0 + + + 1 + 2213 + 2817 + 0 + + + 1 + 2213 + 2818 + 0 + + + 1 + 2213 + 2819 + 0 + + + 1 + 2213 + 2820 + 0 + + + 1 + 2213 + 2821 + 0 + + + 1 + 2213 + 2822 + 0 + + + 1 + 2213 + 2823 + 0 + + + 1 + 2213 + 2824 + 0 + + + 1 + 2213 + 2975 + 0 + + + + 1 + 203595 + 0 + + 2814 + RTTE07.2_Deathsong09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey {{Name}}! The Archaeologist asked me to tell you to stop by Mudraker Island. I'm not sure what it's about, but he said that only you would be able to help him. @@ I hope you aren't secretly training cool dragons without me! Ha ha.</Text><ID>930217</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The Mudraker is still being playful. He hasn't calmed down at all, even though I've been throwing sticks for him. His latest "fun" stunt is to grab my shoes and toss them in the mud. I've lost quite a few tools to these deep muddy swamps. @@ I wonder if the dragon just has too much energy and is falling into mischief because it has no one else to play with. To appropriate an old phrase, idle "claws" are Loki's playthings.</Text><ID>930218</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist at Mudraker Island</Text><ID>930260</ID></Title><Desc><Text>Talk to the Archaeologist at Mudraker Island</Text><ID>930215</ID></Desc></Data> + 0 + false + + + 2815 + RTTE07.2_Deathsong09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I don't know. Perhaps this is the price of having the Mudraker as a friend. @@ I'm too embarrassed to bother Hiccup or Astrid with this. Would you go to the School and ask Heather for her advice? She generally has some good ideas.</Text><ID>930221</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>What an interesting dilemma! Some dragons are more mischievous than others. Perhaps the Archaeologist made a cheeky friend. That said, it's worth testing his hypothesis to see if having a friend will make the Mudraker calm down!</Text><ID>930222</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the school</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather at the school</Text><ID>929137</ID></Desc></Data> + 0 + false + + + 2816 + RTTE07.2_Deathsong09T03 + <Data><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBDeathsong.unity3d/PfUiMissionActionDBDeathsong</Asset><NPC>PfDWAlchemist</NPC><Text>Thunderdrums are Tidal Class dragons that also rely on sonic-based fireballs. Most dragons generate kinetic energy in the form of heat, but both the Mudraker and the Thunderdrum generate energy in the form of sound waves. Maybe the two dragons would be good friends because they're similar dragons! @@ Thornado helped us against the Death Song... I bet he would be willing to help us again. I saw him at the Ship Graveyard recently. You should try to find him there.</Text><ID>930225</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Ship Graveyard</Text><ID>930223</ID></Title><Desc><Text>Go to the Ship Graveyard</Text><ID>930223</ID></Desc></Data> + 0 + false + + + 2817 + RTTE07.2_Deathsong09T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Thunderdrum must be somewhere in this place.</Text><ID>930228</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You found Bing, Bam, and Boom! </Text><ID>930229</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RTTEThunderdrum</Value></Pair><Pair><Key>Range</Key><Value>11</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Thornado</Text><ID>930226</ID></Title><Desc><Text>Look for Thornado</Text><ID>930226</ID></Desc></Data> + 0 + false + + + 2818 + RTTE07.2_Deathsong09T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It seems these dragons remember you from the last adventure. That will make this much easier! You should make a connection with the Thunderdrum babies and {{input}} on Bing.</Text><ID>930232</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It worked!</Text><ID>930233</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBingNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Bing</Text><ID>930230</ID></Title><Desc><Text>{{Input}} on Bing</Text><ID>930230</ID></Desc></Data> + 0 + false + + + 2819 + RTTE07.2_Deathsong09T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The dragons seem eager to get started! You should follow them into the air and then lead them to Mudraker Island.</Text><ID>930236</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RTTEExit</Value></Pair><Pair><Key>Range</Key><Value>13</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly into the air after the Thunderdrums</Text><ID>930234</ID></Title><Desc><Text>Fly into the air after the Thunderdrums</Text><ID>930234</ID></Desc></Data> + 0 + false + + + 2820 + RTTE07.2_Deathsong09T07 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWBingNPC</Asset><Location>PfMarker_Bing</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{Input}} on Bing and lead the dragons to the Mudraker.</Text><ID>930239</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Mudraker_Bonding</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBingNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Bing and lead him to the Mudraker</Text><ID>930237</ID></Title><Desc><Text>{{Input}} on Bing and lead the Thunderdrums to the Mudraker</Text><ID>941827</ID></Desc><Reminder><Text>Don't leave Bing behind!</Text><ID>936406</ID></Reminder><Failure><Text>Oh no! You left the Thunderdrums behind!</Text><ID>936407</ID></Failure></Data> + 0 + false + + + 2821 + RTTE07.2_Deathsong09T08 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should find the Archaeologist and tell him who you've brought to the island.</Text><ID>930242</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You brought Muddie new friends! How wonderful! I'm sure Muddie will be calmer, now that he can expend some of his energy with playmates.</Text><ID>930243</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell the Archaeologist the good news</Text><ID>930240</ID></Title><Desc><Text>Tell the Archaeologist the good news</Text><ID>930240</ID></Desc></Data> + 0 + false + + + 2822 + RTTE07.2_Deathsong09T09 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh dear. Did you hear that? Can you go and find out what it could be? I have a suspicion it might not be the best news…</Text><ID>930246</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWMissionSoundsDO.unity3d/SndDragFlyBreakRock</Asset><NPC>PfDWArchaeologist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Camp</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the source of the ruckus</Text><ID>930244</ID></Title><Desc><Text>Find the source of the ruckus</Text><ID>930244</ID></Desc></Data> + 0 + false + + + 2823 + RTTE07.2_Deathsong09T10 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>These Thunderdrums need to calm down, or they will break all of the Archaeologist’s stuff! {{Input}} on Bing and calm him down.</Text><ID>930249</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBingNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Bing to try to calm him down</Text><ID>930247</ID></Title><Desc><Text>{{Input}} on Bing to try to calm him down</Text><ID>930247</ID></Desc></Data> + 0 + false + + + 2824 + RTTE07.2_Deathsong09T11 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It’s no use. The babies are too happy to find a new friend. @@ You should talk to the Archaeologist. Maybe you should apologize? Did you just make things worse for the poor fellow?</Text><ID>930252</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Visit the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Visit the Archaeologist</Text><ID>941828</ID></Desc></Data> + 0 + false + + + 2975 + RTTE07.2_Deathsong09T12 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's nice and lively to have these dragons here! Sure, they might make things... interesting, but I'm sure they'll get tired of creating a ruckus after a little while. After all, they're just baby dragons, and all babies tend to get tired after a while! It's very nice to see Muddie so happy. @@ Thank you, {{Name}}.</Text><ID>930255</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to the Archaeologist</Text><ID>930253</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 203595 + true + 75 + 75 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 203595 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203595 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203595 + true + 50 + 50 + + 0 + +
+ false +
+ + 2215 + RTTE09_Villains02 + 43 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dragon Hunter Troubles</Text><ID>927514</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2178 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2215 + 2825 + 0 + + + 1 + 2215 + 2826 + 0 + + + 2 + 2215 + 2216 + 0 + + + 1 + 2215 + 2830 + 0 + + + 1 + 2215 + 2831 + 0 + + + 1 + 2215 + 2832 + 0 + + + 1 + 2215 + 2833 + 0 + + + 1 + 2215 + 2834 + 0 + + + + 1 + 203596 + 0 + + 2216 + RTTE09_Villains02T03 + 43 +

2215

+ <Data><Offer><Type>Popup</Type><ID>927512</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you use your axe to break those locks from the cages?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains02T02.unity3d/PfGrpRTTEVillains02T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927513</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job guys. Right now, these dragons are missing from their ecosystems, drastically altering the food chain where they live. This will make other animals retreat to new areas and cause other species to flourish. All of these environments and subsystems are interconnected, and changes in one system can produce unforeseen changes in others. @@ Hopefully these dragons will return to their ecosystems and thrive while we stop the Dragon Hunters. If these Dragon Hunters keep trapping dragons at this rate, they're going to permanently alter these ecosystems. The animals, plants, and even dragons may disappear from this area. @@ We Vikings have the power to help or harm our world... it's up to us!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Free the dragons</Text><ID>927511</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2216 + 2827 + 0 + + + 1 + 2216 + 2828 + 0 + + + 1 + 2216 + 2829 + 0 + + + + 1 + 0 + 0 + + 2827 + RTTE09_Villains02T03A + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cage1</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DoorCageOpenScripts01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your axe to shatter the cage door</Text><ID>930322</ID></Title><Desc><Text>Use your axe to shatter the cage door</Text><ID>930325</ID></Desc></Data> + 0 + false + + + 2828 + RTTE09_Villains02T03B + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cage2</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DoorCageOpenScripts02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your axe to shatter the cage door</Text><ID>930324</ID></Title><Desc><Text>Use your axe to shatter the cage door</Text><ID>930325</ID></Desc></Data> + 0 + false + + + 2829 + RTTE09_Villains02T03C + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cage3</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DoorCageOpenScripts03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your axe to shatter the cage door</Text><ID>930325</ID></Title><Desc><Text>Use your axe to shatter the cage door</Text><ID>930325</ID></Desc></Data> + 0 + false + + false + + + 2825 + RTTE09_Villains02T01 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_Harald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Stables</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Stables02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>{{Name}}, I'm glad I caught you. Dragons need your help! We're going to need dragon expertise to solve it, and that includes you, the premiere School of Dragons student! @@ I've asked the others to meet in front of the stables. {{Input}} on me and lead the way, friend!</Text><ID>930329</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I was exploring the seas on my ship when I spotted the Dragon Hunters in action. Those cowards have set up camp at Hobblegrunt Island once more! They seem to be gathering wounded dragons on that island... @@ It looked like the poachers were away from the base, but they could return at any moment. If you hurry, you can rescue the dragons before they get back!</Text><ID>930330</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Stables</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead Harald to the stables</Text><ID>930327</ID></Title><Desc><Text>{{Input}} on Harald and lead him to the stables</Text><ID>941833</ID></Desc><Reminder><Text>Stay close to Harald!</Text><ID>936440</ID></Reminder><Failure><Text>Oh no! You left Harald behind!</Text><ID>936411</ID></Failure></Data> + 0 + false + + + 2826 + RTTE09_Villains02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ugh, Dragon Hunters. They won't beat me--I mean us--again! We need to go right away and save those dragons before they return.</Text><ID>932832</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>If time is of the essence, friends, I'd only hold you back. I can't ride dragons like you fine lot. I should stay behind on this one.</Text><ID>932934</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That makes sense. You've helped enough by finding this place, Harald. Thanks to you, we'll be able to pull one over on the Dragon Hunters this time!</Text><ID>932935</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well, I do what little I can to help. But what am I jabbering on for? Now hurry! Go to Hobblegrunt Island!</Text><ID>932936</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, that's a lot of dragons. We have our work cut out for us. We'll need to free all of these dragons before the Dragon Hunters return. If we're fast enough, we can avoid having to fight.</Text><ID>930337</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Hobblegrunt Island</Text><ID>930455</ID></Title><Desc><Text>Go to Hobblegrunt Island</Text><ID>930455</ID></Desc></Data> + 0 + false + + + 2830 + RTTE09_Villains02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Mission accomplished. Let's regroup at Dragon's Edge and tell Harald the good news.</Text><ID>930340</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Huh. Where's Harald? I wonder if he's taking a nap somewhere. Typical! I wanted to tell him how well I did on our trip and he's not even here.</Text><ID>930341</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Dragon's Edge</Text><ID>930497</ID></Title><Desc><Text>Return to Dragon's Edge</Text><ID>930497</ID></Desc></Data> + 0 + false + + + 2831 + RTTE09_Villains02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I didn't see his ship docked on our island when I flew in... @@ I had a weird feeling about him before, but I let it slide because he was so helpful. {{Name}}, we need to look around the island for Harald. Can you check to see if he is down by the docks?</Text><ID>930344</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Weren't all the supplies here? Where did they go?</Text><ID>930345</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Escort</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald by the docks</Text><ID>930342</ID></Title><Desc><Text>Look for Harald by the docks</Text><ID>930342</ID></Desc></Data> + 0 + false + + + 2832 + RTTE09_Villains02T06 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Stables</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Does Fishlegs know what's going on?</Text><ID>930348</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hey {{Name}}. Did you take the supplies from the stables? I wanted to give Meatlug a rubdown after a hard workout but they're not here. That's odd. @@ Oh, you were looking for Harald? I haven't seen him.</Text><ID>930349</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>What's going on? Talk to Fishlegs</Text><ID>930346</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 2833 + RTTE09_Villains02T07 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_Clubhouse01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Clubhouse02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Maybe he went out to feed his Terrible Terror, Leopold, and just came back. Why don't you go back to the Clubhouse?</Text><ID>930352</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>This is a travesty! No, I haven't seen Harald here or inside the clubhouse. Actually, it looks pretty bad in there. Looks like someone took all the furniture. Hiccup should probably look into that.</Text><ID>932833</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's not the travesty! [c][3eebff]SOMEONE TOOK OUR ROCKS.[/c][ffffff] We were getting together an amazing collection of boulders to throw at Dragon Hunters, and they're all missing. Who would do such a terrible thing? Is there no justice in the world?!</Text><ID>932937</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutInsult01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Clubhouse</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald at the Clubhouse</Text><ID>930350</ID></Title><Desc><Text>Look for Harald at the Clubhouse</Text><ID>930350</ID></Desc></Data> + 0 + false + + + 2834 + RTTE09_Villains02T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains02T08.unity3d/PfGrpRTTEVillains02T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_HiccupHouse02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupHouse01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Someone needs to pay for this! {{Name}}, talk to Hiccup in front of his hut and see what he's going to do about this. @@ Oh, I thought I saw Leopold there too. Maybe that would be the answer to your question.</Text><ID>930357</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is bad. Oh, this is very, very bad. Harald took everything. Harald stole [c][3eebff]everything[/c][ffffff]. He took the traps that we were preparing to defend against Dragon Hunters... he also picked the lock and stole the Book of Dragons. We need to get it back right away.</Text><ID>932834</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains02T08CS.unity3d/PfGrpRTTEVillains02T08CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The cheek of this guy! His Terrible Terror has a ransom note for us. He wants the telescope in return for the Book of Dragons. We need to stop this guy.</Text><ID>933396</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 203596 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 203596 + true + 300 + 300 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 203596 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203596 + true + 50 + 50 + + 0 + +
+ false +
+ + 2217 + RTTE10_DragonsEdge02 + 4 +

+ <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge02T00.unity3d/PfGrpRTTEDragonsEdge02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Pirate on the Run</Text><ID>927516</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2215 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2217 + 2835 + 0 + + + 1 + 2217 + 2837 + 0 + + + 1 + 2217 + 2836 + 0 + + + 1 + 2217 + 2838 + 0 + + + 1 + 2217 + 2839 + 0 + + + 1 + 2217 + 2840 + 0 + + + 1 + 2217 + 2841 + 0 + + + + 1 + 203671 + 0 + + 2835 + RTTE10_DragonsEdge02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We might have a really big problem on our hands. We can't defend ourselves properly because Harald took everything. He even took the weapons we confiscated from the Dragon Hunters on Dark Deep.</Text><ID>932835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh no. This means that the little thief has the dragon root arrows. We need to make sure that the dragons around Dragon's Edge are safe! We need to check all of the islands. Go to Armorwing Island, {{Name}}. I'll send Snotlout as backup right after you.</Text><ID>932939</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This place is quiet--too quiet. I haven't seen any sign of the Armorwing yet.</Text><ID>930384</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Armorwing Island</Text><ID>930380</ID></Title><Desc><Text>Go to Armorwing Island</Text><ID>930380</ID></Desc></Data> + 0 + false + + + 2836 + RTTE10_DragonsEdge02T02 + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_SunningSpot</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I don't know... maybe we can find him if we get higher elevation. Fly up the mountain and see if you spot my dragon.</Text><ID>930387</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This is the Armorwing's favorite sunning spot. He likes to stretch out here and bask in the sun.</Text><ID>930388</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SunningSpot</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Armorwing at a very high location</Text><ID>930385</ID></Title><Desc><Text>Look for the highest spot at Armorwing Island</Text><ID>941834</ID></Desc></Data> + 0 + false + + + 2837 + RTTE10_DragonsEdge02T03 + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Dragons04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Do you remember where you were when you saw the Armorwing when he was sick? Maybe he's retreated somewhere because he doesn't feel good. Can you see if there are any clues of the Armorwing there?</Text><ID>930391</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>No luck... Wait a second. Harald was here with us, and he was really interested in the magnetism of the Armorwing. He saw the Armorwing as it went to the area with the iron ore.</Text><ID>930392</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Dragons04</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Armorwing where you saw him last</Text><ID>930389</ID></Title><Desc><Text>Look for the Armorwing where you saw him last</Text><ID>930389</ID></Desc></Data> + 0 + false + + + 2838 + RTTE10_DragonsEdge02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The iron ore! Of course, Armorwing would be there! Quick, get over to the iron ore deposits!</Text><ID>930395</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh no... Dragon Hunter arrows. We're too late! Harald must have already captured the Armorwing. @@ Harald is going to face the full fury of Snotlout Jorgenson when I get my hands on him!</Text><ID>930396</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ore02-Iron</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the iron ore deposits</Text><ID>930393</ID></Title><Desc><Text>Go to the iron ore deposits</Text><ID>930393</ID></Desc></Data> + 0 + false + + + 2839 + RTTE10_DragonsEdge02T05 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge02T05.unity3d/PfGrpRTTEDragonsEdge02T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'll stay here and look for clues that might tell us where he went. You should go help Fishlegs at Dark Deep. Maybe you'll get there in time to stop Harald!</Text><ID>930399</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDo</Asset><NPC>PfDWFishlegs</NPC><Text>Did you just come from Armorwing Island? Is everything okay... oh no. @@ I think Harald might have already taken the Catastrophic Quaken too. He's missing, and I don't think he'd leave the Prickleboggle unprotected by himself. The poor Prickleboggle... he looks so lost without his buddy.</Text><ID>930400</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CampFishlegs</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dark Deep and talk to Fishlegs</Text><ID>930397</ID></Title><Desc><Text>Go to Dark Deep and talk to Fishlegs</Text><ID>941835</ID></Desc></Data> + 0 + false + + + 2840 + RTTE10_DragonsEdge02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Quaken was able to fight off a whole group of Dragon Hunters the last time. He must have let Harald get close because he was one of us when we came to help him the last time. He pretended to be a friend then stabbed him in the back... like he did with us. @@ I don't know how the twins are doing, but they should be returning to Dragon's Edge by now. Can you go back and talk to Astrid about the stuff that happened here?</Text><ID>930403</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I just got back from Scuttleclaw Island. It looks like he didn't grab any dragons there, and the twins said the Snaptrapper and Zippleback are safe... which means he just took the Armorwing and the Catastrophic Quaken. "Just." ARGH! @@ I knew there was something off about that guy! I should have trusted my instincts. @@ I wonder if he had any help with the heist. He stole a lot of things. Do you think... maybe the Archaeologist...</Text><ID>930404</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Title><Desc><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Desc></Data> + 0 + false + + + 2841 + RTTE10_DragonsEdge02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I want to make sure Stormfly feels fine. We flew really hard to the island and back. Can you tell Hiccup what we've learned?</Text><ID>930407</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Harald may have stolen from us, but he didn't take everything. We've still got each other, and it's going to take all of us to catch him. Harald proved he could trick me, but we can beat him at his own game. Together.</Text><ID>930408</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to hiccup about what you've learned</Text><ID>941836</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 203671 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 203671 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203671 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203671 + true + 350 + 350 + + 0 + +
+ false +
+ + 2218 + RTTE10.5_Archaeologist05 + 12 +

+ <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEArchaeologist05T00.unity3d/PfGrpRTTEArchaeologist05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>What About the Archaeologist?</Text><ID>927515</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2217 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2218 + 2842 + 0 + + + 1 + 2218 + 2843 + 0 + + + 1 + 2218 + 2844 + 0 + + + 1 + 2218 + 2845 + 0 + + + 1 + 2218 + 2846 + 0 + + + + 1 + 203672 + 0 + + 2842 + RTTE10.5_Archaeologist05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>As you know, it takes a lot to fool me but Harald managed to do it. It got me to thinking about the Archaeologist. What do we know about that Viking, really? Heck, he won't even live on Dragon's Edge! @@ I bet the Archaeologist is in cahoots with Harald. There's no way that Harald could have beaten me without some expert help! I know I'm right, but we'll need some extra help to reveal the sneak. Let's recruit Fishlegs into our scheme to reveal the Archaeologist's betrayal.</Text><ID>930362</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't know what to think, {{Name}}. I'm sure a friend like the Archaeologist wouldn't betray us. But then again, I thought that Harald could never do such a thing. He was always so interested in hearing my cool theories on dragon evolution!</Text><ID>930363</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about the Archaeologist</Text><ID>930360</ID></Title><Desc><Text>Talk to Fishlegs about the Archaeologist</Text><ID>930360</ID></Desc></Data> + 0 + false + + + 2843 + RTTE10.5_Archaeologist05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Maybe we can put this thought to rest by checking up on Mudraker Island. {{Input}} on the telescope and look through it at the island!</Text><ID>930366</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You saw Harald on the island? But I don't understand. Why would he be there?</Text><ID>930367</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/BFTE01.ogg</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfTelescopeCutscene</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTelescopeCutscene</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the telescope</Text><ID>930364</ID></Title><Desc><Text>Use the telescope</Text><ID>930364</ID></Desc></Data> + 0 + false + + + 2844 + RTTE10.5_Archaeologist05T03 + <Data><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBDeathsong.unity3d/PfUiMissionActionDBDeathsong</Asset><NPC>PfDWFishlegs</NPC><Text>I can't believe that the Archaeologist is a part of a scheme to fool us. He's been a good friend to us, even through difficult times with the Death Song. I don't want to believe it, but if we can see it with our own eyes... @@ No, there must be something else going on here, {{Name}}. We need to go and check it out. I'll let Hiccup and Astrid know that Harald has been spotted. Could you go to Mudraker Island and get an update on the situation there? @@ Umm, be careful!</Text><ID>930370</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Harald's ship is nowhere to be found. Perhaps there was something else happening here.</Text><ID>930371</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Mudraker Island</Text><ID>930368</ID></Title><Desc><Text>Go to Mudraker Island</Text><ID>930368</ID></Desc></Data> + 0 + false + + + 2845 + RTTE10.5_Archaeologist05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should check the waters around the island for clues to where he might have gone. Perhaps he is using the sea stacks to hide while he waits for you to leave the island?</Text><ID>930374</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There is no sign of Harald or his ship. He must be long gone by now.</Text><ID>930375</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SeaStacks</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald's ship by the sea stacks</Text><ID>930372</ID></Title><Desc><Text>Look for Harald's ship by the sea stacks</Text><ID>930372</ID></Desc></Data> + 0 + false + + + 2846 + RTTE10.5_Archaeologist05T05 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Perhaps the Archaeologist is still in the area. You should go to his camp and look for him there.</Text><ID>930378</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}! Thank Odin you're here. Dragon's Edge is in danger! Harald Forkbeard the dreaded pirate has set his sights on these seas. He took all the Viking artifacts I'd excavated and left me in this cage. We need to act right now!</Text><ID>930379</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ArchaeologistTrapped</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArchaeologistTrapped</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Archaeologist</Text><ID>930376</ID></Title><Desc><Text>Look for the Archaeologist</Text><ID>930376</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 203672 + true + 75 + 75 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 203672 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203672 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203672 + true + 50 + 50 + + 0 + +
+ false +
+ + 2219 + RTTE11_DragonsEdge03 + 25 +

+ <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge03T00.unity3d/PfGrpRTTEDragonsEdge03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Legacy of Harald</Text><ID>927525</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2218 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2219 + 2847 + 0 + + + 1 + 2219 + 2848 + 0 + + + 1 + 2219 + 2849 + 0 + + + 1 + 2219 + 2850 + 0 + + + 1 + 2219 + 2851 + 0 + + + 1 + 2219 + 2852 + 0 + + + 2 + 2219 + 2220 + 0 + + + 2 + 2219 + 2221 + 0 + + + 2 + 2219 + 2222 + 0 + + + + 1 + 203597 + 0 + + 2220 + RTTE11_DragonsEdge03T07 + 25 +

2219

+ <Data><Offer><Type>Popup</Type><ID>927518</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'll need your help to put these up at a place where there's a lot of Viking foot traffic. We need to get the word out there so that no one else gets fooled by the thief! Can you put this up on the school building and the entrance of the Hatchery? I'll place one up by the Lab.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Put up posters at the School</Text><ID>927517</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2220 + 2853 + 0 + + + 1 + 2220 + 2854 + 0 + + + + 1 + 0 + 0 + + 2853 + RTTE11_DragonsEdge03T07A + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SchoolPoster01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Put up the WANTED poster at School</Text><ID>930411</ID></Title><Desc><Text>Put up the Harald: Wanted Poster at the School</Text><ID>941837</ID></Desc></Data> + 0 + false + + + 2854 + RTTE11_DragonsEdge03T07B + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SchoolPoster02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Put up the WANTED poster at School</Text><ID>930411</ID></Title><Desc><Text>Put up the Harald: Wanted Poster at the School</Text><ID>941837</ID></Desc></Data> + 0 + false + + false + + + 2221 + RTTE11_DragonsEdge03T08 + 25 +

2219

+ <Data><Offer><Type>Popup</Type><ID>927520</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great! We need to spread the word at Berk, too. Go to Berk and place these posters up by the Great Hall, by the Job Board, and by the docks.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Put up Posters at Berk</Text><ID>927519</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2221 + 2855 + 0 + + + 1 + 2221 + 2856 + 0 + + + + 1 + 0 + 0 + + 2855 + RTTE11_DragonsEdge03T08A + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BerkPoster01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Put up WANTED posters at Berk</Text><ID>930413</ID></Title><Desc><Text>Put up Harald: Wanted poster at Berk</Text><ID>941838</ID></Desc></Data> + 0 + false + + + 2856 + RTTE11_DragonsEdge03T08B + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BerkPoster02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Put up WANTED posters at Berk</Text><ID>930413</ID></Title><Desc><Text>Put up Harald: Wanted posters at Berk</Text><ID>941839</ID></Desc></Data> + 0 + false + + false +
+ + 2222 + RTTE11_DragonsEdge03T09 + 25 +

2219

+ <Data><Offer><Type>Popup</Type><ID>927522</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Now that the School and Berk have warnings up on Harald Forkbeard, you should put them up at Dragon's Edge.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>932565</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Look at his smug face. It's worse than Snotlout's after he won Thawfest. This painting makes me hate him even more. +It's a very good likeness.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932877</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Soon, sister, soon. We'll catch up to him and give him a bit of the Thorston treatment! I promise you, his clothes will itch so much he'll want to jump into a nest of Fireworms to make it stop!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Reward><Asset /></Reward><Title><Text>Put Up posters at Dragon's Edge</Text><ID>927521</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2222 + 2857 + 0 + + + 1 + 2222 + 2858 + 0 + + + + 1 + 0 + 0 + + 2857 + RTTE11_DragonsEdge03T09A + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgePoster01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Put up WANTED posters at Dragon's Edge</Text><ID>930417</ID></Title><Desc><Text>Put up Harald: Wanted posters at Dragon's Edge</Text><ID>941840</ID></Desc></Data> + 0 + false + + + 2858 + RTTE11_DragonsEdge03T09B + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgePoster02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Put up WANTED posters at Dragon's Edge</Text><ID>930417</ID></Title><Desc><Text>Put up Harald: Wanted posters at Dragon's Edge</Text><ID>941840</ID></Desc></Data> + 0 + false + + false +
+ + 2847 + RTTE11_DragonsEdge03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I don't know how it happened. The evil pirate knew exactly how to find me. He sailed into safe harbor without hesitation, captured me, and stole everything from my camp. You should be able to shatter the lock of this cage with your axe.</Text><ID>930423</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Whew! Thank you, my old friend. This experience reminds me of the time I ran into a particularly unfriendly tribe far from here. It's a memory I would much rather forget.</Text><ID>930424</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonCageC</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DoorCageOpenScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use your axe to free the Archaeologist</Text><ID>930421</ID></Title><Desc><Text>Use your axe to free the Archaeologist</Text><ID>930421</ID></Desc></Data> + 0 + false + + + 2848 + RTTE11_DragonsEdge03T02 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I did learn something new! It's the only favorable thing to happen to me in a few weeks, I'm afraid. Little Muddie has great instincts. As soon as Harald trapped me in this cage, Little Muddie knew that there was trouble afoot. He went to hide far away from the hunter. What a smart little dragon! @@ Can you find him at his swamp and make sure that Harald didn't catch up to him? Use your axe against his rock to make one of his favorite noises. I'm sure he'll poke his head out if he's nearby.</Text><ID>930427</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons05T09CS.unity3d/PfGrpRTTEDragons05T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There's my clever boy!</Text><ID>930428</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfQuestRock</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>QuestRockScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Hit the rock at Muddie's favorite swamp</Text><ID>930425</ID></Title><Desc><Text>Hit the rock at Muddie's favorite swamp</Text><ID>930425</ID></Desc></Data> + 0 + false + + + 2849 + RTTE11_DragonsEdge03T03 + <Data><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge03T02.unity3d/PfGrpRTTEDragonsEdge03T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Come back to camp, {{Name}}. Our friends have arrived. Backup in case the dreaded Harald Forkbeard was still around, I gather?</Text><ID>930431</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I trusted Harald because he seemed so friendly about dragons, and instead he took advantage of us. I even let him make me doubt you. I'm sorry.</Text><ID>932837</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No, it's my fault. I shouldn't have let down my guard. I should have known that we were letting a snake into our midst.</Text><ID>932940</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Many great Vikings have been fooled by Harald Forkbeard. We've crossed paths many times, and he's never failed to prove himself a crafty manipulator and skilled thief. We need to figure out how to protect ourselves from him more than place blame.</Text><ID>932941</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ArchaeologistTrapped</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArchaeologistTrapped</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Come back to the Archaeologist's camp</Text><ID>930429</ID></Title><Desc><Text>Come back to the Archaeologist's camp</Text><ID>941841</ID></Desc></Data> + 0 + false + + + 2850 + RTTE11_DragonsEdge03T04 + <Data><Setup><Scene>HubSchoolDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I guess not even dragons can protect us from liars. We'll have to be more careful about who we trust in the future and take steps to keep us safe. We should spread the word about Harald. Berk and the School need to know that he's operating nearby. @@ {{Name}}, will you fly back to the School and tell Heather of the threat of Harald?</Text><ID>930437</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Harald? [c][3eebff]Harald Forkbeard[/c][ffffff] was at Dragon's Edge? That Viking is bad news. I saw him dealing with the Dragon Hunters... and it didn't seem like it was the first time.</Text><ID>930438</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the School</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather at the School</Text><ID>929137</ID></Desc></Data> + 0 + false + + + 2851 + RTTE11_DragonsEdge03T05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'll get to work on creating something we can use to warn everyone. While I do that, will you talk to Johann about Harald? I know that he trades all across the archipelago. Maybe he'll have some more insight on the villain.</Text><ID>930441</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Harald Forkbeard is not a man to be trifled with! He will tell you exactly what you want to hear and then stab you directly in the back!</Text><ID>930442</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket</Text><ID>923073</ID></Title><Desc><Text>Talk to Bucket</Text><ID>923073</ID></Desc></Data> + 0 + false + + + 2852 + RTTE11_DragonsEdge03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I think I've got it, {{Name}}. Come back and see my handiwork.</Text><ID>930445</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I remember Harald's face very well, so I drew a small painting of the man for these wanted posters. Now, no one will be confused about what sort of pond scum this guy is.</Text><ID>932838</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBHarald.unity3d/PfUiMissionActionDBHarald</Asset><NPC>PfDWAlchemist</NPC><Text>Harald</Text><ID>41889</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather to get the posters</Text><ID>930443</ID></Title><Desc><Text>Talk to Heather to get the posters</Text><ID>930443</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 203597 + true + 350 + 350 + + 0 + +
+ + 120 +

2

+ 0 + + 1 + 542 + 203597 + true + 120 + 120 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 203597 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203597 + true + 50 + 50 + + 0 + +
+ false +
+ + 2223 + RTTE12_Villains03 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>This Will Not Stand</Text><ID>927527</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2219 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2223 + 2224 + 0 + + + 1 + 2223 + 2860 + 0 + + + 1 + 2223 + 2861 + 0 + + + 1 + 2223 + 2862 + 0 + + + 1 + 2223 + 2863 + 0 + + + 1 + 2223 + 2864 + 0 + + + 1 + 2223 + 2865 + 0 + + + 1 + 2223 + 2866 + 0 + + + 1 + 2223 + 2867 + 0 + + + + 1 + 203598 + 0 + + 2224 + RTTE12_Villains03T01 + 11 +

2223

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2224 + 2859 + 0 + + + + 1 + 203599 + 0 + + 2859 + RTTE12_Villains03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Do you know what bothers me the most about this situation, {{Name}}? This thief sneaks into our base, learns all about dragons, and then has the gall to demand a ransom to give us our own stuff back! Argh! @@ We need to trick him into thinking he beat us... then boom! We trick him right back! +Let's see where he wants his goods. I have the ransom note. Talk to me and I'll give it to you!</Text><ID>930450</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12438 + + 1 + 2737 + 203599 + true + 1 + 1 + + 0 + +
+ false + + + 2860 + RTTE12_Villains03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Will you open your Backpack and {{input}} on the ransom note?</Text><ID>930453</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I hate to compliment the no-good double-crosser but he did a great job in making this map. He must have charted out the islands around Dragon’s Edge as he followed us there. Hiccup's working on maps from the air so they're a touch more accurate, but only just.</Text><ID>930454</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>12438</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the ransom note in your Backpack</Text><ID>930451</ID></Title><Desc><Text>{{Input}} on the ransom note in your Backpack</Text><ID>930451</ID></Desc></Data> + 0 + false + + + 2861 + RTTE12_Villains03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The object on the bottom left of the map is a [c][3eebff]compass rose[/c][ffffff]; it’s a symbol that shows the cardinal directions (north, east, south, and west) on a map. It helps us know which way to go to find which island. @@ Let’s see... the island he wants us to put the ransom is due west of us. Fly to the west and find the island he's talking about!</Text><ID>930457</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hobblegrunt Island... We met the Dragon Hunters here and I never saw Harald here. Is there a connection between the Dragon Hunters and Harald?! I don't understand; he helped us rescue those wounded dragons from the Dragon Hunters.</Text><ID>930458</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Hobblegrunt Island</Text><ID>930455</ID></Title><Desc><Text>Go to Hobblegrunt Island</Text><ID>930455</ID></Desc></Data> + 0 + false + + + 2862 + RTTE12_Villains03T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, that's a mystery for another time. I'll ask him about it after I've beat him down. @@ If we want to trick him, we'll need to lure him in with a fake set of goods. Can you go back to Gobber at Berk and ask him for a set of crates?</Text><ID>930461</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I've got plenty of crates and boxes left over from when we traded for building materials from Johann. You can have as many of them as you'd like! @@ It seems like you and Hiccup have gotten into some trouble out at Dragon’s Edge. I understand that you kids want to solve this on your own without interference from me or the other adults. @@ I hope you know that you can come to us if you need more than a bit of help! My axe hand attachment hasn't been in a fight in so long, it's starting to gather rust!</Text><ID>930462</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about crates</Text><ID>930459</ID></Title><Desc><Text>Talk to Gobber about crates</Text><ID>930459</ID></Desc></Data> + 0 + false + + + 2863 + RTTE12_Villains03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should talk to Fishlegs about the thing Harald [c][3eebff]really[/c][ffffff] wants: the telescope!</Text><ID>930465</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm not surprised Harald wants it. In my opinion, the telescope is a technological marvel! You did a great job making it with Hiccup. I love that it lets me explore the stars, since I'll never be able to go there myself. It's a good substitute!</Text><ID>930466</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about the telescope</Text><ID>930463</ID></Title><Desc><Text>Talk to Fishlegs about the telescope</Text><ID>930463</ID></Desc></Data> + 0 + false + + + 2864 + RTTE12_Villains03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The telescope is way too valuable to put into Harald's hands, even for a moment. Can you think of how powerful Harald would be if he could use the telescope whenever he wanted? @@ Maybe we can figure out a way to fake the telescope being in a ransom crate, but we'd be in trouble if he picks up the box and notices that it's empty. @@ I can think of no one better for trickery and guile than the twins. Will you talk to Ruffnut about our options?</Text><ID>930469</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You've come to the right Vikings. It'll be our pleasure to make Harald get Loki'd. I'm thinking that we go to the basics for this one, brother. How about the old Happy Snoggletog?</Text><ID>930470</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 2865 + RTTE12_Villains03T07 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains03T07.unity3d/PfGrpRTTEVillains03T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good choice! The Happy Snoggletog is a Thorston Special, {{Name}}. You get your wrapped present from your sister. You shake it to see what it could be, and you get excited because it has the right weight for an axe or a cool Viking helmet. You open it – and poof! A box of rocks. @@ I've had a lot of special holidays ruined by the Happy Snoggletog. Ah, memories. @@ Now the telescope is much larger than a present, but the same principle applies. Find a bunch of boulders and we'll fill the box. Only the highest quality boulder will do for a Tuffnut prank; get us 2 boulders from Dark Deep, the home of boulders!</Text><ID>930473</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRock01Big</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find 2 boulders at Dark Deep</Text><ID>930471</ID></Title><Desc><Text>Find 2 boulders at Dark Deep</Text><ID>930471</ID></Desc></Data> + 0 + false + + + 2866 + RTTE12_Villains03T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains03T08.unity3d/PfGrpRTTEVillains03T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDo</Asset><NPC>PfDWRuffnut</NPC><Text>The boulders aren't enough. We need to really splash him with the nasty stuff. Imagine this: he thinks the telescope is his and he opens the crate. And in the moment of triumph? A face full of rotten fish odor. Hehe. Loki'd! @@ I keep an emergency cache of prank goods under the waterfall at Berk. Can you go there and "fish" out a couple of rotten fish? Sorry about the smell.</Text><ID>930476</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRottenFish</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find rotten fish at Ruffnut's pranking cache in Berk</Text><ID>930474</ID></Title><Desc><Text>Find rotten fish at Ruffnut's pranking cache in Berk</Text><ID>930474</ID></Desc></Data> + 0 + false + + + 2867 + RTTE12_Villains03T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Bring them to me!</Text><ID>930479</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You can count on me to make this happen, {{Name}}! I'll get to work on it right away while you work on the next part of the trap with Hiccup.</Text><ID>930480</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>12439</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dark Deep Boulder</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>8018</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rotten Fish</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>12438</ItemID><Quantity>1</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Give the boulders and fish to Ruffnut</Text><ID>930477</ID></Title><Desc><Text>Give the boulders and fish to Ruffnut</Text><ID>930477</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 203598 + true + 350 + 350 + + 0 + +
+ + 120 +

2

+ 0 + + 1 + 542 + 203598 + true + 120 + 120 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203598 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203598 + true + 50 + 50 + + 0 + +
+ false +
+ + 2225 + RTTE13_Dragons07 + 4 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons07T00.unity3d/PfGrpRTTEDragons07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragons07T06.unity3d/PfGrpRTTEDragons07T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Plan in Motion</Text><ID>927528</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2223 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2225 + 2868 + 0 + + + 1 + 2225 + 2869 + 0 + + + 1 + 2225 + 2870 + 0 + + + 1 + 2225 + 2871 + 0 + + + 1 + 2225 + 2872 + 0 + + + 1 + 2225 + 2873 + 0 + + + 1 + 2225 + 2874 + 0 + + + 1 + 2225 + 2971 + 0 + + + + 1 + 203600 + 0 + + 2868 + RTTE13_Dragons07T01 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's an interesting plan, but how will we give Harald the "present"? First, we need to figure out a way to stop him. We need to catch him in a way that won't let him run or talk his way out of it! @@ Astrid is working on a plan and I trust that she knows what she's doing. Will you help her out?</Text><ID>930483</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>As much as I would like to have Stormfly spike him to a plank, that would make me as bad as he is. So, instead, we just need to figure out a way to keep him from getting away. It got me to thinking about our adventure on Scuttleclaw Island, when we had to fly to keep away from the Skrill. We found a cave there that was a Flightmare nest.</Text><ID>930484</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Astrid at Scuttleclaw Island</Text><ID>930296</ID></Title><Desc><Text>Meet Astrid at Scuttleclaw Island</Text><ID>930481</ID></Desc></Data> + 0 + false + + + 2869 + RTTE13_Dragons07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The Flightmare has a paralyzing mist that can freeze a person in place. Trust me, I've felt it--personally. It would be a perfect tool to freeze Harald Forkbeard. Maybe we'll find the dragon in his cave! @@ Let's go there and see if we can get some of his mist. I'll meet you at the mouth of the cave, {{Name}}.</Text><ID>930487</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't hear anything. I wonder if the Flightmare is here...</Text><ID>930488</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FlightmareEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Astrid at the Flightmare cave in Scuttleclaw Island</Text><ID>930485</ID></Title><Desc><Text>Meet Astrid at the Flightmare cave in Scuttleclaw Island</Text><ID>930485</ID></Desc></Data> + 0 + false + + + 2870 + RTTE13_Dragons07T03 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_FlightmareEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Keep your eyes out for the Flightmare, {{Name}}. {{Input}} on me and we'll go into the cave--together.</Text><ID>930491</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh no... the dragon isn't here. How will we paralyze Harald if we can't get the mist from the Flightmare?</Text><ID>930492</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FlightmareNest</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Spline</Key><Value>Entrance_to_Nest_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Astrid and follow her into the cave</Text><ID>930489</ID></Title><Desc><Text>{{Input}} on Astrid and follow her into the cave</Text><ID>930489</ID></Desc><Reminder><Text>Don't fall behind!</Text><ID>936412</ID></Reminder><Failure><Text>Oh no! She left you behind!</Text><ID>936413</ID></Failure></Data> + 0 + false + + + 2871 + RTTE13_Dragons07T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hmm. Look at the walls of the cave here. They're glowing a little bit. It reminds me of how the Flightmare mist glows behind him as he flies across the sky. @@ Wait! Do you think this is Flightmare mist, just in a different [c][3eebff]state of matter[/c][ffffff]? Maybe we can use this, instead! Use your axe to chip off some pieces of the frozen mist from the wall.</Text><ID>930495</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is great! We can experiment on one of the pieces and have some left over if it ends up being useful.</Text><ID>930496</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FlightmareIce</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFlightmareIce</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop off some ice with your axe</Text><ID>930493</ID></Title><Desc><Text>Chop off some ice with your axe</Text><ID>930493</ID></Desc></Data> + 0 + false + + + 2872 + RTTE13_Dragons07T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We should test this object and see if it actually is Flightmare mist. Let’s get these frozen pieces back to the Edge.</Text><ID>930499</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This object doesn't have any use to us frozen. It's currently in a solid state. If we add heat energy to it, it will change state into a liquid form. </Text><ID>930500</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Dragon's Edge</Text><ID>930497</ID></Title><Desc><Text>Return to Dragon's Edge</Text><ID>930497</ID></Desc></Data> + 0 + false + + + 2873 + RTTE13_Dragons07T06 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Hiccup_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I borrowed a bowl from the stables. Come here and we'll conduct our experiment!</Text><ID>930503</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I would step back from the bowl, Snotlout. We're trying to conduct a safe experiment. We think that ice is Flightmare mist, and it needs to and it needs to melt or change state to a liquid before we can use it. We just need to test it and see if that's true.</Text><ID>932841</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Come on, Hiccup! Sorry, but time is money and I don't have time to watch ice melt. We need to hurry this up with some Hookfang flames!</Text><ID>932943</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Snotlout...</Text><ID>932944</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No, let him. I'd love to watch him perform this experiment.</Text><ID>932945</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snotlout_Dragons07</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Astrid by the experiment</Text><ID>930501</ID></Title><Desc><Text>Meet Astrid by the experiment</Text><ID>941842</ID></Desc></Data> + 0 + false + + + 2874 + RTTE13_Dragons07T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yeah! The Snotlout experiment is a go! Shoot the bowl with {{dragon name}}, {{Name}}.</Text><ID>930510</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This is taking too long! Hookfang, let's show these guys how to do it the Snotlout way!</Text><ID>932842</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEDragons07T13CS.unity3d/PfGrpRTTEDragons07T13CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That's Snotlout for you! The Flightmare toxin changed from a solid state, to a liquid state, to a gas state, each time heat energy was added. And as an extra bonus, Snotlout is temporarily paralyzed! Anything to say Snotlout? ....Snotlout?</Text><ID>933397</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snotlout_Dragons07</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfBowlEmpty</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the bowl with {{dragon name}}</Text><ID>930508</ID></Title><Desc><Text>Shoot the bowl with your dragon</Text><ID>941843</ID></Desc></Data> + 0 + false + + + 2971 + RTTE13_Dragons07T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Say ... is Snotlout okay?</Text><ID>930515</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Astrid, you know, a kiss would probably revive me...</Text><ID>932843</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ugh. Sounds like he's his usual self, to me.</Text><ID>932947</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snotlout_Dragons07</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snotlout_Dragons07</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on Snotlout</Text><ID>930513</ID></Title><Desc><Text>Check on Snotlout to make sure he is alive</Text><ID>941844</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203600 + true + 300 + 300 + + 0 + + + + 170 +

2

+ 0 + + 1 + 676 + 203600 + true + 170 + 170 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203600 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203600 + true + 350 + 350 + + 0 + +
+ false +
+ + 2226 + RTTE14_Villains04 + 4 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains04T00.unity3d/PfGrpRTTEVillains04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Die is Cast</Text><ID>927530</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2225 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2226 + 2875 + 0 + + + 1 + 2226 + 2876 + 0 + + + 2 + 2226 + 2227 + 0 + + + 1 + 2226 + 2878 + 0 + + + 1 + 2226 + 2879 + 0 + + + 1 + 2226 + 2978 + 0 + + + + 1 + 203601 + 0 + + 2227 + RTTE14_Villains04T03 + 4 +

2226

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2227 + 2877 + 0 + + + + 1 + 203602 + 0 + + 2877 + RTTE14_Villains04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You asked Gobber for crates and chests to make a fake ransom earlier. Now, where did we keep it? @@ I remember now! You told me about Ruffnut's strange idea to put boulders into it. Can you check with the twins and see where we are with the ransom?</Text><ID>930520</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>It took Tuffnut and me a lot of time to find the perfect rocks for the fake telescope in the ransom. This chest is now the exact weight of a telescope.</Text><ID>932844</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yeah, no need to thank us. Pranking is an exact science, and we take a lot of pride in our creations.</Text><ID>932948</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut about the crates</Text><ID>930518</ID></Title><Desc><Text>Talk to Ruffnut about the crates</Text><ID>930518</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12440 + + 1 + 2738 + 203602 + true + 1 + 1 + + 0 + +
+ false + + + 2875 + RTTE14_Villains04T01 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Hiccup_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is the answer we needed! We need to spray Harald with the paralyzing mist when he tries to get his ransom box. Fishlegs made some glass containers we can use to bottle the liquid. I'll work on a mechanism that will break the bottle of Flightmare mist when the chest opens. @@ We need to melt this ice into Flightmare liquid. Can you ask {{dragon name}} to shoot a fireball at the bowl?</Text><ID>930525</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Excellent! I'm going to put the liquid into a gas.</Text><ID>930526</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWFlightmareIce</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectDWFlightmareIce</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Flightmare ice in the bowl with a fireball</Text><ID>930523</ID></Title><Desc><Text>{{Input}} on the bowl and shoot the Flightmare ice</Text><ID>941845</ID></Desc></Data> + 0 + false + + + 2876 + RTTE14_Villains04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job, Fishlegs! Now that we have the Flightmare liquid in the bottle, we should add a little heat to make the liquid a gas without breaking the bottle. Remember, when a liquid changes state to a gas it expands. We have to be careful and heat it up slightly. @@ {{Name}}, have your dragon just shoot a low heat fireball--not full power. A good dragon trainer can control how much force their dragon shoots. You can do this.</Text><ID>930529</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow! That's perfect! You did an amazing job. I knew you could do it!</Text><ID>930530</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfBottleFlightmareWater</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfBottleFlightmareWater</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the bottle to turn the liquid into a gas</Text><ID>930527</ID></Title><Desc><Text>Shoot the bottle</Text><ID>941846</ID></Desc></Data> + 0 + false + + + 2878 + RTTE14_Villains04T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Harald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I've set up the treasure chest to shatter the Flightmare mist when Harald picks this lock and opens it. We're just about ready to go! Will you give Astrid the crates from Ruffnut?</Text><ID>930533</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is great! It looks really convincing.</Text><ID>930534</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>12440</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ransom Crates</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the ransom boxes to Astrid</Text><ID>930531</ID></Title><Desc><Text>Give the ransom boxes to Astrid</Text><ID>930531</ID></Desc></Data> + 0 + false + + + 2879 + RTTE14_Villains04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's go to the ransom spot at Hobblegrunt Island, {{Name}}. Hiccup, Snotlout--you have to stay here. If Harald sniffs out an ambush, he'll never come collect his bounty and he'll never fall into our trap.</Text><ID>930537</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Does the chest look good to you? Great. Come find me. I'm in the trees! </Text><ID>930538</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WhiteTree</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the ransom spot in Hobblegrunt Island</Text><ID>930535</ID></Title><Desc><Text>Go to the ransom spot in Hobblegrunt Island</Text><ID>930535</ID></Desc></Data> + 0 + false + + + 2978 + RTTE14_Villains04T06 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, now it's a waiting game.</Text><ID>930541</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AstridHidingSpot</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid in the trees</Text><ID>930539</ID></Title><Desc><Text>Find Astrid in the trees</Text><ID>930539</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 203601 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 203601 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203601 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203601 + true + 50 + 50 + + 0 + +
+ false +
+ + 2228 + RTTE15_Villains05 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Waiting Game</Text><ID>927531</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2226 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2228 + 2880 + 0 + + + 1 + 2228 + 2881 + 0 + + + 1 + 2228 + 2882 + 0 + + + 1 + 2228 + 2883 + 0 + + + 1 + 2228 + 2884 + 0 + + + + 1 + 203603 + 0 + + 2880 + RTTE15_Villains05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We need to be out of sight behind this camouflage so that Harald doesn’t recognize that it’s a trap. I hope we won’t have to wait long for that traitor to come by... @@ Get into a good spot where you can see.</Text><ID>930544</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Yes! It worked!</Text><ID>932845</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains05T01CS.unity3d/PfGrpRTTEVillains05T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Quick, keep still! Is that him?</Text><ID>933398</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HidingSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Hide behind the camouflage</Text><ID>930542</ID></Title><Desc><Text>Hide behind the camouflage</Text><ID>930542</ID></Desc></Data> + 0 + false + + + 2881 + RTTE15_Villains05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We need to see if the Flightmare gas worked. I have a little experience with it, myself, so I’m sure Harald is completely paralyzed... but I want to double check.</Text><ID>930549</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>How dare you betray us after we took you in as a friend? I should smack you over the head with my axe!</Text><ID>930550</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WhiteTree</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on Harald</Text><ID>930547</ID></Title><Desc><Text>Check on Harald</Text><ID>930547</ID></Desc></Data> + 0 + false + + + 2882 + RTTE15_Villains05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll keep an eye on Harald Liar-Beard over here while you go get Hiccup. Don't worry, he won't get one over on me or Stormfly.</Text><ID>930553</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good! I'm glad you caught him. We'll make sure the dragons he kidnapped are safe, get the Book of Dragons back, and maybe even get an explanation on why he would betray us.</Text><ID>930554</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Alert Hiccup at Dragon's Edge</Text><ID>930551</ID></Title><Desc><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Desc></Data> + 0 + false + + + 2883 + RTTE15_Villains05T04 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains05T04.unity3d/PfGrpRTTEVillains05T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'll meet you at Hobblegrunt Island, {{Name}}.</Text><ID>930557</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>You knew I couldn’t resist trying to open that lock right away, huh? You lot pulled the wool over my eyes. I might have pulled a bit of a trick on you lot, but I know when I'm beat. Here's the Book of Dragons. It's unharmed, on my word.</Text><ID>932847</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Like the word of Harald Forkbeard means anything to us.</Text><ID>932950</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What have you done with the dragons?</Text><ID>932951</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Harald</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Harald at Hobblegrunt Island</Text><ID>930555</ID></Title><Desc><Text>Go back to Harald at Hobblegrunt Island</Text><ID>930555</ID></Desc></Data> + 0 + false + + + 2884 + RTTE15_Villains05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Legendary pirate? More like a common thief. We accepted you and you betrayed us! You're scum. @@ Don't beat about the bush. Tell us where the dragons are!</Text><ID>932848</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>It was nothing personal mate, just business. They are a very lucrative trade in the right circles. You gave me the opportunity to take them, like leaving a shed door wide open. @@ It was too tempting for a legendary pirate like me. How could I resist?</Text><ID>932952</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Astrid, dear, I was only using them as means to an end. @@ Unfortunately, I ran into a small complication. The Dragon Hunters ambushed me a few leagues away from Dragon's Edge and stole the dragons. I know where they are taking them, and if you release me, I can sneak you into their camp. @@ Don't worry, I have a plan, if you'll listen...</Text><ID>930565</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title><Desc><Text>Talk to Harald</Text><ID>927532</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 203603 + true + 250 + 250 + + 0 + + + + 160 +

2

+ 0 + + 1 + 543 + 203603 + true + 160 + 160 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203603 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203603 + true + 50 + 50 + + 0 + +
+ false +
+ + 2232 + RTTE17_DragonsEdge04 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ready for War</Text><ID>927536</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2229 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2232 + 2896 + 0 + + + 1 + 2232 + 2897 + 0 + + + 1 + 2232 + 2898 + 0 + + + 1 + 2232 + 2899 + 0 + + + 1 + 2232 + 2900 + 0 + + + 1 + 2232 + 2901 + 0 + + + + 1 + 203607 + 0 + + 2896 + RTTE17_DragonsEdge04T01 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEDragonsEdge04T01.unity3d/PfGrpRTTEDragonsEdge04T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Harald was talking to the Dragon Hunters while this happened. Maybe they'll blame it on him, but we should also be ready just in case they decide to strike at us. @@ Windshear and Heather just landed by the stables. Can you talk to her and find out what's on her mind? I'm glad she's here; we could use the extra firepower.</Text><ID>930619</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey! I came over to see what happened with the setup for Harald's trap, but that can wait. There's some trouble brewing on the horizon.</Text><ID>930620</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 2897 + RTTE17_DragonsEdge04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The Dragon Hunters are out in force and they look like they're looking for blood. Their ships are headed this way! We need to be ready to defend the island. I'll alert the others; can you tell Astrid what's going on?</Text><ID>930623</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The Dragon Hunters are coming? Okay. We knew this might happen. No matter what happens, saving the dragons was worth this trouble. You did a good job.</Text><ID>930624</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 2898 + RTTE17_DragonsEdge04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>With the defenses we've recently added, we're more prepared for this attack than we've ever been. We should make sure our traps are set. Can you check up on the pitfall trap?</Text><ID>930627</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The pitfall trap is well covered and ready to go. Just like the Snaptrapper, the pitfall trap will be lying in wait for the unsuspecting prey to walk right into it.</Text><ID>930628</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_InPitfall</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the pitfall trap</Text><ID>930625</ID></Title><Desc><Text>Check on the pitfall trap</Text><ID>930625</ID></Desc></Data> + 0 + false + + + 2899 + RTTE17_DragonsEdge04T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_ByCatapult01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_ByCatapult02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The catapults are the next set of defenses for Dragon's Edge. You should fly up and check on them.</Text><ID>930631</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Astrid told us the Dragon Hunters are coming. Ruffnut and I are ready to rain down boulders on them. Bring it on!</Text><ID>930632</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutCheer</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Catapult01</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the catapults</Text><ID>930629</ID></Title><Desc><Text>Check on the catapults</Text><ID>930629</ID></Desc></Data> + 0 + false + + + 2900 + RTTE17_DragonsEdge04T05 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsWall</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yeah, and because of the camouflage, they'll never see the rock barrage coming--just like a Snow Wraith attack! I can't wait to see all the destruction. @@ Do you think Fishlegs's wall is ready to be tested in combat?</Text><ID>930635</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The wall will be ready for the ultimate test when the Dragon Hunters arrive. It'll protect Dragon's Edge from any projectiles they might send in our direction. Just like the Catastrophic Quaken's armor, this wall will keep everything out!</Text><ID>930636</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs by his wall</Text><ID>930633</ID></Title><Desc><Text>Talk to Fishlegs by his wall</Text><ID>930633</ID></Desc></Data> + 0 + false + + + 2901 + RTTE17_DragonsEdge04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We all need to be ready for the big battle since we all have unique roles to play within the defense. Just like the Scuttleclaw, we need to work together as a pack to win the fight. Will you check up on Snotlout and make sure he's ready for the battle?</Text><ID>930639</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Don't you worry about me. I'm ready! These Dragon Hunters are going to regret ever picking a fight with us.</Text><ID>930640</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check up on Snotlout</Text><ID>930637</ID></Title><Desc><Text>Check up on Snotlout</Text><ID>930637</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 203607 + true + 75 + 75 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 203607 + true + 250 + 250 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203607 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203607 + true + 50 + 50 + + 0 + +
+ false +
+ + 2233 + RTTE18_Villains07 + 12 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains07T00.unity3d/PfGrpRTTEVillains07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Battle for Dragon's Edge</Text><ID>927540</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2232 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2233 + 2902 + 0 + + + 1 + 2233 + 2903 + 0 + + + 1 + 2233 + 2904 + 0 + + + 1 + 2233 + 2905 + 0 + + + 1 + 2233 + 2906 + 0 + + + 1 + 2233 + 2907 + 0 + + + 1 + 2233 + 2908 + 0 + + + 1 + 2233 + 2909 + 0 + + + 2 + 2233 + 2234 + 0 + + + 1 + 2233 + 2911 + 0 + + + + 1 + 203608 + 0 + + 2234 + RTTE18_Villains07T09 + 12 +

2233

+ <Data><Offer><Type>Popup</Type><ID>927538</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's do it, {{Name}}! Blast this ship with everything you've got!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains07T08CS.unity3d/PfGrpRTTEVillains07T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>CutScene</Type><Asset>RS_DATA/pfGrpRTTEVillains07T09CS.unity3d/pfGrpRTTEVillains07T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>927539</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>They're running like cowards! Ha ha!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot the ship</Text><ID>927537</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2234 + 2910 + 0 + + + + 1 + 0 + 0 + + 2910 + RTTE18_Villains07T09 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfGrpRTTEVillains07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonHunterBoatCShoot</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonHunterBoatCShoot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Blast the ship with {{dragon name}}</Text><ID>930641</ID></Title><Desc><Text>Shoot the ship!</Text><ID>933156</ID></Desc></Data> + 0 + false + + false + + + 2902 + RTTE18_Villains07T01 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hmm. You know what, {{Name}}? I think I see something near the horizon. Will you use the telescope to check it out? I would do it, but Fishlegs revoked my telescope privileges last week. What a jerk, huh? I wasn't really going to drop it into the water... again...</Text><ID>930645</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains07T01CS.unity3d/PfGrpRTTEVillains07T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Harald is sailing away with the object from the Dragon Hunter camp!</Text><ID>930646</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfTelescopeCutscene</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTelescopeCutscene</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the telescope</Text><ID>922422</ID></Title><Desc><Text>{{Input}} on the telescope</Text><ID>922422</ID></Desc></Data> + 0 + false + + + 2903 + RTTE18_Villains07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You need to tell Hiccup right away.</Text><ID>930649</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Harald will have to wait. Here come the Dragon Hunters!</Text><ID>930650</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains07T02CS.unity3d/PfGrpRTTEVillains07T02CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Hiccup about Harald</Text><ID>930647</ID></Title><Desc><Text>Tell Hiccup about Harald</Text><ID>930647</ID></Desc></Data> + 0 + false + + + 2904 + RTTE18_Villains07T03 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll keep a dragon-eye view of the battle so that I can coordinate all of our moving pieces. I need you to be my right hand Viking during this battle, {{Name}}. @@ They think we're weak and defenseless because they enslave dragons. Well, [c][3eebff]we[/c][ffffff] know we can accomplish so much more if we work together with them. Let's show them how wrong they are! @@ Fly to the catapults and {{input}} on them to launch our attack!</Text><ID>930653</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That ship just got Loki'd! Great shot. And the best thing is, we can keep firing because they don't know where we are! The camouflage was a great idea!</Text><ID>930654</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains07T03CS.unity3d/PfGrpRTTEVillains07T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutCheer</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Catapult01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDECatapult_01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the catapult on the invaders</Text><ID>930651</ID></Title><Desc><Text>{{Input}} on the catapult on the Dragon Hunters</Text><ID>941855</ID></Desc></Data> + 0 + false + + + 2905 + RTTE18_Villains07T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsWall</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Catapults, check! That worked great, but don't get overconfident. We don't want to let down our guard because these guys can bring a lot of pain if we don't pay attention. @@ They're starting to shoot a lot more arrows. We need to make sure we're covered from their fire. Can you talk to Fishlegs? He's standing behind the wall.</Text><ID>930657</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The wall will hold together! Meatlug and I are safe behind it... and we're ready to repair any weak spots with more boulders. We won't let Dragon's Edge down!</Text><ID>930658</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains07T04CS.unity3d/PfGrpRTTEVillains07T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsWall</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check up on Fishlegs and the wall</Text><ID>930655</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 2906 + RTTE18_Villains07T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Defense, check! We're going to increase our catapult barrage, but it looks like some of the Dragon Hunters were able to land on the beach. Can you fly down and check to see if our pitfall trap is working? Be careful!</Text><ID>930661</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains07T05CS.unity3d/PfGrpRTTEVillains07T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Take that suckers! The pit should be deep enough to trap them, but Hookfang and I will check on them when we have a free moment!</Text><ID>930662</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutGreat</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PitfallCheck</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check up on the pitfall trap</Text><ID>930659</ID></Title><Desc><Text>Check up on the pitfall trap</Text><ID>930659</ID></Desc></Data> + 0 + false + + + 2907 + RTTE18_Villains07T06 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Pitfall trap, check! The Dragon Hunters are starting to get befuddled and demoralized. Keep it up! @@ {{Name}}, it's time for the last part of our defense: the Scuttleclaw pack defense trick. We need to split their ships up with a diversion, and well, I think you can handle it! Fly to the other side of the ships, but keep near the shore along the way: I don't want you to get riddled with arrows!</Text><ID>930665</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BehindShips</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BehindShips</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly around the Dragon Hunters</Text><ID>930663</ID></Title><Desc><Text>Fly around the Dragon Hunters</Text><ID>930663</ID></Desc></Data> + 0 + false + + + 2908 + RTTE18_Villains07T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Shoot the ship!</Text><ID>933156</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonHunterBoatCShoot</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonHunterBoatCShoot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Dragon Hunter ship</Text><ID>930666</ID></Title><Desc><Text>Shoot the Dragon Hunter ship</Text><ID>930666</ID></Desc></Data> + 0 + false + + + 2909 + RTTE18_Villains07T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_HidingSpotAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>930671</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That got their attention! Get out of there right now! + +Fly around the land and you'll meet your backup. Don't get caught!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HidingSpot</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly away!</Text><ID>930669</ID></Title><Desc><Text>Get out of there!</Text><ID>930670</ID></Desc></Data> + 0 + false + + + 2911 + RTTE18_Villains07T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'll take another flight around this area and see if they're headed back. You should check back with Astrid and see if there's anything else we might need to do!</Text><ID>930674</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We did it, {{Name}}! The Dragon Hunters are retreating!</Text><ID>930675</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Title><Desc><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Desc></Data> + 0 + false + + + 400 +

1

+ 0 + + 1 + 418 + 203608 + true + 400 + 400 + + 0 + +
+ + 95 +

2

+ 0 + + 1 + 685 + 203608 + true + 95 + 95 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203608 + true + 50 + 50 + + 0 + +
+ + 400 +

8

+ 0 + + 1 + 1750 + 203608 + true + 400 + 400 + + 0 + +
+ false +
+ + 2235 + RTTE19_Epilogue + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>We Won!</Text><ID>927541</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2233 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2235 + 2912 + 0 + + + 1 + 2235 + 2913 + 0 + + + 1 + 2235 + 2914 + 0 + + + 1 + 2235 + 2915 + 0 + + + 1 + 2235 + 2916 + 0 + + + + 1 + 203609 + 0 + + 2912 + RTTE19_EpilogueT01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>They won't ever underestimate us again. They'll have to bring a lot more firepower if they want to stop us, but we'll be ready for that. Great job, {{Name}}! We did great. @@ I have to give credit where it's due. Our defenses worked really well because the twins kept a constant barrage of rocks slamming into the invader ships. The twins did an amazing job. Can you tell them that they aced it?</Text><ID>930678</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Aww, shucks. My brother and I take rock flinging very seriously.</Text><ID>932853</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yeah! We live to please. I mean, I live to please [c][3eebff]me[/c][ffffff], but I'm happy when I help my friends too.</Text><ID>932957</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Congratulate Ruffnut and Tuffnut on the catapult</Text><ID>930676</ID></Title><Desc><Text>Congratulate Ruffnut and Tuffnut on the catapult</Text><ID>941856</ID></Desc></Data> + 0 + false + + + 2913 + RTTE19_EpilogueT02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Fishlegs chose a lot of the boulders that we threw out at the Dragon Hunter boats. He's the rock expert, and the ammo he chose was perfect! Praise goes to him as well. Will you tell him that we're indebted to his rock choice skills? Thanks, dude.</Text><ID>930683</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It wasn't me, it was Meatlug! She's the one who can tell which rocks will fly with the best velocity, clever girl. She found a lot of suitable rocks, and then I took your advice about [c][3eebff]velocity[/c][ffffff] and [c][3eebff]mass[/c][ffffff] to weed out the best choices. So in a way, it was all thanks to you!</Text><ID>930684</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Congratulate Fishlegs</Text><ID>930681</ID></Title><Desc><Text>Congratulate Fishlegs</Text><ID>930681</ID></Desc></Data> + 0 + false + + + 2914 + RTTE19_EpilogueT03 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Heather</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There is one person who doesn't seem too happy about how things went today. I saw Heather by the stables earlier and she looked a bit sad. I don't know what it could be about! Do you think you could talk to her and see if you can cheer her up?</Text><ID>930687</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>What a battle, huh? It felt really good to fly out there with Windshear and sink Dragon Hunter boats, just like the old days. @@ It's just that... I can't stop thinking about how I was here by accident. I didn't know you were about to be attacked; I just happened to stop by. What if I hadn't decided to come to the island? With the Dragon Hunters and Harald Forkbeard around these waters, it seems like my skills could come in handy out here. @@ I'm sorry. I don't mean to bring you down. We should be celebrating, not worrying about my moping over silly things! Don't worry about me, I will figure it out.</Text><ID>930688</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Heather</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Cheer Heather up</Text><ID>930685</ID></Title><Desc><Text>Cheer Heather up</Text><ID>930685</ID></Desc></Data> + 0 + false + + + 2915 + RTTE19_EpilogueT04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Before I forget, Hiccup wanted to talk to you. When you're done around here, you should go up and talk to him by his house.</Text><ID>930691</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 2916 + RTTE19_EpilogueT05 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpRTTEEpilogueT05.unity3d/PfGrpRTTEEpilogueT05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We put together a little something for all your hard work recently. Go to the new house in Dragon's Edge. You don't need to be scared. Ruffnut and Tuffnut were not in charge of setting this up!</Text><ID>930694</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The dragon riders took a vote and we all agree. You've proven yourself over and over again here at Dragon's Edge. You helped rebuild Dragon's Edge and set up the defenses against the Dragon Hunters. You've practically moved in already; let's make that official! @@ Please join us here at Dragon's Edge as one of us. We could use someone like you in our ranks. We all pitched in and made a house for you here at the Edge. You still have a lot of work to do to make it your own. We didn't want to cramp your style so we didn't furnish it. You should go in and make it your own with some rocking decorations. @@ So, once again: thank you, and welcome to Dragon's Edge!</Text><ID>930695</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MyRoomINTExit</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to your house</Text><ID>930692</ID></Title><Desc><Text>Go to your house</Text><ID>930692</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203609 + true + 300 + 300 + + 0 + + + + 1000 +

2

+ 0 + + 1 + 537 + 203609 + true + 1000 + 1000 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203609 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 203609 + true + 350 + 350 + + 0 + +
+ false +
+ + 2284 + Quest Battle01 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Berk Guard: Help Needed!</Text><ID>927454</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 4 + 8,5 + 0 + true + + + 3 + 1102 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2284 + 2966 + 0 + + + 1 + 2284 + 2967 + 0 + + + 1 + 2284 + 2968 + 0 + + + + 1 + 203657 + 0 + + 2966 + Battle01T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929553</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>We need brave young dragon trainers to join the Berk Guard. Do you think you have what it takes? I believe in you, student. Talk to Astrid on the way to the Training Grounds to get started.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralEncourage02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929554</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm glad you're joining us, {{Name}}! I've been watching your progress and I know you are definitely up for the task. We need to be vigilant to defend the School from those who want to attack us.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about the Berk Guard</Text><ID>929551</ID></Title><Desc><Text>Talk to Astrid about the Berk Guard.</Text><ID>929552</ID></Desc></Data> + 0 + false + + + 2967 + Battle01T02 + <Data><Offer><Type>Popup</Type><ID>929557</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Over the past few months, I've spotted a lot of enemy ships sailing near our island. They haven't attacked, yet, but it's only a matter of time. We need to be ready. @@ We've seen some Berserker ships and even some ships sailing the symbol of the Outcasts. Let's go to the Training Grounds where we'll need to defend ourselves.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Training Grounds</Text><ID>935805</ID></Title><Desc><Text>Go to the Training Grounds.</Text><ID>929556</ID></Desc></Data> + 0 + false + + + 2968 + Battle01T03 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpQBattle01T03CS.unity3d/PfGrpQBattle01T03CS</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>929560</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>When the ships appear, we'll need to fly out and fight the invaders as they approach the island. If we all work together, we'll be able to sink the invaders! Avoid the counterfire and blast the ships. If you get low on health or need to refill your dragon's shot limit, fly to one of the safe camps! You'll see a golden glow from the camp.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929561</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>If I see an attacking ship on the horizon, I'll send out a Battle Event warning for you to come to the Training Grounds and help fight them off. I don't know when they'll come, so be on your guard! @@ You should try out different dragons, as each dragon has unique attributes that will change the way you fight in battle. Thanks, {{Name}}! I'm sure you'll do the Berk Guard proud!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the safe camps</Text><ID>929558</ID></Title><Desc><Text>Look at the safe camps.</Text><ID>929559</ID></Desc></Data> + 0 + false + + + 50 +

1

+ 0 + + 1 + 36 + 203657 + true + 50 + 50 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 203657 + true + 70 + 70 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 203657 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203657 + true + 50 + 50 + + 0 + +
+ false +
+ + 2287 + SnoggletogMaze 2015 T01 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 01-01-2015 12:00:00,02-01-2016 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2287 + 2983 + 0 + + + + 1 + 204059 + 0 + + 2983 + SnoggletogMazeT01 + <Data><Setup><Scene>SnoggletogMazeDO</Scene><Asset>PfSnoggletogHelmetChest</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204059 + true + 100 + 100 + + 0 + + + + 1 +

6

+ 11811 + + 1 + 2866 + 204059 + true + 1 + 1 + + 0 + +
+ false +
+ + 2288 + Quest_Snoggletog_#2 + 10 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Happy Snoggletog?</Text><ID>927470</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 12-01-2015,02-01-2016 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2288 + 2984 + 0 + + + 1 + 2288 + 2985 + 0 + + + 1 + 2288 + 2986 + 0 + + + 1 + 2288 + 2987 + 0 + + + + 1 + 204060 + 0 + + 2984 + Snoggletog02T01 + <Data><Offer><Type>Popup</Type><ID>929865</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There's something weird about this year's Snoggletog, {{Name}}. I mean, we put up the lights and decorated the town but it just doesn't [c][3eebff]feel[/c][ffffff] like Snoggletog yet. Do you know what I mean? @@ I wonder if anyone else feels the same way. Do you think Snotlout feels the same way?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929866</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Are you kidding me? I've had record sales of my Snoggletog gear! People are buying Death Song amber ornaments in droves. I'm making tons of money, and that's the spirit of Snoggletog, right?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout about Snoggletog</Text><ID>929863</ID></Title><Desc><Text>Talk to Snotlout about Snoggletog.</Text><ID>929864</ID></Desc></Data> + 0 + false + + + 2985 + Snoggletog02T02 + <Data><Offer><Type>Popup</Type><ID>929869</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>So, this year's Snoggletog is just f-i-n-e in my eyes. Even Valka thinks that this Snoggletog is going great! You should talk to her about it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929870</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>No, Fishlegs is right. Everyone seems to be a bit quiet and withdrawn this year. It's not a good feeling. We need to cherish every moment we spend with family and friends... we never know how long we'll have.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka about Snoggletog</Text><ID>929867</ID></Title><Desc><Text>Talk to Valka.</Text><ID>929868</ID></Desc></Data> + 0 + false + + + 2986 + Snoggletog02T03 + <Data><Offer><Type>Popup</Type><ID>929873</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Luckily, I can change help change that! People tend to listen to what I say. @@ I put the twins in charge of raising Snoggletog cheer. I pray I won't regret that decision. Will you talk to them about their plans?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932827</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Dude. DUDE. This is going to be awesome.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>932931</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Loki's Maze of Mayhem was an amazing success all around, so we thought it could do the trick. Stoick will be very pleased with our handiwork.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut.</Text><ID>929872</ID></Desc></Data> + 0 + false + + + 2987 + Snoggletog02T04 + <Data><Offer><Type>Popup</Type><ID>929878</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You're going to love it. We'll scare the Snoggletog cheer right into you! +Go across the bridge in Berk to enter the Loki's Maze of Cheer. Have fun storming the maze!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929879</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Whew. Here you go...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HauntedHouseExit</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Loki's Maze of Cheer</Text><ID>929876</ID></Title><Desc><Text>Go to Loki's Maze of Cheer in Berk.</Text><ID>929877</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204060 + true + 100 + 100 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 204060 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 204060 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204060 + true + 50 + 50 + + 0 + +
+ false +
+ + 2300 + Quest_Edu101 + 7 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu101T00.unity3d/PfGrpQEdu101T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Sea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Scauldron Safari</Text><ID>927457</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1106 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2300 + 3033 + 0 + + + 1 + 2300 + 3034 + 0 + + + 1 + 2300 + 3035 + 0 + + + 1 + 2300 + 3036 + 0 + + + 1 + 2300 + 3037 + 0 + + + 1 + 2300 + 3038 + 0 + + + 1 + 2300 + 3039 + 0 + + + + 1 + 204655 + 0 + + 3033 + Edu101T01 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929651</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I love getting my hands dirty and coming face to face with science. Today's topic: wild dragons! You may think you know everything about the dragons you've trained, but remember that dragons have natural instincts that help them survive in their habitat. To complete this assignment, you need to find Fishlegs at Berk.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929652</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! Isn't this exciting? I love the opportunity to help Phlegma teach her class. She thought my dragon expertise made me perfectly suited to explain about [c][3eebff]social predators[/c][ffffff] and [c][3eebff]cooperative hunting[/c][ffffff]!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs at Berk</Text><ID>927752</ID></Title><Desc><Text>Talk to Fishlegs at Berk.</Text><ID>929650</ID></Desc></Data> + 0 + false + + + 3034 + Edu101T02 + <Data><Offer><Type>Popup</Type><ID>929655</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The subject of our lesson today is the Scauldron! The Scauldron is a Tidal Class dragon that lives mostly in the sea. They come to the surface to get oxygen and dive back down to eat. @@ Scauldrons are really vicious dragons, so we need to take precautions to be safe around wild Scauldrons. The Book of Dragons says that Vikings should drench themselves with water to approach Scauldrons. Take a shower at the waterfall under Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929656</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Now you're ready to go on a Scauldron Safari!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuffnutVisit</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Dip in the water under the waterfall</Text><ID>929653</ID></Title><Desc><Text>Dip in the water under the waterfall.</Text><ID>929654</ID></Desc></Data> + 0 + false + + + 3035 + Edu101T03 + <Data><Offer><Type>Popup</Type><ID>929659</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug and I spotted a Scauldron earlier near Berk. It should still be by these waters. Let's fly around until we can spot these majestic aquatic dragons!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929660</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! Mulch is in trouble from those two Scauldrons! We need to help him out!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Sea</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Mulch out at sea near Berk</Text><ID>929657</ID></Title><Desc><Text>Find Mulch out at sea near Berk.</Text><ID>929658</ID></Desc></Data> + 0 + false + + + 3036 + Edu101T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu101T04.unity3d/PfGrpQEdu101T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929663</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Don't worry! I'm covered with sea water so they don't want to eat me... but they might steal all the fish I've managed to catch. Good for the dragons but terrible for Berk Vikings! Can you pick these barrels up before the Scauldrons eat them all?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929664</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>There: I've spilled out a barrel of fish overboard. Now we have enough fish for man and dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQEdu101T04CS.unity3d/PfGrpQEdu101T04CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfBarrelOfFish</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the 2 buckets of fish by Mulch</Text><ID>929661</ID></Title><Desc><Text>Grab the buckets of fish by Mulch.</Text><ID>929662</ID></Desc></Data> + 0 + false + + + 3037 + Edu101T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWScauldron01</Asset><Location>PfMarker_ScauldronBabies02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWScauldron02</Asset><Location>PfMarker_ScauldronBabies03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929667</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Scauldrons work together in a pod, a social group of marine animals like whales, to find its food. Did you see how the two dragons hunted together from different directions? The Scauldrons are more successful at finding food while working together. This is called cooperative hunting! @@ Cooperative hunting is an adaptation, a special skill that helps the Scauldrons survive. The Scauldrons that lived in pods survived to pass on their genes to the next generation while Scauldrons that lived solo died out due to natural selection. Scauldrons evolved over generations to favor this adaptation. @@ Now that the dragons have enough food to eat, they'll be headed back to safety. I wonder where they're going? Let's follow them!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929668</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Cute little baby Scauldrons! Awww! These babies travel with the adults, eating the food that they find and learning the behaviors that a successful wild Scauldron needs to survive. @@ The adults in the group, or pod, will defend the babies if a predator comes near. This makes sure that the baby can grow up to be a strong Scauldron in the Broad Wing stage of maturity!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ScauldronBabies</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the Scauldrons</Text><ID>929665</ID></Title><Desc><Text>Follow the Scauldrons.</Text><ID>929666</ID></Desc></Data> + 0 + false + + + 3038 + Edu101T06 + <Data><Offer><Type>Popup</Type><ID>929671</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Okay! Let's leave the wild dragons alone. They can get really territorial around their young... if they think we're threatening the baby, they could attack us! Will you go to Bucket at Berk and drop off the fish we rescued from Mulch's boat?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929672</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>You're not Mulch! Is this today's haul for Berk or is it your fish? I'm so confused.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give the barrels of fish to Bucket</Text><ID>929669</ID></Title><Desc><Text>Give the barrels of fish to Bucket.</Text><ID>929670</ID></Desc></Data> + 0 + false + + + 3039 + Edu101T07 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929675</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>How is the lesson going? Come talk to me by the docks.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929676</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Fishlegs told me that you were an excellent student. Good! I expect great things from a strong Viking like you, {{Name}}. @@ Social dragons like Scauldrons live and hunt together in groups so that they can find food together, defend themselves together, and react to the changes happening to the habitats around them. This group behavior helps make sure that the dragons can protect their babies and continue their genetic line!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist by the docks</Text><ID>929673</ID></Title><Desc><Text>Talk to the Botanist by the docks.</Text><ID>929674</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204655 + true + 300 + 300 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 204655 + true + 85 + 85 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204655 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204655 + true + 200 + 200 + + 0 + +
+ false +
+ + 2302 + Quest_Edu102 + 16 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu102T00.unity3d/PfGrpQEdu102T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_OppositeHouses</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Mysterious Chicken Caper</Text><ID>927458</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1344 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2302 + 3046 + 0 + + + 1 + 2302 + 3047 + 0 + + + 1 + 2302 + 3048 + 0 + + + 1 + 2302 + 3049 + 0 + + + 1 + 2302 + 3050 + 0 + + + 1 + 2302 + 3051 + 0 + + + + 1 + 204673 + 0 + + 3046 + Edu102T01 + <Data><Offer><Type>Popup</Type><ID>929679</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Dude! I've got a situation. Our friend Phlegma has lost all the chickens and they are wreaking feathery havoc across Berk. Normally, I'd just sit back and watch the glorious destruction but my closest companion, Chicken, has gone missing too! @@ Talk to Phlegma at Berk. We must find Chicken... and if you have time, you can help her or whatever.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929680</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I could use your help. I don't know what happened! All the chickens are mixed up. They're lost in different parts of Berk because they can't find their nests! @@ We need to get them back into their coops. Luckily, I know exactly how we can sort these chickens.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma</Text><ID>921547</ID></Title><Desc><Text>Talk to Phlegma in Berk.</Text><ID>929678</ID></Desc></Data> + 0 + false + + + 3047 + Edu102T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWChickenEarlobeBrown</Asset><Location>PfMarker_BrownChicken</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929683</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>A chicken lays eggs that have the same color as its earlobes. We'll get each chicken to its nest by matching colors. Find the brown hen in Berk, {{input}} on her and lead her back to her nest. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929684</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Well done! This chicken is an Orpington. I bet she didn't give you much trouble. Orpington chickens are usually attractive and friendly.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BrownCoop</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>3</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWChickenEarlobeBrown</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the brown earlobe chicken to its nest</Text><ID>929681</ID></Title><Desc><Text>Lead the brown earlobe chicken to its nest between the houses in Berk.</Text><ID>929682</ID></Desc><Reminder><Text>Slow down. The chicken is falling behind!</Text><ID>936385</ID></Reminder><Failure><Text>You've lost the chicken!</Text><ID>936386</ID></Failure></Data> + 0 + false + + + 3048 + Edu102T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWChickenEarlobeBlue</Asset><Location>PfMarker_BlueChicken</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929687</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Don't be taken aback by the color of the egg. It doesn't mean that it's less healthy than other eggs. Eggs come in many different colors, just like hair color in Vikings. It's a trait inherited by the egg from its parents. @@ Now find the Ameraucana chicken, {{input}} on her, and lead her back to her nest. She's the one with the blue earlobe.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929688</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bucket swears he checked on the coops last night. How did these chickens get out?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BlueCoop</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>3</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWChickenEarlobeBlue</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the blue earlobe chicken to its nest</Text><ID>929685</ID></Title><Desc><Text>Lead the blue earlobe chicken to its nest between the houses in Berk.</Text><ID>929686</ID></Desc><Reminder><Text>Slow down. The chicken is falling behind!</Text><ID>936385</ID></Reminder><Failure><Text>You've lost the chicken!</Text><ID>936386</ID></Failure></Data> + 0 + false + + + 3049 + Edu102T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWChickenEarlobeGreen</Asset><Location>PfMarker_GreenChicken</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>929691</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The final nest has green eggs in it. Green eggs come from a brown earlobe hen and a blue earlobe rooster. Both of these colors pass on to the next generation of chickens. {{Input}} on the green earlobe chicken and lead it back to her nest.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929692</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Variation in egg color is a good example of [c][3eebff]inherited evolution[/c][ffffff]. Small changes in egg color occasionally happen in nature. If the chicken that hatches from the egg survives, it passes on the egg color change to the next generation. @@ This occurred over thousands of generations and millions of years until the egg color change is considered the norm of that species.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreenCoop</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>3</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWChickenEarlobeGreen</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the green earlobe chicken to its nest</Text><ID>929689</ID></Title><Desc><Text>Lead the green earlobe chicken to its nest between the houses in Berk.</Text><ID>929690</ID></Desc><Reminder><Text>Slow down. The chicken is falling behind!</Text><ID>936385</ID></Reminder><Failure><Text>You've lost the chicken!</Text><ID>936386</ID></Failure></Data> + 0 + false + + + 3050 + Edu102T05 + <Data><Offer><Type>Popup</Type><ID>929695</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Ah ha! I've found what caused our chicken catastrophe. Find me and I'll show you the little devil.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929696</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Tuffnut's chicken is a menace! He snuck in to the other coops, spooked the chickens, and chased them away. How did one little chicken do all this?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go back to Phlegma</Text><ID>929693</ID></Title><Desc><Text>Go back to Phlegma in Berk.</Text><ID>929694</ID></Desc></Data> + 0 + false + + + 3051 + Edu102T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWChickenTuffnut</Asset><Location>PfMarkerTuffnut_Chicken</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929699</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Tuffnut needs to rein his pet in. {{Input}} on Chicken and take him back to his master. Tell him to tread lightly... if he messes with my animals again, he'll have hell to pay!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929700</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken! You went on a rampage of chicken chaos through Berk? You caused all that trouble and confusion? @@ Oh Thor, I'm so proud. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>3</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWChickenTuffnut</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead Chicken back to Tuffnut</Text><ID>929697</ID></Title><Desc><Text>Lead Chicken back to Tuffnut in Berk.</Text><ID>929698</ID></Desc><Reminder><Text>Slow down. Chicken is falling behind!</Text><ID>936381</ID></Reminder><Failure><Text>You've lost Chicken!</Text><ID>936382</ID></Failure></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204673 + true + 300 + 300 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 204673 + true + 85 + 85 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204673 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204673 + true + 200 + 200 + + 0 + +
+ false +
+ + 2303 + SpringMazeT01 2016 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 5 + 01-01-2016 12:00:00,01-01-2017 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2303 + 3052 + 0 + + + + 1 + 204674 + 0 + + 3052 + SpringMazeT01 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Spring Maze Chest</Text><ID>930729</ID></Title></Data> + 0 + false + + + 1 +

6

+ 12889 + + 1 + 5283 + 204674 + true + 1 + 1 + + 0 + + + false +
+ + 2304 + SpringMazeT02 2016 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 3 + 2303 + 0 + false + + + 5 + 01-01-2016,01-01-2017 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2304 + 3053 + 0 + + + + 1 + 204675 + 0 + + 3053 + SpringMazeT02 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Spring Maze Chest</Text><ID>930729</ID></Title></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204675 + true + 100 + 100 + + 0 + + + false +
+ + 2307 + Quest_SpringMaze01 + 16 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQSpringMaze01T00.unity3d/PfGrpQSpringMaze01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mirage of Spring</Text><ID>927471</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1014 + 0 + false + + + 5 + 03-11-2016,06-01-2016 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2307 + 3056 + 0 + + + 1 + 2307 + 3057 + 0 + + + 1 + 2307 + 3058 + 0 + + + + 1 + 204678 + 0 + + 3056 + SpringMaze01T01 + <Data><Offer><Type>Popup</Type><ID>929882</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hey dude, I have a fun surprise for you! You're going to really enjoy it. You'll find it on the beach on Berk.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929883</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Isn't this cool? It's obviously a clue to the mysteries awaiting you within the latest offering to Loki!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_QSide4T01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look on the beach at Berk for Tuffnut's 'surprise'</Text><ID>929880</ID></Title><Desc><Text>Look on the beach at Berk for Tuffnut's surprise.</Text><ID>929881</ID></Desc></Data> + 0 + false + + + 3057 + SpringMaze01T02 + <Data><Offer><Type>Popup</Type><ID>929886</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>We put up a new maze where we had some of the others, and it's amazing! There's just one problem. We didn't ask Hiccup if we could do it... better to ask forgiveness, right? Will you talk to Hiccup for us?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929887</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Sigh. + +What have they done now? @@ Oh! That's not nearly as bad as I was imagining in my head. Well, the twins did a great job with the past mazes. I'm sure this one will be as great.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 3058 + SpringMaze01T03 + <Data><Offer><Type>Popup</Type><ID>929890</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You heard him! Get across the bridge and venture into Loki's Mirage... before Hiccup changes his mind!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929891</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You wonder what sorts of craziness the twins have up their sleeves...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HauntedHouseExit</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go across the bridge to the Loki's Mirage entrance</Text><ID>929888</ID></Title><Desc><Text>Go to the entrance of Loki's Mirage.</Text><ID>929889</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204678 + true + 100 + 100 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 204678 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 204678 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204678 + true + 50 + 50 + + 0 + +
+ false +
+ + 2308 + Quest_Edu103 + 12 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu103T00.unity3d/PfGrpQEdu103T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>So Very Tired...</Text><ID>927459</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2302 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2308 + 3059 + 0 + + + 1 + 2308 + 3060 + 0 + + + 1 + 2308 + 3061 + 0 + + + 1 + 2308 + 3062 + 0 + + + 1 + 2308 + 3063 + 0 + + + 1 + 2308 + 3064 + 0 + + + 1 + 2308 + 3065 + 0 + + + + 1 + 204679 + 0 + + 3059 + Edu103T01 + <Data><Offer><Type>Popup</Type><ID>929703</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I can't do it anymore. I can't take it! Snotlout Jorgenson is undervalued and underappreciated at the Training Grounds! They expect me to slave away all day and not take a single rest. All my energy is gone. I’m out of energy! @@ Heather can save me! Will you ask her if she can make me something to boost me up with some new energy?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929704</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Is Snotlout complaining again about his workload? I hope he’s not falling sick, but I doubt it. If you ask me, I think he’s just trying to look good in front of us by pretending to have a lot of duties!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the School</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather at the School.</Text><ID>923147</ID></Desc></Data> + 0 + false + + + 3060 + Edu103T02 + <Data><Offer><Type>Popup</Type><ID>929707</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's a very interesting phrase he used: "all my energy is gone." The interesting thing about that is that energy can never be fully lost. Instead, it changes forms and becomes a new type of energy. @@ (I'm nitpicking. I know that he meant that he's tired, but this is a great opportunity to play with some dragons!) Go to the Lookout for a fun exercise.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929708</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I got a bunch of friendly dragon helpers to show us the different forms of energy!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Lookout</Text><ID>930712</ID></Title><Desc><Text>Go to the Lookout.</Text><ID>930713</ID></Desc></Data> + 0 + false + + + 3061 + Edu103T03 + <Data><Offer><Type>Popup</Type><ID>929711</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Energy is the ability to do work, and it's used by everything from the smallest plant to the largest dragon. Think of it as the fuel that keeps everything moving in the world. It's what you use to walk around, talk, and even think. @@ Come to the top of the waterfall and you'll see the first example!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929712</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You can sense the power of the water as it flows over the mountain, right? The water flows down this mountain and crashes to the lake below because of gravity. Before the water falls down the mountain, it has a lot of potential gravitational energy because it's at a high altitude and we know that gravity will pull it to the ground. @@ When objects move, they generate kinetic energy; the potential gravitational energy is the amount of energy that will change to kinetic energy when the water falls.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Waterfall</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the waterfall</Text><ID>929709</ID></Title><Desc><Text>Look at the waterfall.</Text><ID>929710</ID></Desc></Data> + 0 + false + + + 3062 + Edu103T04 + <Data><Offer><Type>Popup</Type><ID>929715</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Potential, gravitational and kinetic energy are only the beginning of the fun! {{Input}} on the Monstrous Nightmare to look at the effects of the next type of energy.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929716</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>This is the normal dragon fireball, right? It's made out of fire and heat as it leaves the dragon's mouth. It's composed of heat energy (or thermal energy) and light energy. @@ The hotter the item, the greater the thermal energy it has! As the fireball cools down, it loses its heat energy to the surrounding environment until the flame finally disappears.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightmare</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightmare</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Monstrous Nightmare</Text><ID>929713</ID></Title><Desc><Text>{{Input}} on the Monstrous Nightmare.</Text><ID>929714</ID></Desc></Data> + 0 + false + + + 3063 + Edu103T05 + <Data><Offer><Type>Popup</Type><ID>929719</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>But what about dragons that don't shoot fire? Let's take a look at one of the most ferocious dragons out there, the Skrill. Find him in the Lookout and {{input}} on him!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929720</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The Skrill shoots electricity out of its mouth, instead of the normal dragon fireball! Electrical energy comes out when electricity creates motion, light or heat. The Skrill's shocking blast certainly qualifies for all of them!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSkrill</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSkrill</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Skrill</Text><ID>929717</ID></Title><Desc><Text>{{Input}} on the Skrill.</Text><ID>929718</ID></Desc></Data> + 0 + false + + + 3064 + Edu103T06 + <Data><Offer><Type>Popup</Type><ID>929723</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Dragons are so uniquely different from each other. It's fascinating, isn't it? I've been working with Fishlegs to document the scientific differences between the dragon species. I hope you'll be able to help me with that too. @@ Now! Let's find the Thunderdrum and {{input}} on him!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929724</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The mighty Thunderdrum uses sonic blasts to cow its enemies. Sound energy occurs when things vibrate. When the Thunderdrum shoots its powerful sonic blast, it travels as high frequency waves. @@ These waves vibrate the air and cause things that the air touches to also vibrate! This sonic wave blast can literally knock a Viking over!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWThunderdrum</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWThunderdrum</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Thunderdrum</Text><ID>929721</ID></Title><Desc><Text>{{Input}} on the Thunderdrum.</Text><ID>929722</ID></Desc></Data> + 0 + false + + + 3065 + Edu103T07 + <Data><Offer><Type>Popup</Type><ID>929727</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>As much as I get annoyed at Snotlout, he is a valued member of our team. Please give him this snack. When he eats this snack, he'll gain chemical energy. He can't use chemical energy as it is, but remember that energy can change forms (instead of being destroyed or created). @@ The chemical energy is stored as potential energy until his body needs to transform it into kinetic energy to walk, move, and go about his day. @@ Maybe the snack will stop him from complaining... but I doubt it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929728</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh. I was hoping for a home cooked meal... but this is nearly as good. Thanks to you, {{Name}}, Heather revealed her true intentions. I won't forget this favor!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give the food to Snotlout</Text><ID>929725</ID></Title><Desc><Text>Give the food to Snotlout.</Text><ID>929726</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204679 + true + 100 + 100 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 204679 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204679 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204679 + true + 200 + 200 + + 0 + +
+ false +
+ + 2309 + Quest TitanDragons01 + 2 +

+ <Data><Setup><Scene>DragonStableINTDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_ByJobBoard</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mysterious Runestones</Text><ID>927456</ID></Title></Data> + false + 0 + + + 4 + 8,20 + 0 + true + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2309 + 3079 + 0 + + + 2 + 2309 + 2310 + 0 + + + 1 + 2309 + 3068 + 0 + + + 1 + 2309 + 3069 + 0 + + + 1 + 2309 + 3070 + 0 + + + 1 + 2309 + 3077 + 0 + + + + 1 + 204681 + 0 + + 2310 + TitanDragons01T01 + 2 +

2309

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2310 + 3067 + 0 + + + + 1 + 204682 + 0 + + 3067 + TitanDragons01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, {{dragon name}} is really growing up. I wonder if we'll be able to help your dragon reach the next stage of its growth. Fishlegs has been researching about Titan Wing dragons... You should talk to him about it!</Text><ID>929579</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hey {{Name}}! Meatlug found this rune while we were helping Hiccup out with a stable quest. I've been poring through my notes from the Dragon Eye and I think this is to help dragons transition to the Titan Wing stage of its growth!</Text><ID>929580</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12826 + + 1 + 5288 + 204682 + true + 1 + 1 + + 0 + +
+ false + + + 3068 + TitanDragons01T02 + <Data><Offer><Type>Popup</Type><ID>929583</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We need more Titan Runes. I don't know how, but dragons seem to be able to find them easier without our help. We need to send your dragon out on stable quests! I'll meet you at your stables.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to your stables</Text><ID>929581</ID></Title><Desc><Text>Go to your stables.</Text><ID>929582</ID></Desc></Data> + 0 + false + + + 3069 + TitanDragons01T03 + <Data><Offer><Type>Popup</Type><ID>929586</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meet me by the quest board!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929587</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Now that you have a dragon of level 20, you'll be able to send dragons out on Medium and Hard difficulty stable quests that will award Titan Runes!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonStableINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StableQuestJobBoardVisit</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the quest board</Text><ID>929584</ID></Title><Desc><Text>Go to the quest board in your stables.</Text><ID>929585</ID></Desc></Data> + 0 + false + + + 3070 + TitanDragons01T04 + <Data><Offer><Type>Popup</Type><ID>929590</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Dragon Eye pointed toward this place called Titan Island where you can use the runes. Use your map to go to Titan Island!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929591</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What an island...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Titan Island</Text><ID>929588</ID></Title><Desc><Text>Go to Titan Island.</Text><ID>929589</ID></Desc></Data> + 0 + false + + + 3077 + TitanDragons01T05 + <Data><Offer><Type>Popup</Type><ID>929594</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You absolutely need to explore this amazing place! I want to see what you can discover.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929595</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I get the feeling that this... altar might hold the secret of the transformation to Titan Wing stage! Now that you know the way here, you should come back and explore the area when you've gathered 50 Titan Runes!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Altar</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the island</Text><ID>929592</ID></Title><Desc><Text>Explore Titan Island.</Text><ID>929593</ID></Desc></Data> + 0 + false + + + 3079 + TitanDragons01T01a + <Data><Offer><Type>Popup</Type><ID>929598</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{dragon name}} is Dragon Rank 20! Perhaps your dragon is ready to reach the Titan Stage of growth. Hiccup can start you on the journey when you are ready.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929599</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey there {{dragon name}}. You look nice and healthy! You and {{Name}} must be taking great care of each other!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about Titan Class Dragons</Text><ID>929596</ID></Title><Desc><Text>Talk to Hiccup about Titan Class Dragons.</Text><ID>929597</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204681 + true + 100 + 100 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204681 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204681 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204681 + true + 350 + 350 + + 0 + +
+ false +
+ + 2311 + Edu104 + 5 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu104T02.unity3d/PfGrpQEdu104T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Fishing for the Ages</Text><ID>927266</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1331 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2311 + 3071 + 0 + + + 1 + 2311 + 3072 + 0 + + + 1 + 2311 + 3073 + 0 + + + 2 + 2311 + 2312 + 0 + + + 2 + 2311 + 2313 + 0 + + + 1 + 2311 + 3076 + 0 + + + + 1 + 204684 + 0 + + 2312 + Edu104T04 + 5 +

2311

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2312 + 3074 + 0 + + + + 1 + 204685 + 0 + + 3074 + Edu104T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_FishlegsWall</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927746</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Our current fishing nets have very small holes to catch all sorts of fish. Unfortunately, this means that we catch a lot of mini young fish. We need to weave a fishnet with bigger holes; that way, when the juvies get caught they can simply swim out! @@ I've asked Skulder the Archaeologist if he could spare some of his rope, and he’s graciously agreed to give some from his latest dig site. Will you go to Dragon's Edge and talk to him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927747</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hi {{Name}}! It's great to see you out here. It's a bit further away from the School, but I had to go all the way back to Mudraker Island to get the rope! I hope it works for your needs.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist at Dragon's Edge</Text><ID>927744</ID></Title><Desc><Text>Talk to the Archaeologist at Dragon's Edge.</Text><ID>927745</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8274 + + 1 + 5291 + 204685 + true + 1 + 1 + + 0 + +
+ false + + + 2313 + Edu104T05 + 5 +

2311

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the rope</Text><ID>927265</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2313 + 3075 + 0 + + + + 1 + 204689 + 0 + + 3075 + Edu104T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>When Phlegma explained the situation to me, I knew I had to help as much as I could. I've seen firsthand the effect we Vikings can have on the environment that we live in. @@ When I excavate these ruins, I often find evidence that the people who lived there changed their land forever to suit their needs. @@ They would kill predators near their lands, ruining the balance of the food chain. I can tell that these Vikings have forever changed the shape of these islands over the years! @@ Ah! I'm rambling. I shouldn't keep you further. I hope you can make a new net from the rope. Off you go, then, back to the Botanist!</Text><ID>927750</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This is exactly what I needed. Give me one moment, and...</Text><ID>927751</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>8274</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rope</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the rope to the Botanist</Text><ID>927748</ID></Title><Desc><Text>Give the rope to the Botanist.</Text><ID>927749</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12951 + + 1 + 5295 + 204689 + true + 1 + 1 + + 0 + +
+ false +
+ + 3071 + Edu104T01 + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Thanks for rescuing the haul of fish from the Scauldrons. There were a lot of fish! I just finished separating the juvies--the young, juvenile fish--from the adults. @@ We can keep the adults, but we need to set the juvies free. Can you help Fishlegs save the little fish? I think I saw him at the Berk docks.</Text><ID>927754</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm glad you're here to help out, {{Name}}!</Text><ID>927755</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Archaeologist</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Fishlegs at Berk</Text><ID>927752</ID></Title><Desc><Text>Find Fishlegs at Berk</Text><ID>941085</ID></Desc></Data> + 0 + false + + + 3072 + Edu104T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>These poor little fish need to be back in the ocean at once. There's a little saltwater in the bucket but it won't last long. {{Input}} on me and follow me, and we'll take that bucket to the sea!</Text><ID>927758</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Be free, fish! Swim fast and strong!</Text><ID>927759</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQEdu104T02CS.unity3d/PfGrpQEdu104T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BeachToBoat</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Spline</Key><Value>Fishlegs_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Fishlegs at Berk and follow him</Text><ID>927756</ID></Title><Desc><Text>{{Input}} on Fishlegs and follow him to the beach.</Text><ID>932569</ID></Desc><Reminder><Text>Stay close to Fishlegs!</Text><ID>936264</ID></Reminder><Failure><Text>Oh no! Fishlegs left you behind!</Text><ID>936265</ID></Failure></Data> + 0 + false + + + 3073 + Edu104T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thanks for saving these young fish! It's important to catch adults rather than juveniles, in order to maintain a healthy ecosystem. @@ If we catch juveniles before they have time to mature into adults and spawn more fish, we'll have fewer and fewer fish in Berk seas, and eventually eliminate the population altogether. @@ Fish is a major source of food for both humans and dragons here, so you can see how that would be a major problem! @@ We keep catching the juvie fish even though we don't want them. I wonder if there's a way to change that. Can you talk to the Botanist about a possible solution to our problem?</Text><ID>927762</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You helped our fishers with the young fish? Good job. @@ We need to leave our surroundings intact. We haven’t always taken the best care of them. When we first arrived on the island, there was a vibrant forest at the Lookout. @@ Unfortunately, we harvested the trees, including the saplings... and now, that forest is gone forever. We can’t let that happen again.</Text><ID>927763</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist.</Text><ID>927761</ID></Desc></Data> + 0 + false + + + 3076 + Edu104T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The mesh of this fishnet should allow juvie fish to swim on through. Give this fishnet to Mulch. He's our master fisher, so if it meets his approval we can upgrade the entire Berk fishing fleet!</Text><ID>927766</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Thanks, {{greeting}}! This fishnet looks amazing. I'm sure it'll do the job and give the young fish some time to grow up and spawn! @@ You see, we couldn't live on Berk without the support of the land, the sea, and all the creatures that live within it. We need to make sure to treat the fish with respect so that we can continue to rely on them for food for generations to come!</Text><ID>927767</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>12951</Value></Pair><Pair><Key>ItemDescription</Key><Value>Upgraded Fishnet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the net to Mulch</Text><ID>927764</ID></Title><Desc><Text>Give the net to Mulch.</Text><ID>936627</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204684 + true + 300 + 300 + + 0 + +
+ + 65 +

2

+ 0 + + 1 + 633 + 204684 + true + 65 + 65 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204684 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204684 + true + 200 + 200 + + 0 + +
+ false +
+ + 2314 + Quest_Edu105 + 8 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu105T03.unity3d/PfGrpQEdu105T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu105T00.unity3d/PfGrpQEdu105T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_KidB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Meteors and Buckets</Text><ID>927460</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1108 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2314 + 3081 + 0 + + + 1 + 2314 + 3082 + 0 + + + 1 + 2314 + 3083 + 0 + + + 1 + 2314 + 3084 + 0 + + + 1 + 2314 + 3085 + 0 + + + 1 + 2314 + 3086 + 0 + + + 1 + 2314 + 3087 + 0 + + + 1 + 2314 + 3088 + 0 + + + + 1 + 204691 + 0 + + 3081 + Edu105T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Hello, young viking. A fine event is taking place today in Berk, or should I say: over Berk?... You'll get that on the way home. Anyway, there's an excellent view of a meteor shower at the Lookout. Have a look through the telescope! It's quite magical.</Text><ID>929731</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Ohhh! Ouch-ouch!</Text><ID>929732</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfTelescopeGronckleIron</Value></Pair><Pair><Key>Name</Key><Value>UseTelescope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the telescope at the Lookout</Text><ID>929729</ID></Title><Desc><Text>{{Input}} on the telescope at the Lookout to watch out for meteor showers.</Text><ID>934154</ID></Desc></Data> + 0 + false + + + 3082 + Edu105T02 + <Data><Offer><Type>Popup</Type><ID>929735</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Err... Can someone check on Bucket? Mulch isn't around and he sounds like he's in a lot of pain.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929736</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Help, {{Name}}! There are bits of sky falling down and my bucket’s just tightening up like there's going to be a storm. If the sky falls on my head I may end up dumber and this bit of brain is all I've got!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check up on Bucket</Text><ID>929733</ID></Title><Desc><Text>Find Bucket in the Lookout and make sure he's feeling well.</Text><ID>929734</ID></Desc></Data> + 0 + false + + + 3083 + Edu105T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929739</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now-now Bucket, I'm sure it's nothing but a small earthquake. We do live in Berk, remember? We have earthquakes nine months of the year and have volcanoes on the other three. If your bucket is feeling tight we should get Mulch to help you. @@ {{Name}}, I think there's a perfectly logical explanation for this. Could you go find Mulch? I think he said he was going to the Wilderness. He's always been better at calming down Bucket.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929740</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Uh-oh. Bucket has had these problems with weather for years, now. The larger the storm is the tighter the bucket wraps itself around his head. Sometimes he can work himself into a bit of a panic. We just need to explain the situation to him.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Mulch in the Wilderness</Text><ID>929737</ID></Title><Desc><Text>Find Mulch in the Wilderness.</Text><ID>929738</ID></Desc></Data> + 0 + false + + + 3084 + Edu105T04 + <Data><Offer><Type>Popup</Type><ID>929743</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I saw something land here before the earthquake. At first, I figured it was one of Gobber's hammerhead yaks, but since when do hammerhead yaks fly? @@ Well, never mind that. Head out to those trees. Whatever it is, you'll find it there.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929744</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Blast my beard! A meteorite? This is incredible. As a long time fisherman, I've studied the stars for most of my life, but this is a once in a lifetime opportunity.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMeteorite</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find what caused the earthquake</Text><ID>929741</ID></Title><Desc><Text>Find what caused the earthquake in the Wilderness.</Text><ID>929742</ID></Desc></Data> + 0 + false + + + 3085 + Edu105T05 + <Data><Offer><Type>Popup</Type><ID>929747</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>A [3eebff]meteorite[3e2c11] is a fragment of rock that fell from space and survived the trip through the atmosphere to hit the Earth. @@ You see, every object with mass has [3eebff]gravity[3e2c11], a force that draws other things together. Bigger objects have stronger gravity! @@ In space, gravity is the only force that affects most bodies. An object's ability to pull things closer is called its [3eebff]gravitational pull[3e2c11]. @@ This may be harder than I thought to explain to Bucket. His heart is a lot bigger than his bucket, you see. Can you chop off a piece of the meteorite? We'll need a piece of it to show to Bucket.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929748</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>A meteoroid was traveling near our planet when the Earth, a much larger mass, pulled it closer because of its [3eebff]gravitational pull[3e2c11]. @@ When it hit the atmosphere, the object hit the air molecules and slowed down through [3eebff]friction[3e2c11]. It dropped faster because of the friction in the air and fell rapidly toward the ground. @@ This is called a [3eebff]decaying orbit[3e2c11]. When the meteoroid hit the ground, it became a meteorite!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMeteorite</Value></Pair><Pair><Key>Name</Key><Value>PfMeteoriteShard</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop off a piece of the meteorite and pick it up</Text><ID>929745</ID></Title><Desc><Text>Chop off a piece of the meteorite and pick it up in the Wilderness.</Text><ID>929746</ID></Desc></Data> + 0 + false + + + 3086 + Edu105T06 + <Data><Offer><Type>Popup</Type><ID>929751</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Go on, take that piece to Bucket and show him! It's just a falling rock, not the entire sky. There's nothing to fear!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929752</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>But Mulch, first you said there were falling rocks and now you're saying there are decaying orbits?! This is even worse than I thought. Are you telling me that there's nothing to stop the moon from falling on me?!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>ItemID</Key><Value>12952</Value></Pair><Pair><Key>ItemDescription</Key><Value>Meteorite Fragment</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Show the meteorite fragment to Bucket</Text><ID>929749</ID></Title><Desc><Text>Show the meteorite fragment to Bucket in the School.</Text><ID>929750</ID></Desc></Data> + 0 + false + + + 3087 + Edu105T07 + <Data><Offer><Type>Popup</Type><ID>929755</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>No, Bucket. The gravitational force of the moon is strong enough to keep it at the same distance away from the Earth. Unlike a [3eebff]decaying orbit[3e2c11], it maintains that distance around the planet. This is called a [3eebff]sustained orbit[3e2c11]. @@ The moon's orbit won't decay because it’s too far away from us. Don't look at me like that, Bucket. It's really not as complicated as it sounds. See if you can explain it to him, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQEdu105T07.unity3d/PfUiQuizQEdu105T07</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer Bucket's questions about orbits</Text><ID>41840</ID></Title><Desc><Text>Answer Bucket's questions about orbits. He's in the School.</Text><ID>929757</ID></Desc></Data> + 0 + false + + + 3088 + Edu105T08 + <Data><Offer><Type>Popup</Type><ID>929758</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Okay, but I still don't understand why this meteorite fell to the Earth and the moon won't. Aren't they the same?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929759</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wow. My bucket feels a whole lot looser, now. Well, what was I scared about, again? A tip of the cap to you, {{Name}}. I'm glad you helped me feel better.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQEdu105T08.unity3d/PfUiQuizQEdu105T08</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer Bucket's questions about orbits</Text><ID>41840</ID></Title><Desc><Text>Answer Bucket's questions about orbits. He's in the School.</Text><ID>929757</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204691 + true + 300 + 300 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 204691 + true + 85 + 85 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204691 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204691 + true + 200 + 200 + + 0 + +
+ false +
+ + 2315 + Volcano19 + 45 +

+ <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano19T05.unity3d/PfGrpVolcano19T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano19T12.unity3d/PfGrpVolcano19T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Mission Start!</Text><ID>927628</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2344 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2315 + 3089 + 0 + + + 1 + 2315 + 3090 + 0 + + + 1 + 2315 + 3091 + 0 + + + 1 + 2315 + 3092 + 0 + + + 1 + 2315 + 3093 + 0 + + + 1 + 2315 + 3094 + 0 + + + 2 + 2315 + 2316 + 0 + + + 1 + 2315 + 3099 + 0 + + + 1 + 2315 + 3100 + 0 + + + 1 + 2315 + 3101 + 0 + + + 1 + 2315 + 3102 + 0 + + + 1 + 2315 + 3177 + 0 + + + 2 + 2315 + 2317 + 0 + + + 1 + 2315 + 3104 + 0 + + + 1 + 2315 + 3105 + 0 + + + 1 + 2315 + 3106 + 0 + + + 1 + 2315 + 3107 + 0 + + + 1 + 2315 + 3108 + 0 + + + 1 + 2315 + 3110 + 0 + + + + 1 + 204692 + 0 + + 2316 + Volcano19T07 + 45 +

2315

+ <Data><Offer><Type>Popup</Type><ID>927621</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're on your own from here, {{Name}}, but I believe in you. Hiccup is guiding those Whispering Deaths to make tunnels that meet these areas near the magma. Fly around and look for places where the rock wall is getting weak. @@ Use the Eruptodon's fireballs to blast open any weak spots that you find!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano19T07.unity3d/PfGrpVolcano19T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927622</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That should do it! Mission accomplished.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Break open the lava tunnels</Text><ID>927620</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2316 + 3095 + 0 + + + 1 + 2316 + 3096 + 0 + + + 1 + 2316 + 3097 + 0 + + + 1 + 2316 + 3098 + 0 + + + 1 + 2316 + 3160 + 0 + + + 1 + 2316 + 3161 + 0 + + + + 1 + 0 + 0 + + 3095 + Volcano19T07A + <Data><Objective><Pair><Key>Location</Key><Value>PfRockShardB01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardB01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Break open the lava tunnels with fireballs</Text><ID>931429</ID></Title><Desc><Text>Break open the lava tunnels with fireballs</Text><ID>942133</ID></Desc></Data> + 0 + false + + + 3096 + Volcano19T07B + <Data><Objective><Pair><Key>Location</Key><Value>PfRockShardB02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardB02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Break open the lava tunnels with fireballs</Text><ID>931429</ID></Title><Desc><Text>Break open the lava tunnels with fireballs</Text><ID>942133</ID></Desc></Data> + 0 + false + + + 3097 + Volcano19T07C + <Data><Objective><Pair><Key>Location</Key><Value>PfRockShardB03</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardB03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Break open the lava tunnels with fireballs</Text><ID>931429</ID></Title><Desc><Text>Break open the lava tunnels with fireballs</Text><ID>942133</ID></Desc></Data> + 0 + false + + + 3098 + Volcano19T07D + <Data><Objective><Pair><Key>Location</Key><Value>PfRockShardB04</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardB04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Break open the lava tunnels with fireballs</Text><ID>931429</ID></Title><Desc><Text>Break open the lava tunnels with fireballs</Text><ID>942133</ID></Desc></Data> + 0 + false + + + 3160 + Volcano19T07E + <Data><Objective><Pair><Key>Location</Key><Value>PfRockShardB05</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardB05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Break open the lava tunnels with fireballs</Text><ID>931429</ID></Title><Desc><Text>Break open the lava tunnels with fireballs</Text><ID>942133</ID></Desc></Data> + 0 + false + + + 3161 + Volcano19T07F + <Data><Objective><Pair><Key>Location</Key><Value>PfRockShardB06</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardB06</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Break open the lava tunnels with fireballs</Text><ID>931429</ID></Title><Desc><Text>Break open the lava tunnels with fireballs</Text><ID>942133</ID></Desc></Data> + 0 + false + + false + + + 2317 + Volcano19T14 + 45 +

2315

+ <Data><Offer><Type>Popup</Type><ID>932566</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is [c][3eebff]not[/c][ffffff] a good time for jokes, Astrid! {{Name}}, try to get the Green Death's attention away from Harald or he might be in some big trouble! Hit the Green Death with some fireballs.</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><ID>932878</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ah! This couldn't have happened to a more deserving pirate.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T13CS.unity3d/PfGrpVolcano19T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>2</Priority></Offer><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T14.unity3d/PfGrpVolcano19T14</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_BeachHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_BeachNightFury</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_BeachValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWEruptodon</Asset><Location>PfMarker_BeachEruptodon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWStormcutter</Asset><Location>PfMarker_BeachCloudjumper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927627</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Maybe we can calm her down! If we used the Sagefruit to--</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T14CS.unity3d/PfGrpVolcano19T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Distract the Green Death</Text><ID>927623</ID></Title><Desc><Text>Distract the Green Death with fireballs.</Text><ID>927624</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 2317 + 3103 + 0 + + + + 1 + 0 + 0 + + 3103 + Volcano19T14 + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGreenDeath</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGreenDeath</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Distract the Green Death</Text><ID>927623</ID></Title><Desc><Text>Distract the Green Death by hitting it with fireballs</Text><ID>942134</ID></Desc></Data> + 0 + false + + false +
+ + 3089 + Volcano19T01 + <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano18T00_INT.unity3d/PfGrpVolcano18T00_INT</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>If I understand Skulder correctly, the Green Death's nest is blocking the pressure from the magma and causing sulfuric gas to come out of the underwater vents. I am glad that your plan will not harm the Green Death or her nest. @@ It's not her fault that she's causing these problems, and it is very much our responsibility to let dragons live in their natural habitat. We can get started once the Green Death leaves her nest. There's no need to antagonize her any further. @@ Would you keep a lookout from that hill to see if the dragon leaves?</Text><ID>931435</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T01CS.unity3d/PfGrpVolcano19T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hill</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Green Death</Text><ID>931433</ID></Title><Desc><Text>Look for the Green Death from a good vantage point</Text><ID>942135</ID></Desc></Data> + 0 + false + + + 3090 + Volcano19T02 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T02.unity3d/PfGrpVolcano19T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupTunnels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_NightFuryTunnels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>There! If she's gone to feed, we won't have much time to waste. Please let my son know that our window of opportunity is open.</Text><ID>931438</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! I saw the Green Death leave, too. Let's get started!</Text><ID>931439</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T02CS.unity3d/PfGrpVolcano19T02CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup to start the operation</Text><ID>931436</ID></Title><Desc><Text>Talk to Hiccup to start the operation and stop the poisonous fog</Text><ID>942136</ID></Desc></Data> + 0 + false + + + 3091 + Volcano19T03 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWEruptodon</Asset><Location>PfMarker_Eruptodon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_NightFuryTunnels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupTunnels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay! Skulder and I plotted out the paths these Whispering Deaths will need to take, but we can only keep the dragons on pace with both me and my mother wrangling them. You'll need to meet us from the other side, from inside the volcano. @@ Meet up with Astrid to go inside the volcano. Good luck, {{Name}}... but I hope you won't need it!</Text><ID>931442</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup gave us the most important part of the mission. I know we can do it!</Text><ID>931443</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid by the entrance to the volcano</Text><ID>931440</ID></Title><Desc><Text>Talk to Astrid by the entrance to the volcano</Text><ID>931440</ID></Desc></Data> + 0 + false + + + 3092 + Volcano19T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Now that you're going into the volcano, you don't need poor old Harald to go with you. I've helped as much as I can!</Text><ID>932873</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nope. There's no way we're going to let you wander about without one of us by your side. You can trust me and {{Name}}. We'll keep you safe. Besides, we might need your help since you've been inside the volcano before. Let's go!</Text><ID>932977</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HaraldSecretEntrance</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the volcano</Text><ID>931444</ID></Title><Desc><Text>Enter the volcano behind Astrid</Text><ID>942137</ID></Desc></Data> + 0 + false + + + 3093 + Volcano19T05 + <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_HaraldStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll keep an eye on this guy while we go deeper into the volcano. {{Input}} on him and lead us down the tunnel.</Text><ID>931450</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>You dragon riders always take me to the most interesting places.</Text><ID>931451</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RampEdge</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Harald and lead them into the volcano</Text><ID>931448</ID></Title><Desc><Text>{{Input}} on Harald and lead the group down into the volcano</Text><ID>942138</ID></Desc><Reminder><Text>You're going too fast! Slow down!</Text><ID>936442</ID></Reminder><Failure><Text>You lost the group! You should go back and get them.</Text><ID>936443</ID></Failure></Data> + 0 + false + + + 3094 + Volcano19T06 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The air above the volcano is too hot for normal dragons, but this is the Eruptodon's natural habitat. It should be able to shield the heat from you. {{Input}} on the Eruptodon and mount it!</Text><ID>931454</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Location</Key><Value>PfDWEruptodon</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Eruptodon</Text><ID>931452</ID></Title><Desc><Text>{{Input}} on the Eruptodon to mount it</Text><ID>942139</ID></Desc></Data> + 0 + false + + + 3099 + Volcano19T10 + <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano19T10.unity3d/PfGrpVolcano19T10</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We won't have another chance like this with the Green Death away from the volcano. Can you pick up the stolen orb before she comes back?</Text><ID>931457</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T10CS.unity3d/PfGrpVolcano19T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Uh oh. I think the Green Death has had enough of us near her nest. We need to get out of here!</Text><ID>931458</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Location</Key><Value>PfCollectDWLegendaryEgg</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWLegendaryEgg</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up Harald's stolen orb</Text><ID>931455</ID></Title><Desc><Text>Pick up Harald's stolen orb while you have the chance</Text><ID>942140</ID></Desc></Data> + 0 + false + + + 3100 + Volcano19T11 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Harald is gone and he took my compass! That thief was just waiting for a distraction to bolt for it! Ugh, if I could... no, getting you to safety is priority number one. Fly up here away from the magma and bring me that orb!</Text><ID>931461</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wait a second... this looks like it could be a dragon egg of some sort! Just look at how the-- @@ Sorry, I just slipped into my inner Fishlegs there. We need to get out of here, right away!</Text><ID>931462</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>12977</Value></Pair><Pair><Key>ItemDescription</Key><Value>Harald's Stolen Orb</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the orb to Astrid</Text><ID>931459</ID></Title><Desc><Text>Give the orb to Astrid before anything else goes wrong</Text><ID>942141</ID></Desc></Data> + 0 + false + + + 3101 + Volcano19T12 + <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_RampBottom</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This egg is shining right into my eyes, I'm going to have to be careful. {{Input}} on me and stay close. Let's get out of the tunnel before the Green Death catches us!</Text><ID>931465</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wait a second. What's this?</Text><ID>931466</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridReally</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HaraldExit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Spline</Key><Value>AstridEgg</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Astrid and follow her through the tunnel</Text><ID>931463</ID></Title><Desc><Text>{{Input}} on Astrid and follow her through the tunnel before the Green Death catches you</Text><ID>942142</ID></Desc><Reminder><Text>You're falling behind! Catch up to Astrid!</Text><ID>936444</ID></Reminder><Failure><Text>You lost Astrid! Go back and try again!</Text><ID>936445</ID></Failure></Data> + 0 + false + + + 3102 + Volcano19T13 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That dirty rat had a secret exit ready all along! If we hurry, maybe we can catch up to him!</Text><ID>931469</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HaraldPassage</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go through Harald's secret passageway</Text><ID>931467</ID></Title><Desc><Text>Go through Harald's secret passageway to catch him up</Text><ID>942143</ID></Desc></Data> + 0 + false + + + 3104 + Volcano19T15 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T15.unity3d/PfGrpVolcano19T15</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_BeachHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_BeachValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_BeachNightFury</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWEruptodon</Asset><Location>PfMarker_BeachEruptodon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWStormcutter</Asset><Location>PfMarker_BeachCloudjumper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>No, the Sagefruit won't work! I've seen this behavior with the Red Death before. We need to fix the Green Death's attention on something or we won't be able to stop her rampage. @@ Toothless, do you think you could try to persuade our giant friend here? {{Name}}, help Toothless focus by {{input}}ing on him!</Text><ID>931472</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The alpha is the king of dragons. He protects his own!</Text><ID>931473</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T15CS.unity3d/PfGrpVolcano19T15CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Toothless</Text><ID>930969</ID></Title><Desc><Text>{{Input}} on Toothless to stop the Green Death</Text><ID>942144</ID></Desc></Data> + 0 + false + + + 3105 + Volcano19T16 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T16.unity3d/PfGrpVolcano19T16</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_HillToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_BeachHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_BeachValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWEruptodon</Asset><Location>PfMarker_BeachEruptodon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job, bud. I think that might have done the trick. We'll need to get a bit closer-- carefully-- to see if the Green Death is truly calm.</Text><ID>931476</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wait, look out!</Text><ID>931477</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T16CS.unity3d/PfGrpVolcano19T16CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWhoa</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GreenDeath</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreenDeath</Value></Pair><Pair><Key>Range</Key><Value>13</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get closer to the Green Death</Text><ID>931474</ID></Title><Desc><Text>Get closer to the Green Death to make sure it has calmed down</Text><ID>942145</ID></Desc></Data> + 0 + false + + + 3106 + Volcano19T17 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T17.unity3d/PfGrpVolcano19T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_CoverHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_CoverValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_CoverNightFury</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWEruptodon</Asset><Location>PfMarker_CoverEruptodon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Not good, not good! Everyone get to cover! {{Name}}, Toothless and I need to keep everyone safe down here. I need to rely on you to fly up to the Green Death and calm her down. You can do it! @@ Fly straight, avoid those fireballs, and bring that dragon back down!</Text><ID>931480</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreenDeathFlying</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Avoid the fireballs and fly up to the Green Death</Text><ID>931478</ID></Title><Desc><Text>Avoid the fireballs and fly up to the Green Death above the clouds</Text><ID>942146</ID></Desc></Data> + 0 + false + + + 3107 + Volcano19T18 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T17.unity3d/PfGrpVolcano19T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You need to get close to see if you can help. You should jump on the Green Death's back.</Text><ID>931483</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfGreenDeath_AvatarJumpAction</Value></Pair><Pair><Key>Name</Key><Value>Jump</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Jump onto the Green Death's back</Text><ID>931481</ID></Title><Desc><Text>Jump onto the Green Death's back from your dragon</Text><ID>942147</ID></Desc></Data> + 0 + false + + + 3108 + Volcano19T19 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T19.unity3d/PfGrpVolcano19T19</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T17.unity3d/PfGrpVolcano19T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Green Death was angered by Harald's attack for good reason. The mast is piercing her neck. You should chop that mast to pieces and remove the thorn from the Green Death's neck.</Text><ID>931486</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano19T19CS.unity3d/PfGrpVolcano19T19CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Did it work? Is it safe?</Text><ID>931487</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWMast</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectDWMast</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the mast from the dragon's neck</Text><ID>931484</ID></Title><Desc><Text>Chop the mast from the dragon's neck to stop its rampage</Text><ID>942148</ID></Desc></Data> + 0 + false + + + 3110 + Volcano19T21 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_BeachAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_BeachHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_BeachValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_BeachNightFury</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano19T21.unity3d/PfGrpVolcano19T21</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWEruptodon</Asset><Location>PfMarker_BeachEruptodon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_BeachSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You did it! That was amazing! I need to catch my breath. We couldn't see you because of the clouds-- well, and the "dodging fireballs for our lives" thing. Come tell me what you did up there!</Text><ID>931490</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. You did some quick thinking on the spot. You really stepped up when I needed you. Amazing job. Amazing!</Text><ID>931491</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup and tell him what you did</Text><ID>942149</ID></Desc></Data> + 0 + false + + + 3177 + Volcano19T13_1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go through Harald's secret passageway</Text><ID>931467</ID></Title><Desc><Text>Go through Harald's secret passageway to catch up to him</Text><ID>942150</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204692 + true + 100 + 100 + + 0 + +
+ + 500 +

1

+ 0 + + 1 + 518 + 204692 + true + 500 + 500 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204692 + true + 50 + 50 + + 0 + +
+ + 500 +

8

+ 0 + + 1 + 2247 + 204692 + true + 500 + 500 + + 0 + +
+ false +
+ + 2319 + Volcano15 + 25 +

+ <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano15T00_INT.unity3d/PfGrpVolcano15T00_INT</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Heart of Dragon Island</Text><ID>927613</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2338 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2319 + 3117 + 0 + + + 1 + 2319 + 3118 + 0 + + + 1 + 2319 + 3119 + 0 + + + 1 + 2319 + 3120 + 0 + + + 1 + 2319 + 3121 + 0 + + + 1 + 2319 + 3122 + 0 + + + 1 + 2319 + 3123 + 0 + + + + 1 + 204694 + 0 + + 3117 + Volcano15T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What a ride, my friend! I'm not accustomed to that speed quite yet. Give me a moment to recover, then we can take a look at the interesting geological feature you mentioned. Take another look at that smoke pillar in the water.</Text><ID>931316</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah! This is a [c][3eebff]hydrothermal vent[/c][ffffff]. They're found in areas where volcanic activity is strong. The magma under the earth is pushing out here and releasing lots of chemicals into the water and air. @@ That column of smoke is what's known as a [c][3eebff]black smoker[/c][ffffff]... and it's releasing high levels of sulfur-bearing materials. @@ Our alchemic friend Heather determined that the fog was made out of sulfur dioxide. These vents could be the source of our fog!</Text><ID>931317</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HydrothermalVent</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take another look at the smoke pillar in the water</Text><ID>931314</ID></Title><Desc><Text>Fly over to the smoke pillar in the water and take another look</Text><ID>942113</ID></Desc></Data> + 0 + false + + + 3118 + Volcano15T02 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_NearVent</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Why are the vents so active now? They've always been there, but the fog has never been such a problem before. Perhaps there is something terrible going on inside the volcano. @@ It's not usually my style to go into danger headfirst... but this is very important. Can you please {{input}} on me and take me to the tunnel that leads inside of the mountain?</Text><ID>931320</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's odd walking on this island. I'm used to dealing with [c][3eebff]sedimentary rocks[/c][ffffff] from other islands. When minerals, dead plants and animals erode due to time and weather, they become [c][3eebff]sediment[/c][ffffff]. This dust like material is carried by water, air, or ice into a single place. @@ More minerals and other materials cover the sediment, putting a lot of weight and pressure onto it. Over time, the sediment turns into [c][3eebff]sedimentary rocks[/c][ffffff]. @@ Wait. What was that? Who's there?!</Text><ID>931321</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano15T02CS.unity3d/PfGrpVolcano15T02CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveEntrance</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Skulder and lead him to the entrance of the cave</Text><ID>931318</ID></Title><Desc><Text>{{Input}} on Skulder and lead him to the entrance of the cave</Text><ID>931318</ID></Desc><Reminder><Text>Stay close to Skulder, the Archaeologist!</Text><ID>936436</ID></Reminder><Failure><Text>Oh no! You left Skulder behind!</Text><ID>936437</ID></Failure></Data> + 0 + false + + + 3119 + Volcano15T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You! @@ Step away from the foul fiendish freebooter, everyone. I'm going to throw my shovel at him!</Text><ID>932870</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, well, well. Harald, you really gave us the runaround but we finally caught you. Play nice; the last thing you want to do is face an angry Night Fury.</Text><ID>932973</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I've been stranded here for days and my boat is already at the bottom of the ocean. Have a bit of sympathy, lads and lassies. I'll willingly submit to whichever punishment you have in mind if you can take me off the island. Please, {{Name}}, talk to me! I'm sure you can help me convince your friends.</Text><ID>932974</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Look mate, I'm sorry about what happened but business is business. This may sound strange, but it's really good to see you. My compass broke, my ship sank, and I haven't seen a single soul ever since I sent out my pet Leopold for help. @@ I overheard you talking about going inside the volcano, but trust me. We need to get out of here. There's something... bad inside that volcano.</Text><ID>931327</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title><Desc><Text>Talk to Harald and see what he's been up to</Text><ID>942114</ID></Desc></Data> + 0 + false + + + 3120 + Volcano15T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you so much for the 'helpful advice', Harald. But I think we'll make up our own minds about where we go. At least if you don't have a ship, I can keep a close eye on you from now on. @@ We need to go inside and see if there really is something wrong with the inside of the volcano! Harald is probably trying to trick us somehow. Let's head inside that tunnel that my dad made.</Text><ID>931330</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wow, it's hot in here. We're inside a lava tube! When a volcano erupts, sometimes the lava creates a tunnel as it pushes through soft rock on its way to the surface. Then, this tunnel is used as a pipe for lava during the eruptions that follow. It's the quickest way that lava can leave a volcano!</Text><ID>931331</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the tunnel into the volcano</Text><ID>931328</ID></Title><Desc><Text>Enter the tunnel into the volcano to see what Harald is hiding</Text><ID>942115</ID></Desc></Data> + 0 + false + + + 3121 + Volcano15T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These rock formations on that wall are exactly what I was looking for. Step over here and take a look!</Text><ID>931334</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>If you look close, you can see that the rock formations show multiple layers of different rock. The layer closest to the outside is [c][3eebff]igneous rock[/c][ffffff]. Lava cools down to form this hard and coarse rock. The layer just below the igneous rock looks smoother, right? It's because that layer is a completely different type of rock. @@ Over time, more lava cools down on top of the [c][3eebff]igneous rock[/c][ffffff] and creates a new layer of rock over it. The pressure from the layer on top of it and the heat from the magma exert a lot of force onto the igneous rock and change its shape. It gets smaller and more compact, and forms a new type of rock called [c][3eebff]metamorphic rock[/c][ffffff]. @@ The placement of these layers created the island around the volcano over the course of many years!</Text><ID>931335</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RockFormations</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Examine the rock formations on the wall</Text><ID>931332</ID></Title><Desc><Text>Examine the rock formations on the wall of the lava tube</Text><ID>942116</ID></Desc></Data> + 0 + false + + + 3122 + Volcano15T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, everything looks good in here; we're going to have to explore a little deeper to be sure. Follow this tunnel and see if you can get a better look. But be careful where you step-- I mean, we're still inside a volcano!</Text><ID>931338</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano15T06CS.unity3d/PfGrpVolcano15T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Outlook</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore deeper inside the volcano</Text><ID>931336</ID></Title><Desc><Text>Explore deeper inside the volcano</Text><ID>931336</ID></Desc></Data> + 0 + false + + + 3123 + Volcano15T07 + <Data><Offer><Type>Popup</Type><ID>931341</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>WHOA! I mean... whoa. Could you, err... quietly walk back outside... before the giant dragon wakes up?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932871</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh thank Thor we made it. That can't be a Red Death... but I didn't want to risk making it mad. Was it just me, or did it have green scales?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932975</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well, well, well. You know, I didn't want to say 'I told you so', but... Wait. Actually, I did and I will. I told you so!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Volcano15Exit</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Sneak outside without waking the Green Death</Text><ID>931339</ID></Title><Desc><Text>Sneak outside without waking the Green Death!</Text><ID>931340</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204694 + true + 100 + 100 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 204694 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204694 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204694 + true + 350 + 350 + + 0 + +
+ false +
+ + 2320 + Volcano02 + 46 +

+ <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano02T00.unity3d/PfGrpVolcano02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano02T12.unity3d/PfGrpVolcano02T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dragon Rider, Undercover</Text><ID>927563</ID></Title><Desc><Text>Dragon Rider, Undercover</Text><ID>927563</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2329 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2320 + 3124 + 0 + + + 1 + 2320 + 3125 + 0 + + + 1 + 2320 + 3126 + 0 + + + 1 + 2320 + 3127 + 0 + + + 1 + 2320 + 3128 + 0 + + + 1 + 2320 + 3129 + 0 + + + 1 + 2320 + 3130 + 0 + + + 1 + 2320 + 3131 + 0 + + + 2 + 2320 + 2321 + 0 + + + 2 + 2320 + 2322 + 0 + + + 1 + 2320 + 3134 + 0 + + + 1 + 2320 + 3135 + 0 + + + 1 + 2320 + 3136 + 0 + + + 1 + 2320 + 3137 + 0 + + + 1 + 2320 + 3138 + 0 + + + 1 + 2320 + 3139 + 0 + + + 1 + 2320 + 3140 + 0 + + + 1 + 2320 + 3141 + 0 + + + 1 + 2320 + 3142 + 0 + + + 1 + 2320 + 3143 + 0 + + + + 1 + 204695 + 0 + + 2321 + Volcano02T09 + 46 +

2320

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2321 + 3132 + 0 + + + + 1 + 204696 + 0 + + 3132 + Volcano02T09 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>But you were the one who asked me about it.</Text><ID>932857</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Never mind your excuses. Some do-gooder dragon rider probably crushed it smaller. If the dragon rider can hear me, he or she had better go running back to their hiding place because Eret, son of Eret, is going to hunt you down! @@ Do you hear me? Go back to your hiding place!</Text><ID>932961</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There you are. Why are you two out of breath?</Text><ID>932858</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>It's a long and epic tale of clever deception and narrow escapes that only {{Name}} and the great Eret were crazy enough to pull off.</Text><ID>932962</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Astrid</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Escape to the hiding place</Text><ID>930818</ID></Title><Desc><Text>Escape to the hiding place without being spotted by the guard</Text><ID>942014</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12979 + + 1 + 5296 + 204696 + true + 1 + 1 + + 0 + +
+ false + + + 2322 + Volcano02T10 + 46 +

2320

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the Monstrous Nightmare teeth to the storekeeper</Text><ID>927561</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2322 + 3133 + 0 + + + + 1 + 204697 + 0 + + 3133 + Volcano02T10 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_02Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't think I want to know. @@ {{Name}}, here's a bag of Monstrous Nightmare teeth from Gobber. Give it to that Shifty Storekeeper and maybe we can finally catch up to Harald!</Text><ID>930826</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>Wow! This'll be enough to settle my customers and then some. How did you get so many dragon teeth? You must be the craziest dragon hunter that I've ever met. @@ A deal is a deal! Harald left me this map for the next dragon tooth trade. "X" marks the spot. Come back any time you've got something to trade.</Text><ID>930827</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>ItemID</Key><Value>12979</Value></Pair><Pair><Key>ItemDescription</Key><Value>Monstrous Nightmare Teeth</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the dragon teeth to the storekeeper</Text><ID>930824</ID></Title><Desc><Text>Give the dragon teeth to the storekeeper to find out where Harald is</Text><ID>942015</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12980 + + 1 + 5350 + 204697 + true + 1 + 1 + + 0 + +
+ false +
+ + 3124 + Volcano02T01 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_EretStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>It feels like an age since I was last here. I'd hoped that I would never have to set foot here again, but I guess you can only avoid your past for so long. {{Input}} on me and I'll show you around.</Text><ID>930830</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>Short Wing Singetail for sale! It's fresh from the wild and in need of strong chains around its neck!</Text><ID>930831</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AuctionIslandCenter</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Spline</Key><Value>PfVolcano02T01_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Eret and follow him</Text><ID>930828</ID></Title><Desc><Text>{{Input}} on Eret and follow him to the center of Auction Island</Text><ID>942016</ID></Desc><Reminder><Text>Keep up with Eret. You're falling behind!</Text><ID>936422</ID></Reminder><Failure><Text>You've lost Eret!</Text><ID>936425</ID></Failure></Data> + 0 + false + + + 3125 + Volcano02T02 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>It's that slimy dragon trader. He's been catching and selling dragons to the worst kinds of scum for years. I reckon it's time for his little business to take a dive. Have a word with the dragon trader and find out where he's keeping that Singetail.</Text><ID>930834</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>Eh? You look a little young to be dragon hunting. You should leave my stand now. I've got real business to attend to. Singetail for sale!</Text><ID>930835</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonTrader</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the dragon trader about the Singetail</Text><ID>930832</ID></Title><Desc><Text>Talk to the dragon trader about the Singetail and find out where it is</Text><ID>942017</ID></Desc></Data> + 0 + false + + + 3126 + Volcano02T03 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Not as stupid as he looks but don't worry, my friend. We'll get another chance. In the meantime, do you see that shifty looking storekeeper to my starboard? If there's anyone here who knows where Harald is, it'd be him. Try to sweet talk it out of him.</Text><ID>930838</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>Harald? Yeah, I know that scoundrel. Don't bug me about him; I've got other things on my mind. I've made deals all over town with some pretty nasty hunters. If I don't come up with some dragon teeth soon, I'll lose mine. @@ I don't have time for you unless you can get me some dragon teeth. If you get me some, then we can talk about where to find Harald.</Text><ID>930839</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the shifty storekeeper about Harald</Text><ID>930836</ID></Title><Desc><Text>Talk to the shifty storekeeper about Harald. Maybe he knows where that pirate is</Text><ID>942018</ID></Desc></Data> + 0 + false + + + 3127 + Volcano02T04 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Well, he could have asked for worse. Would you let me have a go at him? I have a way with these tradesmen. Head back to the docks and ask Astrid if she can help you find some dragon teeth.</Text><ID>930842</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've got it! Gobber has been cleaning dragon teeth for years and I'll bet he's got buckets of old teeth lying around. I'll get them for you. Stay here and make sure Eret has some backup.</Text><ID>930843</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid on the docks</Text><ID>930840</ID></Title><Desc><Text>Talk to Astrid on the docks about dragon teeth</Text><ID>942019</ID></Desc></Data> + 0 + false + + + 3128 + Volcano02T05 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Astrid might be a while and there's still a caged Singetail somewhere on this island. You should find it before it gets sold to a vicious dragon hunter.</Text><ID>930846</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There it is... but it looks like that dragon hunter is guarding the cage.</Text><ID>930847</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CagedSingetail</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CagedSingetail</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the caged Singetail</Text><ID>930844</ID></Title><Desc><Text>Find the caged Singetail. It must be on Auction Island somewhere</Text><ID>942020</ID></Desc></Data> + 0 + false + + + 3129 + Volcano02T06 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Perhaps Eret can help you out if you clue him in on the situation.</Text><ID>930850</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Sorry, mate. He's a hard lock to crack. The only thing I learned was that Harald wants his gold delivered to a specific place each time. Maybe we can use that against him, eh?</Text><ID>930851</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get Eret's help</Text><ID>930848</ID></Title><Desc><Text>Talk to Eret and get his help. He's in the center of Auction Island</Text><ID>942021</ID></Desc></Data> + 0 + false + + + 3130 + Volcano02T07 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You found the Singetail? Well, it's a good thing I'm here. There's not a dragon alive that I can't break out of a cage. {{Input}} on me and show me where it is.</Text><ID>930854</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>He's no problem. I can keep him distracted for a few moments. Trust me.</Text><ID>930855</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano02T07CS.unity3d/PfGrpVolcano02T07CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CagedSingetail</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Eret and bring him to the Singetail's cage</Text><ID>930852</ID></Title><Desc><Text>{{Input}} on Eret and bring him to the Singetail's cage</Text><ID>930852</ID></Desc><Reminder><Text>Slow down! Eret is falling behind!</Text><ID>936424</ID></Reminder><Failure><Text>You've lost Eret!</Text><ID>936425</ID></Failure></Data> + 0 + false + + + 3131 + Volcano02T08 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You have a few moments while the dragon hunter is distracted. Try to open the cage!</Text><ID>930858</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Fine, fine! It's your helmet. I've never seen someone make such a fuss about a helmet before.</Text><ID>930859</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CagedSingetail</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Open the cage while the guard is distracted</Text><ID>930856</ID></Title><Desc><Text>Open the cage while the guard is distracted by Eret</Text><ID>942022</ID></Desc></Data> + 0 + false + + + 3134 + Volcano02T11 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_02Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I guess Harald is the cautious type. Open your backpack and {{input}} on Harald's note so we can find out where we're sailing to.</Text><ID>930862</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh, Stormfly and I pass that place every day when we do our training exercises! That's Hobblegrunt Island.</Text><ID>930863</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>12980</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on Harald's map</Text><ID>930860</ID></Title><Desc><Text>Open your backpack and {{input}} on Harald's map. "X" marks the spot</Text><ID>942023</ID></Desc></Data> + 0 + false + + + 3135 + Volcano02T12 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_EretBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>We'll get there in no time with this wind at our backs. Astrid? Could you fetch {{Name}}'s dragon and meet us there? We've got a pirate to wrangle. Climb aboard!</Text><ID>930866</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>How in the world did {{dragon name}} get here before us? That dragon must've missed you a whole lot. How could I ever have trapped these amazing creatures?</Text><ID>930867</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Join Eret on his boat to Hobblegrunt Island</Text><ID>930864</ID></Title><Desc><Text>Join Eret on his boat to Hobblegrunt Island</Text><ID>930864</ID></Desc></Data> + 0 + false + + + 3136 + Volcano02T13 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_EretStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>It's time to round up a pirate. Could you let me see that map for a second? Alright. {{Input}} on me and I'll take you to the "X".</Text><ID>930870</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>This isn't right. What's wrong with that map?</Text><ID>930871</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_X</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Spline</Key><Value>Eret_Volcano02T13</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Eret and follow him to the "X"</Text><ID>930868</ID></Title><Desc><Text>{{Input}} on Eret and follow him to the "X"</Text><ID>930868</ID></Desc><Reminder><Text>You're losing ground. Catch up with Eret!</Text><ID>936426</ID></Reminder><Failure><Text>You've lost Eret!</Text><ID>936425</ID></Failure></Data> + 0 + false + + + 3137 + Volcano02T14 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_02Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Hang on. I saw Fishlegs fly to the other side of the island as we made our approach. Maybe he knows why the map is so dodgy.</Text><ID>930874</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Of course I'll help you with the map. Let me see... Based on the paper, I'd say this map is two, maybe three hundred years old. It's not accurate anymore because the landscape has changed over those years! You're at the right spot according to the map, but the land around you has changed. @@ The world is made out of these giant pieces of solid rock that are thousands of miles across, called [c][3eebff]tectonic plates[/c][ffffff]. There's super-hot rock called [c][3eebff]magma[/c][ffffff] in the center of the Earth that constantly pushes against these plates. This can lead to earthquakes and volcanic eruptions. @@ It even causes the land to move! You wouldn't notice on a daily basis, but there can be significant shifts over thousands of years.</Text><ID>930875</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about the map</Text><ID>930872</ID></Title><Desc><Text>Talk to Fishlegs about why the map might be inaccurate</Text><ID>942024</ID></Desc></Data> + 0 + false + + + 3138 + Volcano02T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>When multiple tectonic plates meet, they can act in unique ways based on the direction they're moving and how compact they are. Because there are so many volcanoes in the area, I think we're near a [c][3eebff]convergent boundary[/c][ffffff] where two tectonic plates are moving toward each other. @@ When tectonic plates converge, the smaller, less compact plate is pushed under the heavier plate, resulting in the constant shrinking of the smaller plate. @@ We might be experiencing the effects of this shifting, converging, and shrinking right now. According to the map the "X" is on a beach, but it might look a lot different now than it does on the map. Look for the "X".</Text><ID>930878</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>My goodness, this beach is completely submerged! We must be on the less dense plate. This map is useless to us... How are we going to find Harald?</Text><ID>930879</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BeachX</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the "X"</Text><ID>930876</ID></Title><Desc><Text>Look for the "X". It should be near the beach</Text><ID>942025</ID></Desc></Data> + 0 + false + + + 3139 + Volcano02T16 + <Data><Offer><Type>Popup</Type><ID>930882</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh Thor! It's Leopold, Harald's dragon! Quick, catch him before he gets away!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano02T12CS.unity3d/PfGrpVolcano02T12CS</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LeopoldDrop</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Catch Leopold</Text><ID>930880</ID></Title><Desc><Text>Catch Leopold before he gets away!</Text><ID>930881</ID></Desc></Data> + 0 + false + + + 3140 + Volcano02T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ah, you were so close! I think I saw him drop something. It's a long shot, but maybe it might lead us to Harald. Can you fly down into the valley and find it?</Text><ID>930885</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Great!</Text><ID>922905</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsGenPraise02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWCollectNote</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectNote</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find what Leopold dropped</Text><ID>930883</ID></Title><Desc><Text>Find what Leopold dropped in the valley</Text><ID>942026</ID></Desc></Data> + 0 + false + + + 3141 + Volcano02T18 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Could you please bring the scrap of paper to me? I'd like to find out where that scoundrel has gone, too.</Text><ID>930889</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It says "The deal is off. I have a new buyer. You won't get any more dragon teeth from me, you deadbeat trader." Oh dear. I guess we're all out of clues.</Text><ID>930890</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Show the scrap of paper to Fishlegs</Text><ID>930887</ID></Title><Desc><Text>Show the scrap of paper to Fishlegs</Text><ID>930887</ID></Desc></Data> + 0 + false + + + 3142 + Volcano02T19 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_AstridBeachX</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Where are you, {{Name}}? It's an emergency! Talk to me!</Text><ID>930893</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Something terrible has happened! Skulder, our friend and Archaeologist, is sick.</Text><ID>930894</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid and find out what the emergency is</Text><ID>942027</ID></Desc></Data> + 0 + false + + + 3143 + Volcano02T20 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Don't worry. Stormfly and I will stay here and keep an eye out for that pirate. You should hurry to Dragon's Edge. He specifically asked to talk to you.</Text><ID>930897</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My dear friend... I apologize for my runny nose and terrible cough. I've faced almost every strange dirt and irritant known to Vikings and this one will not defeat me. I must speak to you about this fog.</Text><ID>930898</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Skulder at the Dragon's Edge Clubhouse</Text><ID>930895</ID></Title><Desc><Text>Talk to Skulder, the Archaeologist, at the Dragon's Edge Clubhouse</Text><ID>942028</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204695 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204695 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204695 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204695 + true + 350 + 350 + + 0 + +
+ false +
+ + 2324 + Edu106 + 5 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu106T00.unity3d/PfGrpQEdu106T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_KidBChocolate</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Hungry Berk</Text><ID>927275</ID></Title><Desc><Text>Help preserve food for Berk before it's too late.</Text><ID>927276</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2314 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2324 + 3147 + 0 + + + 1 + 2324 + 3148 + 0 + + + 1 + 2324 + 3149 + 0 + + + 2 + 2324 + 2325 + 0 + + + 1 + 2324 + 3150 + 0 + + + 2 + 2324 + 2327 + 0 + + + 2 + 2324 + 2326 + 0 + + + 1 + 2324 + 3154 + 0 + + + 1 + 2324 + 3155 + 0 + + + 1 + 2324 + 3152 + 0 + + + + 1 + 204700 + 0 + + 2325 + Edu106T04 + 5 +

2324

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ask Gobber for some fish knives</Text><ID>927267</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2325 + 3151 + 0 + + + + 1 + 204699 + 0 + + 3151 + Edu106T04A + <Data><Offer><Type>Popup</Type><ID>927770</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>You've come to the right man. I have been on adventures for months at a time and I need to know all kinds of tricks to protect my food from the elements. If bacteria are the problem then you must simply take steps to remove or minimize their effect... @@ You should get rid of the areas in the fish where they thrive, like the guts. Also, I advise you to remove as much water as possible so they can't dissolve the food that they use for energy and growth. Salt is ideal for this. @@ I recommend that you ask master Gobber for some fish knives.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927771</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I do so love a good fish gutting. You should be careful with these knives, though. You take one wrong step, and you'll cut your fingers straight off! Then you and I would have matching metal hands.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Gobber for some fish knives</Text><ID>927267</ID></Title><Desc><Text>Ask Gobber for some fish knives in Berk.</Text><ID>927769</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12993 + + 1 + 5298 + 204699 + true + 1 + 1 + + 0 + +
+ false + + + 2326 + Edu106T07 + 5 +

2324

+ <Data><Offer><Type>Popup</Type><ID>927269</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>{{Input}} on the barrel of cleaned fish to sprinkle and rub in the 3 bags of salt over the fish.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>932563</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Great! These fish will be preserved and ready to eat in a day or so. I like salting my fish, but there are many other techniques for preserving food. For instance, I can keep my food in a cold place to slow the growth of bacteria. This is a process called [c][3eebff]"cooling."[/c][ffffff] @@We can put food in an edible, anti-bacterial liquid like vinegar in a process called [c][3eebff]"pickling."[/c][ffffff] For fruits and vegetables, we can hang them in a very dry place to get rid of all the water inside. This is called [c][3eebff]"drying."[/c][ffffff] @@ Our fish look and smell a whole lot better, don't they Bucket?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932875</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Doesn't fish go better with lemon and a side of potatoes?</Text><ItemID>0</ItemID><Priority>1</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Sprinkle 3 bags of salt over the cleaned fish to preserve it</Text><ID>927268</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2326 + 3159 + 0 + + + + 1 + 204701 + 0 + + 3159 + Edu106T07A + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBarrelOfFish</Value></Pair><Pair><Key>ItemID</Key><Value>8019</Value></Pair><Pair><Key>ItemDescription</Key><Value>Salt</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Sprinkle 3 bags of salt over the barrel of cleaned fish to preserve it</Text><ID>927772</ID></Title><Desc><Text>Sprinkle 3 bags of salt over the barrel of cleaned fish to preserve it. It's in front of Mulch in Berk.</Text><ID>927773</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 12991 + + 1 + 5299 + 204701 + true + 3 + 3 + + 0 + +
+ false +
+ + 2327 + Edu106T06 + 5 +

2324

+ <Data><Offer><Type>Popup</Type><ID>927274</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Next we'll need salt to dry these fish out. Salt is [c][3eebff]hygroscopic[/c][ffffff], which is a flashy way of saying that it can absorb moisture. The salt will suck the moisture out of the surface of the fish. Bacteria need this water for nutrients and they won't spread as easily without it. @@ I can see a few salt rocks underneath the waterfall over there. Would you chip off 3 bags of salt for us?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Chip off 3 bags of salt from the salt rocks</Text><ID>927272</ID></Title><Desc><Text>Chip off 3 bags of salt from the salt rocks underneath the waterfall in Berk.</Text><ID>927273</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2327 + 3156 + 0 + + + 1 + 2327 + 3157 + 0 + + + 1 + 2327 + 3158 + 0 + + + + 1 + 0 + 0 + + 3156 + Edu106T06A + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRockSalt01</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chip off 3 bags of salt from the salt rocks</Text><ID>927272</ID></Title><Desc><Text>Chip off 3 bags of salt from the salt rocks in Berk.</Text><ID>927777</ID></Desc></Data> + 0 + false + + + 3157 + Edu106T06B + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRockSalt02</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chip off 3 bags of salt from the salt rocks</Text><ID>927272</ID></Title><Desc><Text>Chip off 3 bags of salt from the salt rocks in Berk.</Text><ID>927777</ID></Desc></Data> + 0 + false + + + 3158 + Edu106T06C + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRockSalt03</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSalt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chip off 3 bags of salt from the salt rocks</Text><ID>927272</ID></Title><Desc><Text>Chip off 3 bags of salt from the salt rocks in Berk.</Text><ID>927777</ID></Desc></Data> + 0 + false + + false +
+ + 3147 + Edu106T01 + <Data><Offer><Type>Popup</Type><ID>927782</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>A tip of the bucket once more. It's great to know that the sky isn't falling and it's time to check on the fish that Mulch and I brought in. @@ The last barrel should still be on our boat unless it grew legs and walked away. Hmm, that's a good idea for my next painting. Could you get the barrel of fish?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfBarrelOfFish01</Value></Pair><Pair><Key>Name</Key><Value>PfBarrelOfFish01</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the barrel of fish from the fishing boat in the harbor</Text><ID>927780</ID></Title><Desc><Text>Get the barrel of fish from the fishing boat in the harbor of Berk.</Text><ID>927781</ID></Desc></Data> + 0 + false + + + 3148 + Edu106T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWBucket</Asset><Location>PfMarker_CoveBeach</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927785</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>These fish are starting to stink! Take the barrel of fish to Mulch before you pass out from the smell.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932778</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Oh dear. I don't like the smell of that barrel, Bucket. @@ I think that these fish are rotting. [c][3eebff]Rot[/c][ffffff] is decay that breaks something down until there's nothing left. This happens when tiny creatures, like [c][3eebff]bacteria[/c][ffffff], grow and eat away at our fish. @@ Did you leave the barrel sealed below deck like I asked?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932881</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Well, I put the barrel in the hold and closed the lid. Then I had a better idea! Why not let the fish enjoy the sun for a while? So I opened it back up and put the barrel in the warmest place I could think of.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>12992</Value></Pair><Pair><Key>ItemDescription</Key><Value>Barrel of Fish</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the barrel of fish to Mulch</Text><ID>927783</ID></Title><Desc><Text>Take the barrel of fish to Mulch in Berk.</Text><ID>927784</ID></Desc></Data> + 0 + false + + + 3149 + Edu106T03 + <Data><Offer><Type>Popup</Type><ID>927790</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Those fish don't like the sun and, more importantly, they're dead. It looks like we may have wasted an entire trip, my faithful friend. @@ You see, out of the water, bacteria from the air feeds on the outside of the fish. At the same time the bacteria in its gut eats the tasty flesh on the inside. @@ Bacteria grow fast and you need to keep them from spreading. Otherwise, all the fish will get rotten and before you know it they'll smell like my feet after a hard day's yak-milking. @@ All of Berk relies on our fish and traders come visit us when they're in port. Now that I think about it, I know that our local trader is at sea for long periods of time and he may have an idea for how to save our fish from spoiling. Ask Johann if he has any advice.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927791</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>The finest of greetings to you, {{Name}}. What can I do for you today?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get advice from Johann</Text><ID>927788</ID></Title><Desc><Text>Get advice from Johann. He's near the trading post in Berk.</Text><ID>927789</ID></Desc></Data> + 0 + false + + + 3150 + Edu106T05 + <Data><Offer><Type>Popup</Type><ID>927794</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should bring those knives carefully to Mulch.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927795</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>My goodness! Those are terribly sharp so I think we'll handle this part. Eh, Bucket? We'll deal with the bacteria inside the fish by removing the internal organs. It's called "cleaning a fish".</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>12993</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fish Knives</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the fish knives to Mulch</Text><ID>927792</ID></Title><Desc><Text>Bring the fish knives to Mulch. He's on the beach in Berk.</Text><ID>927793</ID></Desc></Data> + 0 + false + + + 3152 + Edu106T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I can hear someone's stomach growling from here and you know what that means. Grump, Gobber's Hotburple, must be ready for another meal. You really should give Gobber the last fresh salmon.</Text><ID>927798</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Aye, this will hit the spot. No, it wasn't Grump's stomach bleating. It was mine. I only had three wee lunches today and I'm famished. @@ It's always good to learn a new food preserving technique and it'll keep us prepared for the difficult months of winter. You're doing a fine job feeding Berk!</Text><ID>927799</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>12991</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fresh Salmon</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Gobber 1 fresh salmon</Text><ID>927796</ID></Title><Desc><Text>Give Gobber 1 fresh salmon in Berk.</Text><ID>936655</ID></Desc></Data> + 0 + false + + + 3154 + Edu106T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Ooh my stomach is growling at the thought, Bucket. But we have to wait for the salt to absorb as much moisture as possible to preserve the fish. @@ We'll need to get some fresh fish to Berk before more bellies rumble. Bucket, you take some to the stables and I'll bring a few door-to-door. @@ {{Name}}, we'll need you to give these to any dragon who's been waiting for their food. Hiccup asked us to bring him some fish as soon as we could. Could you give Hiccup a fresh salmon for Toothless?</Text><ID>927802</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you are, pal. No I don't want the head.</Text><ID>927803</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12991</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fresh Salmon</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup 1 fresh salmon</Text><ID>927800</ID></Title><Desc><Text>Give Hiccup 1 fresh salmon. He's in Berk.</Text><ID>936656</ID></Desc></Data> + 0 + false + + + 3155 + Edu106T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Dragons eat fresh fish from the water because they have really strong stomachs that can handle all kinds of bacteria. Isn't that right, bud? @@ Do you have any more? Astrid just got back from one of her long patrols and Stormfly could really use 1 fresh salmon to keep her strength up.</Text><ID>927806</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Good girl, Stormfly. Maybe you can play with Eret later. With any luck, he won’t see you coming until it's too late.</Text><ID>927807</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>12991</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fresh Salmon</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Astrid 1 fresh salmon</Text><ID>927804</ID></Title><Desc><Text>Feed Astrid 1 fresh salmon. She's in Berk.</Text><ID>936657</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204700 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204700 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204700 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204700 + true + 200 + 200 + + 0 + +
+ false +
+ + 2328 + Volcano_Misc02 + 46 +

+ <Data><Setup><Scene>DragonHunterBaseDO</Scene><Asset>RS_DATA/PfGrpVolcano21T00.unity3d/PfGrpVolcano21T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpVolcano21T01.unity3d/PfGrpVolcano21T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dragon Hunter Gold</Text><ID>927557</ID></Title><Desc><Text>Dragon Hunter Gold</Text><ID>927557</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2318 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2328 + 3163 + 0 + + + 1 + 2328 + 3164 + 0 + + + 1 + 2328 + 3165 + 0 + + + 1 + 2328 + 3166 + 0 + + + 1 + 2328 + 3167 + 0 + + + 1 + 2328 + 3168 + 0 + + + 1 + 2328 + 3169 + 0 + + + 1 + 2328 + 3170 + 0 + + + + 1 + 204703 + 0 + + 3163 + Volcano_Misc02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>We've got a serious problem. Have you ever heard of the Dragon Cry? They say it's a device that can mimic dragon cries to perfection. My trader friend was bringing it to me, but the dragon hunters raided the ship and made off with the cargo... and the Dragon Cry with it. @@ Who knows what damage the device can do in the wrong hands? We need to steal it back before they learn about its abilities. Besides, Hiccup always talks about the time Viggo stole all of Berk's gold. I reckon it's time we get it all back. @@ May the winds of fortune guide our sails! Climb aboard my ship and we'll head to the dragon hunters' camp.</Text><ID>930739</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ugh! It smells like the winds of fortune have given way to the stench of dragon droppings and Vikings' sweat.</Text><ID>930740</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfEretsBoat_TrainingDO</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get on Eret's ship to go to the dragon hunters' camp</Text><ID>930737</ID></Title><Desc><Text>Climb aboard Eret's ship and set sail for the dragon hunters' camp</Text><ID>941996</ID></Desc></Data> + 0 + false + + + 3164 + Volcano_Misc02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Here's the plan. I'll make sure the ship is ready for a quick getaway so you can have a look for the stolen goods. I heard they divided it up into bags around the camp. Sneak past the hunters and get those 5 bags of gold.</Text><ID>930743</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBagOfGold</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Collect</Type><Title><Text>Sneak past the dragon hunters and retrieve 5 bags of gold</Text><ID>930741</ID></Title><Desc><Text>Sneak past the dragon hunters and retrieve 5 bags of gold for Berk</Text><ID>941997</ID></Desc></Data> + 0 + false + + + 3165 + Volcano_Misc02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The cages are empty. Maybe the dragon hunters haven't figured out how to use the device yet. You should grab the Dragon Cry before the hunters see you.</Text><ID>930746</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDragonCry</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Dragon Cry without being caught</Text><ID>930744</ID></Title><Desc><Text>Find the Dragon Cry without being caught by the hunters</Text><ID>941998</ID></Desc></Data> + 0 + false + + + 3166 + Volcano_Misc02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hurry back to Eret's ship and avoid the dragon hunters.</Text><ID>930749</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>We have your ship surrounded, Eret, son of Eret!</Text><ID>930750</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EretShip</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Hurry back to Eret's ship</Text><ID>930747</ID></Title><Desc><Text>Hurry back to Eret's ship and avoid the dragon hunters</Text><ID>941999</ID></Desc></Data> + 0 + false + + + 3167 + Volcano_Misc02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Did you really think we'd be so stupid? We check on all the ships that come into this dock and we'd never forget yours. Now, boys. It looks like we've caught ourselves a dragon rider without a dragon. Hand yourself over now before we burn you and your ship to cinders.</Text><ID>932856</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You have one chance to trick the dragon hunters. Open your backpack and {{Input}} on the Dragon Cry to save Eret.</Text><ID>932960</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano21T05CS.unity3d/PfGrpVolcano21T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>12997</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open your backpack and {{input}} on the Dragon Cry</Text><ID>930751</ID></Title><Desc><Text>{{Input}} on your backpack and {{input}} on the Dragon Cry to catch the dragon hunters off guard</Text><ID>942000</ID></Desc></Data> + 0 + false + + + 3168 + Volcano_Misc02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's right, lads! You've got nothing to do but hide and pray it doesn't find you! You hear me? @@ {{Name}}! Get back on board before they realize that we pulled one over them!</Text><ID>930757</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Another successful venture! Okay, maybe it wasn't exactly as we planned but it was nothing you couldn't handle.</Text><ID>930758</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get back on board Eret's ship and sail to Berk</Text><ID>930755</ID></Title><Desc><Text>Get back on board Eret's ship and sail to Berk</Text><ID>930755</ID></Desc></Data> + 0 + false + + + 3169 + Volcano_Misc02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>We can't celebrate alone, my friend! Bring the 5 bags of gold to Gobber so he can share our victory with the whole village.</Text><ID>930761</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Well burst my skivvies and turn them inside out. I thought we'd never see our gold again! Thanks {{greeting}}.</Text><ID>930762</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>12996</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bag of Gold</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Gobber the 5 bags of gold</Text><ID>930759</ID></Title><Desc><Text>Bring Gobber the 5 bags of gold you retrieved for Berk</Text><ID>942001</ID></Desc></Data> + 0 + false + + + 3170 + Volcano_Misc02T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The image of Gobber wearing his torn underwear inside-out is terrifying. You should give Gobber some space and share your treasure with Hiccup.</Text><ID>930765</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is incredible! There are so many dragon voices in here. We could learn so much from this if we can just unlock its secrets. Fishlegs and I will try to understand this artifact, just like we did the Dragon Eye. You and Eret have done something amazing!</Text><ID>930766</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12997</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Cry</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup the Dragon Cry</Text><ID>930763</ID></Title><Desc><Text>Give Hiccup the Dragon Cry</Text><ID>930763</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204703 + true + 75 + 75 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 204703 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204703 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204703 + true + 350 + 350 + + 0 + +
+ false +
+ + 2329 + Volcano01 + 61 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpVolcano01T00.unity3d/PfGrpVolcano01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T05.unity3d/PfGrpVolcano01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Mystery of the Fog</Text><ID>927559</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2329 + 3171 + 0 + + + 1 + 2329 + 3172 + 0 + + + 1 + 2329 + 3173 + 0 + + + 1 + 2329 + 3174 + 0 + + + 1 + 2329 + 3260 + 0 + + + 1 + 2329 + 3175 + 0 + + + 1 + 2329 + 3176 + 0 + + + 1 + 2329 + 3178 + 0 + + + 1 + 2329 + 3179 + 0 + + + 1 + 2329 + 3180 + 0 + + + 1 + 2329 + 3181 + 0 + + + 1 + 2329 + 3182 + 0 + + + 1 + 2329 + 3183 + 0 + + + 1 + 2329 + 3184 + 0 + + + + 1 + 204733 + 0 + + 3171 + Volcano01T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpVolcano01T01.unity3d/PfGrpVolcano01T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Mulch and Bucket haven’t returned from their morning fishing trip, and Whip and Lash are beginning to panic.@@Please aid Whip and Lash in finding our missing Berkians!</Text><ID>930769</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What is this mysterious fog? It is like nothing you've ever seen before...</Text><ID>930770</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWZippleback_MulchBucket</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWZippleback_MulchBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Whip and Lash, the Zippleback</Text><ID>930767</ID></Title><Desc><Text>{{Input}} on Whip and Lash, Mulch's Zippleback</Text><ID>942002</ID></Desc></Data> + 0 + false + + + 3172 + Volcano01T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It has a noxious stench. You need to find Mulch and Bucket quickly.</Text><ID>930773</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's the fishing boat, but Mulch and Bucket aren't moving! Are they sick?</Text><ID>930774</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MulchBucket</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Mulch and Bucket</Text><ID>930771</ID></Title><Desc><Text>Look for Mulch and Bucket through the thick fog</Text><ID>942003</ID></Desc></Data> + 0 + false + + + 3173 + Volcano01T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The ship has run afoul of some rocks. You must destroy these rocks if you want to free their ship. Have your dragon shoot the rocks away!</Text><ID>930777</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfOceanShipWreckRockTarget</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfOceanShipWreckRockTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the rocks with your dragon</Text><ID>930775</ID></Title><Desc><Text>Shoot the rocks that are trapping the ship with your dragon</Text><ID>942004</ID></Desc></Data> + 0 + false + + + 3174 + Volcano01T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWBucket</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe there's a way to guide the ship out of these foggy waters. {{Input}} on the rope that's coiled on the ship deck.</Text><ID>930780</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano01T04CS.unity3d/PfGrpVolcano01T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfCrossbowRope</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCrossbowRope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the rope on the ship</Text><ID>930778</ID></Title><Desc><Text>{{Input}} on the rope on the ship's deck</Text><ID>942005</ID></Desc></Data> + 0 + false + + + 3175 + Volcano01T05_02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_FarPier</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T06.unity3d/PfGrpVolcano01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Mercy! What happened to my poor friends? Tell me what happened!</Text><ID>930783</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hmm. Many years ago, there used to be a mysterious fog around Dragon Island where the Red Death lived. That's how it stayed hidden from us for so many years before Hiccup, you know, axed him. The Red Death is gone, so I wonder why the fog is back! It looks a little different too. You know... blue-ier.</Text><ID>930784</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Gobber what happened</Text><ID>930781</ID></Title><Desc><Text>Tell Gobber what happened in the fog</Text><ID>942006</ID></Desc></Data> + 0 + false + + + 3176 + Volcano01T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T06.unity3d/PfGrpVolcano01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Mulch and Bucket fell unconscious in the fog, but you're saying that the dragons nearby seemed unaffected? Why is that? I wonder if Valka would know why they were able to survive.</Text><ID>930787</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I am worried that the sailors fell sick from the fog, but I am not surprised that the dragons seem unaffected. Most dragons have a furnace within their body that they use to generate heat and create fireballs. This might make them immune to any poisoning in the air... within reason, of course.</Text><ID>930788</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka about the fog</Text><ID>930785</ID></Title><Desc><Text>Talk to Valka about the fog and why dragons don't seem to be affected</Text><ID>942007</ID></Desc></Data> + 0 + false + + + 3178 + Volcano01T07 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T06.unity3d/PfGrpVolcano01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It sounds like old Mulch is back on his feet. I remember when he was just a lad before I left Berk. He was younger but just as round as he is now. Please talk to Mulch and learn what you can.</Text><ID>930791</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I'm glad you saved us, {{Name}}! It would have been a sad death, choking on that mystery fog so far away from home. I knew that we shouldn't have stayed in that abnormal fog so long! Neither of us ever saw anything like it. @@ We had no choice, though. Bucket has sharp eyes and he swore he saw Dragon Hunter ships sail past us towards the School. We lost them-- well, we fell unconscious-- so someone needs to make sure they're nowhere near Berk.</Text><ID>930792</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Have a talk with Mulch</Text><ID>930789</ID></Title><Desc><Text>Have a talk with Mulch now that he's feeling better</Text><ID>942008</ID></Desc></Data> + 0 + false + + + 3179 + Volcano01T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T06.unity3d/PfGrpVolcano01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Don't go gallivanting back into the fog by yourself, {{greeting}}! You'll need some backup. Sound the great horn and the Vikings of Berk will swarm to your side.</Text><ID>930795</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless and I are with you through thick and thin, {{Name}}!</Text><ID>930796</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfGreatHorn</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfGreatHorn</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sound the horn</Text><ID>930793</ID></Title><Desc><Text>Sound the horn to call for backup</Text><ID>942009</ID></Desc></Data> + 0 + false + + + 3180 + Volcano01T09 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T06.unity3d/PfGrpVolcano01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano01T08.unity3d/PfGrpVolcano01T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWToothless</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>930799</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We'll go back into that fog whenever you're ready, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano01T09CS.unity3d/PfGrpVolcano01T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the ocean once again</Text><ID>930797</ID></Title><Desc><Text>Go back to the ocean and be ready for action!</Text><ID>930798</ID></Desc></Data> + 0 + false + + + 3181 + Volcano01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A Dragon Hunter ship! Mulch and Bucket were right! We need to shoot that ship and disable it!</Text><ID>930802</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Wait! Dragon rider, call off your dragon. We yield to your banner.</Text><ID>930803</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano01T10CS.unity3d/PfGrpVolcano01T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfBattleBoatMission</Value></Pair><Pair><Key>Name</Key><Value>PfBattleBoatMission</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Shoot the ship and avoid getting hit</Text><ID>930800</ID></Title><Desc><Text>Shoot the ship to disable it and avoid getting hit</Text><ID>942010</ID></Desc></Data> + 0 + false + + + 3182 + Volcano01T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>We swear that we will leave these waters and return to our base. We got heavy headed and lost in this fog... We never meant to get so close to your home. @@ How about a trade, Dragon Rider? Information for our lives. I hear you don't particularly like the pirate Harald Forkbeard, and I know exactly where he's going.</Text><ID>930806</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Forkbeard is back in these lands, dragon rider. He is trading goods out of Auction Island and speaking of some dragon cure. From what I hear, you and the Dragon Riders have a debt to settle with that rat. Best you get to him before some of the other Hunters. He's burned many bridges around these waters.</Text><ID>930807</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonHunter</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Dragon Hunter about Harald</Text><ID>930804</ID></Title><Desc><Text>Talk to the Dragon Hunter about where Harald is</Text><ID>942011</ID></Desc></Data> + 0 + false + + + 3183 + Volcano01T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Harald! I knew he'd be back to trouble us again. I don't know where Auction Island is, even though I was there a few years ago. I was quite busy the last time we were there. @@ I think we might have another way to get there, though. We know someone who used to engage in that trade. Speak to Eret at the Training Grounds!</Text><ID>930810</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Aye, dragon trainer. I know Auction Island, and can even take you there. I would warn you of what you ask, however. It is the heart of enemy territory, where none will hesitate to cut your throat for your dragon's scales... or even for the smallest amount of coin.</Text><ID>930811</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak to Eret at the Training Grounds</Text><ID>930808</ID></Title><Desc><Text>Speak to Eret at the Training Grounds about how to get to Auction Island</Text><ID>942012</ID></Desc></Data> + 0 + false + + + 3184 + Volcano01T13 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpVolcano01T13.unity3d/PfGrpVolcano01T13</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Well then! We'll be off right away. Make sure to kiss your dragon for good luck-- {{dragon name}} can't follow us to these places for fear of showing our true loyalties. Step onto my boat and we shall be off.</Text><ID>930814</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Step lightly, {{Name}}. You'll never come across a more desperate and dangerous lot than these Dragon Hunters.</Text><ID>930815</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Jump on Eret's ship to go to Auction Island</Text><ID>930812</ID></Title><Desc><Text>Climb aboard Eret's ship and go to Auction Island</Text><ID>942013</ID></Desc></Data> + 0 + false + + + 3260 + Volcano01T05_01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Berk</Text><ID>930816</ID></Title><Desc><Text>Go to Berk</Text><ID>930816</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204733 + true + 50 + 50 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 204733 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204733 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204733 + true + 50 + 50 + + 0 + +
+ false +
+ + 2330 + Volcano12 + 45 +

+ <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dragon Island</Text><ID>927609</ID></Title><Desc><Text>Dragon Island</Text><ID>927609</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2353 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2330 + 3185 + 0 + + + 1 + 2330 + 3186 + 0 + + + 1 + 2330 + 3187 + 0 + + + 1 + 2330 + 3188 + 0 + + + 1 + 2330 + 3189 + 0 + + + 1 + 2330 + 3190 + 0 + + + 1 + 2330 + 3191 + 0 + + + + 1 + 204704 + 0 + + 3185 + Volcano12T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Now that we have the tools to find Dragon Island, it's time to get moving. We'll need the help of the beautiful Singetail you rescued. Mount the dragon when you are ready to go. </Text><ID>931207</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Look at the way {{dragon name}}'s tail is waving. It can't wait to fly with you!</Text><ID>931208</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount your rescued Singetail</Text><ID>931205</ID></Title><Desc><Text>Mount your rescued Singetail when you're ready</Text><ID>942097</ID></Desc></Data> + 0 + false + + + 3186 + Volcano12T02 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We'll need to grab our masks, Mom. Head for Helheim's Gate, {{Name}}. We'll meet you there.</Text><ID>931211</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The charcoal filters are working perfectly! Well, I never thought I'd ever say this, but... Ruffnut and Tuffnut are geniuses.</Text><ID>931212</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to Helheim's Gate</Text><ID>931209</ID></Title><Desc><Text>Head to Helheim's Gate and begin your journey</Text><ID>942098</ID></Desc></Data> + 0 + false + + + 3187 + Volcano12T03 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano12T03.unity3d/PfGrpVolcano12T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>According to my map, we'll need to find a cracked sea stack northwest from here. That's the first step toward Dragon Island. @@ {{Input}} on your map and compass to figure out where you need to go. Oh, and don't drop it. Losing your paper can make it really hard to fly. Trust me, I know from experience.</Text><ID>931215</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CrackedSeastack</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly northwest to find the cracked sea stack at Helheim's Gate</Text><ID>931213</ID></Title><Desc><Text>Fly northwest to find the cracked sea stack</Text><ID>942099</ID></Desc></Data> + 0 + false + + + 3188 + Volcano12T04 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano12T04.unity3d/PfGrpVolcano12T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Use the Singetail's fire on the cracked sea stack to signal your location to the others.</Text><ID>931218</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There you are! Meatlug and I were getting a bit lost. It's really dark and I think maybe Tuffnut pranked me? There's an odd chicken smell in my mask...</Text><ID>931219</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Location</Key><Value>CrackedSeaStack</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>CrackedSeaStack</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Sea Stack to signal to the others</Text><ID>931216</ID></Title><Desc><Text>Shoot the Sea Stack with your Singetail to signal your location to the others</Text><ID>942100</ID></Desc></Data> + 0 + false + + + 3189 + Volcano12T05 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano12T05.unity3d/PfGrpVolcano12T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Okay! The next stopping point is the salmon pools from Bucket's map. You'll recognize the area from the different tide pools all circled together. Send a signal when you get there!</Text><ID>931222</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's no wonder Singetails can signal each other from miles away... Toothless and I could see it, clear as day!</Text><ID>931223</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Location</Key><Value>SalmonPool</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>SalmonPool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Fly east to the salmon pool and send a signal at Helheim's Gate</Text><ID>931220</ID></Title><Desc><Text>Fly east to find the salmon pool, and send a signal to the others with your Singetail</Text><ID>942101</ID></Desc></Data> + 0 + false + + + 3190 + Volcano12T06 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano12T06.unity3d/PfGrpVolcano12T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Though I wonder if anyone else is in the area, watching these signals... @@ Well... now I feel paranoid. Let's move on! The last stopping point on the map is the wreck of the Gjallarhorn. You'll know it when you see it-- it's the giant shipwreck that's fifty feet up in the air! Use {{dragon name}}'s flame when you find it and we'll catch up to you!</Text><ID>931226</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Do you think it's odd to fly blind into the fog, {{Name}}? You can always put your faith in your dragon. They will reward your trust a hundredfold.</Text><ID>931227</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Location</Key><Value>ShipWreck</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>ShipWreck</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Fly northwest to the wrecked ship and signal the others at Helheim's Gate</Text><ID>931224</ID></Title><Desc><Text>Fly northwest to the hanging wrecked ship and signal the others</Text><ID>942102</ID></Desc></Data> + 0 + false + + + 3191 + Volcano12T07 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano12T07.unity3d/PfGrpVolcano12T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano12T07HG.unity3d/PfGrpVolcano12T07HG</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We're very close now. Cloudjumper is uneasy and his instincts are never wrong. I hope nothing terrible is awaiting us at Dragon Island. @@ Use your compass and map to fly to Dragon Island, southwest of here.</Text><ID>931230</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Flying to Dragon Island that first time feels like two lifetimes ago. Back then, Vikings didn't trust dragons and the Red Death was terrorizing us all. I lost a leg here! And here, my father...</Text><ID>931231</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano12T07CS.unity3d/PfGrpVolcano12T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly southwest to Dragon Island</Text><ID>931228</ID></Title><Desc><Text>Use your compass and map to fly southwest to Dragon Island</Text><ID>942103</ID></Desc></Data> + 0 + false + + + 33 +

1

+ 0 + + 1 + 56 + 204704 + true + 33 + 33 + + 0 + + + + 50 +

8

+ 0 + + 1 + 609 + 204704 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204704 + true + 50 + 50 + + 0 + +
+ + 71 +

2

+ 0 + + 1 + 2120 + 204704 + true + 71 + 71 + + 0 + +
+ false +
+ + 2331 + Volcano13 + 4 +

+ <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano13T00.unity3d/PfGrpVolcano13T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDeathsongIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Search for Harald</Text><ID>927610</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2330 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2331 + 3192 + 0 + + + 1 + 2331 + 3193 + 0 + + + 1 + 2331 + 3202 + 0 + + + 1 + 2331 + 3205 + 0 + + + 1 + 2331 + 3208 + 0 + + + 1 + 2331 + 3212 + 0 + + + 1 + 2331 + 3214 + 0 + + + 1 + 2331 + 3215 + 0 + + + 1 + 2331 + 3216 + 0 + + + + 1 + 204708 + 0 + + 3192 + Volcano13T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Remember, guys, we have two missions to accomplish here. We need to find out if the poison fog is coming from Dragon Island, and we also need to find Harald and stop him. If lots of dragon hunters believe his crazy claims, they might start killing more dragons to see if any of them have "magic bones." @@ That would be a disaster! +Maybe we should go to the largest landmark, the skeleton of the Red Death.</Text><ID>931234</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Look at the shape of her skull! This Titan Wing clearly had a powerful control over other dragons. Few dragons grow to be so powerful. If I had been here, maybe things would have been different. @@ Oh, Hiccup. I wish I could have helped you--helped all of Berk--when you had to face this immense dragon. If only I'd been there for you!</Text><ID>932864</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's okay, Mom. I understand why you had to go and why you were gone. You wouldn't be who you are today if you had stayed in Berk. I love you... and I forgive you.</Text><ID>932968</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano13T01CS.unity3d/PfGrpVolcano13T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RedDeathSkull</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Red Death</Text><ID>931232</ID></Title><Desc><Text>Look for the skeleton of the Red Death on Dragon Island</Text><ID>942104</ID></Desc></Data> + 0 + false + + + 3193 + Volcano13T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay! I'm sure we can find some clues that lead us to Harald. Let's split up and look around the island. {{Name}}, check out the hills and mounds near the volcano please.</Text><ID>931239</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! Harald was recently here at this camp! We can't be far behind him. He should have been a bit more careful; his camp is in a dangerous position under this [c][3eebff]volcanic plug[/c][ffffff]. @@ A [c][3eebff]volcanic plug[/c][ffffff] is a hill that was once part of an active volcano! It used to be a vent that carried molten rock, or [c][3eebff]magma[/c][ffffff], just under the Earth's surface. Over time, the vent hardened and became that hill. @@ The volcano on this island is active, so it still has magma flowing just under the surface! That's why the volcanic plug is warm to the touch. It's very dangerous because it can erupt in hot lava any time. (Oh--when magma reaches the surface, we call it lava instead. It's the same hot, dangerous material, just called something different.)</Text><ID>931240</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LavaPlug</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the volcanic plug</Text><ID>931237</ID></Title><Desc><Text>Look at the volcanic plug near the volcano</Text><ID>942105</ID></Desc></Data> + 0 + false + + + 3202 + Volcano13T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Don't worry, {{Name}}. We'll be able to tell before the volcano erupts! There are always signals before natural hazards occur that we can read. For example, our dragons would sense the incoming natural hazard and start behaving differently. @@ We can interpret that change in behavior and evacuate the nearby islands. That way, we can avoid the dangers before it becomes a [c][3eebff]natural disaster[/c][ffffff]! I'll show you what I mean. Meet me at the top of the mountain!</Text><ID>931243</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Steady, girl! We’re fine! This is the [c][3eebff]crater[/c][ffffff], or the mouth, of the volcano. It is an opening in the Earth's surface that allows the hot magma to come out to the surface. @@ Hmm. That's really odd. This is an [c][3eebff]active volcano[/c][ffffff] so it should be spewing ash and volcanic gases out of the crater. There should be an [c][3eebff]ash cloud[/c][ffffff] over it but there’s nothing. Hiccup, do you have any idea why?</Text><ID>931244</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Crater</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the mountain</Text><ID>931241</ID></Title><Desc><Text>Investigate the mountain and meet Fishlegs on top of it</Text><ID>942106</ID></Desc></Data> + 0 + false + + + 3205 + Volcano13T04 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_13T04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_13T04Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm not sure. Maybe something is wrong inside the volcano... or maybe without the Red Death, the volcano has stopped activity (or gone [c][3eebff]dormant[/c][ffffff]). We should think about entering the volcano and taking a look, but let's finish our sweep of the island. @@ {{Name}}, will you meet me at the base of the volcano?</Text><ID>931247</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>When we first came here, my dad ordered the catapults to blast the side of the rock open... and the Red Death came out of its nest to confront the Vikings of Berk. I think it leads all the way inside, to the reservoir of magma inside the volcano.</Text><ID>931248</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveEntrance01</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the hole in the mountain</Text><ID>931245</ID></Title><Desc><Text>Meet Hiccup at the base of the mountain and look at the hole the Red Death made</Text><ID>942107</ID></Desc></Data> + 0 + false + + + 3208 + Volcano13T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There's one more place I want to check. It's not related to Harald, but... indulge me a bit, pal. You should look around the island a little more to find clues!</Text><ID>931251</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! I know exactly what that is! This is a trail of a [c][3eebff]hardened lava flow[/c][ffffff]. There are two ways that magma comes out of a volcano. The first, and scarier type, is a [c][3eebff]volcanic eruption[/c][ffffff]. @@ During an eruption, the volcano expels ash and lava out of the crater and blankets the nearby land with flame and destruction. The other type is a nonexplosive stream of lava. This stream cooled over time and left this interesting rock formation here!</Text><ID>931252</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LavaFlows</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the hardened lava flows</Text><ID>931249</ID></Title><Desc><Text>Follow the hardened lava flows to find more clues</Text><ID>942108</ID></Desc></Data> + 0 + false + + + 3212 + Volcano13T06 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_StoickMemory</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_StoickToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I found it! It looks just like I remembered. Heh, it feels a bit like ancient history now. Come meet me at the beach and I'll show you.</Text><ID>932865</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>My dad and I never got along when I was younger. I thought it was because he hated that I would never grow up to be strong like him. He just didn't understand me since we were so different... but here, he started to see the world through my eyes. @@ He was a great chief and an even greater father.</Text><ID>933402</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless was chained to a ship at the beginning of the battle against the Red Death. He nearly drowned when the ship sank—and so did I, when I dove down to help. My dad swam down and saved us both. @@ My dad hated dragons for so long but he didn't hesitate when I was in danger.</Text><ID>931257</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Movie</Type><Asset>RS_MOVIES/StoickMemorial.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup by the shipwreck</Text><ID>931253</ID></Title><Desc><Text>Meet Hiccup by the shipwreck and see what he found</Text><ID>942109</ID></Desc></Data> + 0 + false + + + 3214 + Volcano13T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Um... sorry Hiccup, I don't mean to interrupt your conversation, but there's something weird going on right now! Are you guys seeing what I'm seeing? Please fly up here with me and take a look!</Text><ID>931260</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Whoa! Careful, girl, we don't want to get close. I've never seen anything like this before and I'm pretty sure the records at Berk don't mention it.</Text><ID>931261</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HydrothermalVent</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the underwater eruption</Text><ID>931258</ID></Title><Desc><Text>Fly to the underwater eruption near Dragon Island</Text><ID>942110</ID></Desc></Data> + 0 + false + + + 3215 + Volcano13T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's new to me too... and it doesn't look like good news. Is it just me, or does that look like the fog to you? Maybe this is the source of our poisonous fog problem. @@ We're going to need an expert to make sense of this. Skulder told me that he studied geology and has excavated near volcanoes. @@ Can you find him and bring him back to the island? Skulder was going back to Auction Island to "fix a problem." We both know that Skulder can be a bit reckless when it comes to artifacts. Be careful!</Text><ID>931264</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Auction Island</Text><ID>931262</ID></Title><Desc><Text>Go to Auction Island to find Skulder</Text><ID>942111</ID></Desc></Data> + 0 + false + + + 3216 + Volcano13T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Where is Skulder? You need to find him and make sure he's not in any trouble.</Text><ID>931267</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}! Thank Odin you're here. It is so wonderful to see a friendly face. I'm afraid I've found myself in a very dangerous scrape. Perhaps you can make my captors see reason?</Text><ID>931268</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find the Archaeologist</Text><ID>931265</ID></Title><Desc><Text>Find the Archaeologist</Text><ID>931265</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204708 + true + 50 + 50 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 204708 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204708 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204708 + true + 50 + 50 + + 0 + +
+ false +
+ + 2332 + Volcano09 + 45 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano09T00.unity3d/PfGrpVolcano09T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Where is Dragon Island?</Text><ID>927599</ID></Title><Desc><Text>Where is Dragon Island?</Text><ID>927599</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2337 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2332 + 2359 + 0 + + + 1 + 2332 + 3195 + 0 + + + 1 + 2332 + 3196 + 0 + + + 1 + 2332 + 3197 + 0 + + + 1 + 2332 + 3198 + 0 + + + 1 + 2332 + 4431 + 0 + + + 1 + 2332 + 3199 + 0 + + + + 1 + 204709 + 0 + + 2359 + Volcano09T01 + 45 +

2332

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Follow Valka to Hiccup</Text><ID>927597</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2359 + 3194 + 0 + + + + 1 + 204729 + 0 + + 3194 + Volcano09T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We cannot let this vile man desecrate the bones of the Red Death. Dragon bones aren't commodities to be sold, used, and discarded like any trinket. We need to study them so that we can understand more about dragons. Come with me, {{Name}}.</Text><ID>931098</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I don't have fond memories of Dragon Island-- you know, losing a leg tends to leave an impression on a guy. But we need to get back there right now and stop Harald! Of course, things are never easy for us... we have a slight problem.</Text><ID>931099</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FrontOfHiccup</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Spline</Key><Value>ValkaSpline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Valka and follow her to Hiccup</Text><ID>931096</ID></Title><Desc><Text>{{Input}} on Valka and follow her to Hiccup</Text><ID>931096</ID></Desc><Reminder><Text>Keep up with Valka...</Text><ID>936432</ID></Reminder><Failure><Text>Valka left you behind!</Text><ID>936433</ID></Failure></Data> + 0 + false + + + 1 +

6

+ 13009 + + 1 + 5312 + 204729 + true + 1 + 1 + + 0 + +
+ false + + + 3195 + Volcano09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's a copy of the map I've been working on for years. I've been charting out the islands near Berk with Toothless’s help. In order for maps to be helpful, they need to have everything scaled down by the same factor. This ensures that locations and distances correspond to the physical world. @@ We also use symbols to represent certain features such as landmarks, locations, and dragon habitats on the map. We can then figure out what those symbols mean by looking at the [c][3eebff]legend[/c][ffffff], the section on the bottom right of the map. @@ Open the map in your backpack! I'll show you what I mean.</Text><ID>931102</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Do you notice that the map has vertical lines? These are an imaginary set of lines that cross each other across the world that help us find places. [c][3eebff]Longitude lines[/c][ffffff] run north-south and [c][3eebff]latitude lines[/c][ffffff] run east-west. @@ When these lines are placed on a map, they create a grid of squares that can be used to identify the exact location of islands.</Text><ID>931103</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>13009</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hiccup's Map in your Backpack</Text><ID>931100</ID></Title><Desc><Text>{{Input}} on your Backpack then {{input}} on Hiccup's Map to bring it up</Text><ID>942070</ID></Desc></Data> + 0 + false + + + 3196 + Volcano09T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>So we know that Dragon Island is northwest of Berk and the School... but because of the fog, we won't be able to see far enough to know that we're going the right way. We'll need a different way to get there. @@ My father used a landmark called Helheim's Gate to sail to Dragon Island. Toothless has been there dozens of times! Hey, maybe he'll be able to sense the way to Dragon Island, like he did when the Red Death was there. {{Input}} on him!</Text><ID>931106</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Toothless</Text><ID>930969</ID></Title><Desc><Text>{{Input}} on Toothless to see if he can sense his way to Dragon Island</Text><ID>942071</ID></Desc></Data> + 0 + false + + + 3197 + Volcano09T04 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano09T05.unity3d/PfGrpVolcano09T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Toothless doesn't seem to be drawn to Dragon Island. You should fly around and look for clues that could lead you there.</Text><ID>931109</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FirstShipWreck</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for a path to Dragon Island</Text><ID>931107</ID></Title><Desc><Text>Look for a path to Dragon Island by finding clues</Text><ID>942072</ID></Desc></Data> + 0 + false + + + 3198 + Volcano09T05 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano09T05.unity3d/PfGrpVolcano09T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This shipwreck looks more recent than the others. Perhaps there are Vikings inside that need rescuing or things that could help you on your search to Dragon Island.</Text><ID>931112</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectArtifact</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Explore the shipwreck</Text><ID>931110</ID></Title><Desc><Text>Explore the shipwreck and see if there is anything that could help you find Dragon Island</Text><ID>942073</ID></Desc></Data> + 0 + false + + + 3199 + Volcano09T06 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano09T05.unity3d/PfGrpVolcano09T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>These findings could be useful! You should return to Berk and show your discoveries to Hiccup.</Text><ID>931115</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's see... fascinating! These look like navigational charts for the waters around Dragon Island. I have a few theories to test on this rock and I know it's going to come in handy. It looks like your trip was a success after all!</Text><ID>931116</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWToothless</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Berk and show Hiccup what you found</Text><ID>931113</ID></Title><Desc><Text>{{Input}} on Toothless to return to Berk and show Hiccup what you found</Text><ID>942074</ID></Desc></Data> + 0 + false + + + 4431 + Volcano09T05B + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpVolcano09T05B.unity3d/PfGrpVolcano09T05B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectMap</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the parchment</Text><ID>936663</ID></Title><Desc><Text>Grab the parchment</Text><ID>936663</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204709 + true + 50 + 50 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204709 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204709 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204709 + true + 50 + 50 + + 0 + +
+ false +
+ + 2333 + Volcano06 + 15 +

+ <Data><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Stench Me Not</Text><ID>927589</ID></Title><Desc><Text>Stench Me Not</Text><ID>927589</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2346 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2333 + 2351 + 0 + + + 1 + 2333 + 3201 + 0 + + + 2 + 2333 + 2334 + 0 + + + 2 + 2333 + 2352 + 0 + + + 1 + 2333 + 3210 + 0 + + + 1 + 2333 + 3211 + 0 + + + 1 + 2333 + 3213 + 0 + + + 1 + 2333 + 3337 + 0 + + + + 1 + 204711 + 0 + + 2334 + Volcano06T03 + 15 +

2333

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Collect items to make mask</Text><ID>927584</ID></Title><Desc><Text>Collect items to make a mask</Text><ID>927585</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2334 + 3207 + 0 + + + 2 + 2334 + 2341 + 0 + + + 2 + 2334 + 2342 + 0 + + + + 1 + 0 + 0 + + 2341 + Volcano06T03.1 + 15 +

2334

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber.</Text><ID>923241</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2341 + 3203 + 0 + + + + 1 + 204715 + 0 + + 3203 + Volcano06T3.1 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Now what's Hiccup tinkering with that would need a small canister? I taught him nearly everything he knows, but somehow he still surprises me every day! Here, this should do you well!</Text><ID>930996</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get a canister from Gobber in the Hatchery</Text><ID>930994</ID></Title><Desc><Text>Get a canister from Gobber in the Hatchery</Text><ID>930994</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13006 + + 1 + 5351 + 204715 + true + 1 + 1 + + 0 + +
+ false +
+ + 2342 + Volcano06T03.2 + 15 +

2334

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Heather about the hose</Text><ID>927582</ID></Title><Desc><Text>Collect a hose from Heather outside the lab in the school.</Text><ID>927583</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2342 + 3204 + 0 + + + + 1 + 204716 + 0 + + 3204 + Volcano06T3.2 + <Data><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Here is an extra piece of hose that I had in the Lab. Tell Hiccup that I want a look at the schematics when he's done!</Text><ID>930999</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Retrieve a hose from Heather</Text><ID>930997</ID></Title><Desc><Text>Collect a hose from Heather outside the lab in the school</Text><ID>942050</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13000 + + 1 + 5304 + 204716 + true + 1 + 1 + + 0 + +
+ false +
+ + 3207 + Volcano06T04 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano06T04.unity3d/PfGrpVolcano06T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We'll need to cover up the nose and the mouth to filter the toxic gas, so we'll make some sort of a breather mask. We're going to need to get more charcoal, a canister from Gobber, and a hose from Heather. I'll do more research while you gather these components!</Text><ID>931002</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The charcoal here was once wood, but turned to charcoal through fire and heat over a long period of time.</Text><ID>931003</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWGasMaskCharcoal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect charcoal from a fire pit in the Wilderness</Text><ID>931000</ID></Title><Desc><Text>Collect charcoal from the fire pit in the Wilderness for the gas mask</Text><ID>942051</ID></Desc></Data> + 0 + false + + false + + + 2351 + Volcano06T01 + 15 +

2333

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2351 + 3200 + 0 + + + + 1 + 204723 + 0 + + 3200 + Volcano06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>So we now know that it's sulfur dioxide gas that is making everyone sick. Your clothes still smell like rotten eggs! We can't get rid of the sulfur dioxide, so we'll need to figure out a way to go into the fog and breathe without getting sick. @@ Maybe we can update the design of the mask? Hiccup might have a good idea.</Text><ID>932860</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Ahh... did I hear my favorite phrase, 'the vile stench of rotten eggs'? Sorry bro, ah Hiccup, but the Thorston twins are experts at creating stench wrenching stink bombs, AND we know how to filter stink from the air with our extensive research. I got this! @@ {{Name}}, come find me at my secret testing grounds!</Text><ID>932964</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>We've tested over 450 different materials to keep the stench out! First, we tried water as a filter. Pro tip: don't try to breathe water! I almost drowned. @@ So Ruff tried a mud mask over her face and nose. She passed out but her skin was positively glowing!</Text><ID>932861</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Cool, someone new to experiment on... ah, I mean with. So you want to be able to breathe in that smelly gas, huh? You've come to the right people. We take pride in our anti-stench solutions! Here's our latest.</Text><ID>933400</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut at the school</Text><ID>931004</ID></Title><Desc><Text>Talk to Tuffnut at the secret testing grounds</Text><ID>942052</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12998 + + 1 + 5309 + 204723 + true + 1 + 1 + + 0 + +
+ false +
+ + 2352 + Volcano06T05 + 15 +

2333

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give Hiccup the goods</Text><ID>927587</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2352 + 3209 + 0 + + + + 1 + 204743 + 0 + + 3209 + Volcano06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay! I think I have a design that will work. If you give me the materials, I can make you a prototype!</Text><ID>931012</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A charcoal filter works a lot like a sponge. It soaks up impurities-- the sulfur dioxide gas-- in the substance that is being filtered-- the air we breathe. The gas adheres to the surface of the charcoal in a process called adsorption. @@ This mask should keep us from getting sick from the gas because it'll keep out the toxins in the air!</Text><ID>931013</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12998</Value></Pair><Pair><Key>ItemDescription</Key><Value>Charcoal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13006</Value></Pair><Pair><Key>ItemDescription</Key><Value>Gas Canister</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13000</Value></Pair><Pair><Key>ItemDescription</Key><Value>Hose</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return to Hiccup with the materials</Text><ID>931010</ID></Title><Desc><Text>Return to Hiccup and give him the materials at the school</Text><ID>942053</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13013 + + 1 + 5349 + 204743 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13014 + + 1 + 5348 + 204743 + true + 1 + 1 + + 0 + +
+ false +
+ + 3201 + Volcano06T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Geez, spoilers Ruffnut! Let me finish my spiel. We couldn't see through the boar's bladder... chrysanthemums tasted awful... then there was the infamous Yak Incident! @@ Finally, the one that worked was experiment #451-- charcoal lumps, stuffed up the nose of course! We get some odd looks from Vikings, but we're used to that. @@ Take this charcoal back to Hiccup and tell him it works better than 450 other things.</Text><ID>931016</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm. Well charcoal is very porous, so maybe the twins are on to something.</Text><ID>931017</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12998</Value></Pair><Pair><Key>ItemDescription</Key><Value>Charcoal</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup the charcoal</Text><ID>931014</ID></Title><Desc><Text>Give Hiccup the charcoal</Text><ID>931014</ID></Desc></Data> + 0 + false + + + 3210 + Volcano06T06 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpVolcano06T06.unity3d/PfGrpVolcano06T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's still just a prototype, so we should test it in a safe location before going back out to the fog. And, well, terrible smells [c][3eebff]are[/c][ffffff] the twins' specialty. @@ Can you meet Tuffnut and see if you could test the mask with some of their special stink bombs? Just... please do it someplace away far away from everything else.</Text><ID>931020</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Ah hah! Hiccup used our filter technology! I prefer charcoal lumps in the nose but I guess a breather mask is cool, too. I'll talk to Hiccup about royalties for using my idea later. @@ We have high wind warnings from the Timberjacks today so we'll have to scrub stink bomb testing in our usual location. Don't worry, we have an alternate location in mind...</Text><ID>931021</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Tuffnut</Text><ID>931018</ID></Title><Desc><Text>Speak with Tuffnut and see if you can find a place to test the gas mask</Text><ID>942054</ID></Desc></Data> + 0 + false + + + 3211 + Volcano06T07 + <Data><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpVolcano06T08.unity3d/PfGrpVolcano06T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I like having someone else as a stink test dummy! Okay, you stand in the middle of the room with your mask on. We are really going to get a good stench on you to see if the mask works. @@ Heh heh. I love my job. {{Input}} on me when you're ready!</Text><ID>931024</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yes! The mask works and Snotlout gets Loki'd? Double plus!</Text><ID>931025</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano06T07CS.unity3d/PfGrpVolcano06T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ruffnut</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Ruffnut at the Dragon's Edge Clubhouse</Text><ID>931022</ID></Title><Desc><Text>{{Input}} on Ruffnut in the Clubhouse to begin the test</Text><ID>942055</ID></Desc></Data> + 0 + false + + + 3213 + Volcano06T08 + <Data><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpVolcano06T08.unity3d/PfGrpVolcano06T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should make sure Snotlout is okay.</Text><ID>931028</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh Thor... it smells worse than the inside of my father's boots! How is this possible?!</Text><ID>931029</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>See if Snotlout is okay</Text><ID>931026</ID></Title><Desc><Text>See if Snotlout is okay. He got a full barrage of stink bombs</Text><ID>942056</ID></Desc></Data> + 0 + false + + + 3337 + Volcano06T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I only came in here to tell you Fishlegs is looking for you. This is what I get for trying to help others!</Text><ID>931032</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hi, {{Name}}! What were you doing in there with the twins? + +On second thought, I don't need to know.</Text><ID>931033</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs at Dragon's Edge</Text><ID>931030</ID></Title><Desc><Text>Talk to Fishlegs at Dragon's Edge</Text><ID>930272</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204711 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204711 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204711 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204711 + true + 350 + 350 + + 0 + +
+ false +
+ + 2335 + Volcano07 + 10 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpVolcano07T00.unity3d/PfGrpVolcano07T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupSingetail</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Singetail Secret</Text><ID>927591</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2333 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2335 + 3217 + 0 + + + 1 + 2335 + 3218 + 0 + + + 1 + 2335 + 3219 + 0 + + + 2 + 2335 + 2336 + 0 + + + 1 + 2335 + 3220 + 0 + + + 1 + 2335 + 3336 + 0 + + + + 1 + 204710 + 0 + + 2336 + Volcano07T04 + 10 +

2335

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the Singetail</Text><ID>927590</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2336 + 3221 + 0 + + + + 1 + 204744 + 0 + + 3221 + Volcano07T04A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Now focus completely on this one. The dragon needs to know that you are here for it. Quiet your spirit... feel the trust in your heart. Yes, look the Singetail in the eye. It will meet your gaze and respond in kind. Then when you're both ready, {{input}} on the dragon's head.</Text><ID>931036</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano07T05CS.unity3d/PfGrpVolcano07T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>Dragon_Teen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSingetail</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Singetail</Text><ID>927590</ID></Title><Desc><Text>{{Input}} on the Singetail's head to bond with it in the back of Dragon's Edge</Text><ID>942057</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13025 + + 1 + 5325 + 204744 + true + 1 + 1 + + 0 + +
+ false + + + 3217 + Volcano07T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, did anyone tell you about Valka's request? She and Hiccup want to talk to you! Ooh, I bet it's a cool dragon thing. You have to share with me if she tells you any dragon secrets okay? They're waiting for you on the other side of Dragon's Edge!</Text><ID>931039</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I'm so glad you saved this Singetail from the Dragon Hunters. Like Hiccup, you have the heart of a hero and the soul of a dragon. @@ This Singetail has been through so much pain, the poor dear. Not many dragons survive being trapped by those Dragon Hunters... but his soul is bright as ever! It has so many secrets that it hasn't discovered...</Text><ID>931040</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano07T01CS.unity3d/PfGrpVolcano07T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Valka</Text><ID>931037</ID></Title><Desc><Text>Find Valka on the other side of Dragon's Edge</Text><ID>942058</ID></Desc></Data> + 0 + false + + + 3218 + Volcano17T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh ho, little one, how wonderful! Singetails are incredibly intelligent pack dragons. They may travel alone, but they will always come back together to hunt. They can light fires using their tails to send signals to other Singetails, and they always come to help from miles around!</Text><ID>932862</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>More Singetails? That could be bad! Spitelout nearly got roasted by some Singetails when he encroached on their territory. {{Name}}, can you go to the edge of the cliff to look out for incoming dragons?</Text><ID>933401</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh boy... I think they got the wrong idea!</Text><ID>931045</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano07T03CS.unity3d/PfGrpVolcano07T03CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SingetailCliff</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look out for the other Singetails</Text><ID>931041</ID></Title><Desc><Text>Look out for the other Singetails. You'll get a good view from the cliff edge</Text><ID>942059</ID></Desc></Data> + 0 + false + + + 3219 + Volcano17T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's okay, they're only here to protect their own. Come back here, {{Name}} but slowly! They need to see you aren't trying to hurt the Singetail.</Text><ID>931048</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Good, good. They know you're not afraid and they are watching to see how this one reacts. That will be the real test.</Text><ID>931049</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ValkaSingetail</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the Singetail</Text><ID>931046</ID></Title><Desc><Text>Return to the Singetail</Text><ID>931046</ID></Desc></Data> + 0 + false + + + 3220 + Volcano07T05 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We don't have anything to fear from the other Singetails. They are intelligent, graceful and trusting creatures. They can see that you are a good dragon rider! Take good care of your Singetail and it will take care of you.</Text><ID>931052</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka and tell her that you have bonded with the Singetail</Text><ID>942060</ID></Desc></Data> + 0 + false + + + 3336 + Volcano07T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Now, it is time to get to the bottom of the mysteries surrounding us. You'll be well equipped for it, with your trusty Singetail by your side. Astrid will help you get to the bottom of this.</Text><ID>931055</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm glad you're here. I need your help if we want to catch that thieving Harald. I have some clues, but I don't know where to go from here.</Text><ID>931056</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204710 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204710 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204710 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204710 + true + 350 + 350 + + 0 + +
+ false +
+ + 2337 + Volcano08 + 11 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpVolcano08T00.unity3d/PfGrpVolcano08T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano08T04.unity3d/PfGrpVolcano08T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Following Harald's Trail</Text><ID>927596</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2335 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2337 + 3222 + 0 + + + 1 + 2337 + 3223 + 0 + + + 1 + 2337 + 3229 + 0 + + + 1 + 2337 + 3230 + 0 + + + 1 + 2337 + 3231 + 0 + + + 1 + 2337 + 3232 + 0 + + + 1 + 2337 + 3233 + 0 + + + 2 + 2337 + 2340 + 0 + + + 2 + 2337 + 2343 + 0 + + + 1 + 2337 + 3244 + 0 + + + + 1 + 204712 + 0 + + 2340 + Volcano08T08 + 11 +

2337

+ <Data><Offer><Type>Popup</Type><ID>927593</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>What a relief! We won't have to worry about some magic totem. @@ Looks like this shopkeeper has a collection of things on sale other than Harald's trash. I bet it's a load of snake oil medicine, all meant to swindle dragon hunters out of their money. Let's take a quick look at what he has.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Look at other items on sale</Text><ID>927592</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2340 + 3238 + 0 + + + + 1 + 0 + 0 + + 3238 + Volcano08T08C + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_AuctionIslandCenterArchaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenterEret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Whoa! I've only seen Sagefruit once before. My mate fed it to a dragon to keep it docile. It makes dragons calm down, even when they're riled up and fighting. He said he got it from Defender of the Wing Island... and that's not a destination [c][3eebff]any[/c][ffffff] dragon trapper wants to go.</Text><ID>931059</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SageFruit</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the other items on sale</Text><ID>931057</ID></Title><Desc><Text>Look at the other items on sale in the center of Auction Island</Text><ID>942061</ID></Desc></Data> + 0 + false + + false + + + 2343 + Volcano08T09 + 11 +

2337

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Purchase sagefruit from the Shifty Shopkeeper</Text><ID>927594</ID></Title><Desc><Text>Purchase sagefruit from the Shifty Shopkeeper on Auction Island.</Text><ID>927595</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2343 + 3241 + 0 + + + + 1 + 204717 + 0 + + 3241 + Volcano08T09A + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_AuctionIslandCenterArchaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenterEret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>We absolutely need to get that fruit away from these hunters. Talk to that shopkeep and see if we can negotiate a deal.</Text><ID>931062</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>You want that odd fruit? Why? You're the first one to even give it a second look. No one wants that odd looking thing, and it doesn't even taste any good. Tell you what, I'll give it to you gratis for being Harald's messenger.</Text><ID>931063</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Purchase a sagefruit from the shifty shopkeeper</Text><ID>931060</ID></Title><Desc><Text>Purchase a sagefruit from the shifty shopkeeper near his stand</Text><ID>942062</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13001 + + 1 + 5306 + 204717 + true + 1 + 1 + + 0 + +
+ false +
+ + 3222 + Volcano08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Harald has some no-good tricks up his sleeves! Stormfly and I caught up to him when he finally showed up at Hobblegrunt Island, but he was able to distract us and slip away into the fog. Ugh! @@ After he disappeared, I backtracked to the spot with the "X" on the map and found this locked chest. Can you {{input}} on it and figure out how to break the lock?</Text><ID>931066</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ooh! Great job.</Text><ID>931067</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfChestHarald</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>Volcano08T01</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the chest and solve the cryptex</Text><ID>931064</ID></Title><Desc><Text>{{Input}} on the chest and solve the cryptex to open it</Text><ID>942063</ID></Desc></Data> + 0 + false + + + 3223 + Volcano08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now, what could Harald possibly leave behind for his contact at Auction Island? I wonder if it holds some new instructions. Pick up the note and see what it says.</Text><ID>931070</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>"Gather all the rich buyers for the next auction, you old rascal, and I'll make sure you get paid. I'm bringing more of the enchanted bones for you." @@ What?!</Text><ID>931071</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHaraldNote</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up Harald's Note</Text><ID>931068</ID></Title><Desc><Text>Grab Harald's note in the chest and see what it says</Text><ID>942064</ID></Desc></Data> + 0 + false + + + 3229 + Volcano08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't know what sort of scam Harald is running, but one thing is for sure: he's going to hurt some dragons to make some money. We need to stop him right away. Talk to Eret at the docks and we'll get ready to sail!</Text><ID>931074</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Back there again? I warn you, we'll need to be on our best behavior this time around, since a Singetail mysteriously found its way out of its cage the last time my ship showed her face at Auction Island.</Text><ID>931075</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at the docks</Text><ID>931072</ID></Title><Desc><Text>Talk to Eret at the docks</Text><ID>931072</ID></Desc></Data> + 0 + false + + + 3230 + Volcano08T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>One moment, if you will! Would you mind if I came along for your trip to Auction Island? I know it's a little out of the ordinary for me to go. I want to know exactly what 'magic' there could be in the bones. @@ I'm a man of science and I don't believe his claims! Also, I have a grudge against Harald to settle. He locked me in a cage to rot! If you hadn't been there to... @@ Ahem. Forgive me. Let's board Eret's boat and get on our way!</Text><ID>931078</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EretsBoat</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Hop on Eret's ship and go to Auction Island</Text><ID>931076</ID></Title><Desc><Text>Hop on Eret's ship near the docks and go to Auction Island</Text><ID>942065</ID></Desc></Data> + 0 + false + + + 3231 + Volcano08T05 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_EretStart08</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist08</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Reel your eyes back into your head, Skulder. You look like you've never been in a den of thieves before. @@ {{Name}}, find Harald's contact and give him the note. I'll stay by our scholarly friend here and make sure he doesn't accidentally rile up these sensitive traders.</Text><ID>931081</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>I see you caught up to that scoundrel, and he's already got you running errands for him. Hah! @@ Tell Harald that the magic Tooth of the Red Death is on display at the auction area. I wouldn't have believed it if I hadn't seen it with my own eyes... but that Tooth really turns dragons into stone, right in their tracks! It's drawing interest from dragon hunters everywhere.</Text><ID>931082</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>ItemID</Key><Value>12980</Value></Pair><Pair><Key>ItemDescription</Key><Value>Harald's Map</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Harald's note to the shifty storekeeper</Text><ID>931079</ID></Title><Desc><Text>Give Harald's note to the shifty storekeeper in the center of Auction Island</Text><ID>942066</ID></Desc></Data> + 0 + false + + + 3232 + Volcano08T06 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist08</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>A tooth that can turn a dragon into stone? I've never heard of such a thing in my life! @@ {{Name}}, I know the spot he means. It's nothing more than a clearing in the town that they use to showcase their wares, but these simpletons seem to draw some pride from it. @@ You can follow the road there. {{Input}} on Skulder and lead us to the auction area; I'll keep an eye on our backs.</Text><ID>931085</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Magic? Hah! This is just smoke and mirrors from that scoundrel. It's just a ruse. The dragon tooth didn't turn anything into stone. These aren't stone dragons, they're [c][3eebff]fossils[/c][ffffff]!</Text><ID>931086</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AuctionIslandCenter</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Skulder and lead him to the auction area</Text><ID>931083</ID></Title><Desc><Text>{{Input}} on Skulder, the Archaeologist, and lead him to the auction area</Text><ID>942067</ID></Desc><Reminder><Text>Skulder is falling behind! Slow down!</Text><ID>936430</ID></Reminder><Failure><Text>You've lost Skulder! Try again.</Text><ID>936431</ID></Failure></Data> + 0 + false + + + 3233 + Volcano08T07 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_AuctionIslandCenterArchaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_AuctionIslandCenterEret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Fossils[/c][ffffff] are remains of plants or animals from thousands of years ago. After these dragons died, they were buried under the ground. @@ Over time, water from the ground around them filled into the body and dissolved all the organic parts of the dragon and left just the minerals. @@ These minerals still hold the shape of the dragon's bones, but it's just rock! This is called a [c][3eebff]body fossil[/c][ffffff]. @@ Let's take a closer look at these things.</Text><ID>931089</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fossils can tell us so much about the dragon and the place it lived in thousands of years ago. We can tell from the teeth that this dragon was carnivorous, or a meat eater. @@ The type of rock the fossil is embedded into can also tell us a lot about the lay of the land where Harald found the fossil! This limestone, for example, tells us that this fossil was once at the bottom of a lake.</Text><ID>931090</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Fossils</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a closer look at the fossils</Text><ID>931087</ID></Title><Desc><Text>Take a closer look at the fossils in the center of Auction Island</Text><ID>942068</ID></Desc></Data> + 0 + false + + + 3244 + Volcano08T11 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It shouldn't bother me that Harald will be fooling some evil dragon hunter with the Tooth of the Red Death... but it does. Fossils are very interesting things, and Harald is distorting them! I don't like it at all. I wish I could find a way to stop them...</Text><ID>932863</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Cheer up, Skulder. That buffoon didn't know the treasure that was right under his nose. Serves him right. @@ It seems like this was a very successful trip, but I think we best be on our way. Let's go back to Berk and talk to Valka.</Text><ID>932967</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You mean that Harald Forkbeard is [c][3eebff]desecrating[/c][ffffff] the remains of the Red Death for [c][3eebff]money[/c][ffffff]? That despicable man! I hope that he reaps every ill fate he sows. @@ I used to say that Vikings can never change, but you and the rest of Berk have convinced me that we can always set things right in the end. Things like this make me wonder if my original thought was right.</Text><ID>931095</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13001</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Valka at Berk</Text><ID>928722</ID></Title><Desc><Text>Talk to Valka about Harald's scam</Text><ID>942069</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204712 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204712 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204712 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204712 + true + 350 + 350 + + 0 + +
+ false +
+ + 2338 + Volcano14 + 25 +

+ <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano14T09.unity3d/PfGrpVolcano14T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano14T05.unity3d/PfGrpVolcano14T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Saving Skulder</Text><ID>927612</ID></Title><Desc><Text>Saving Skulder</Text><ID>927612</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2331 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2338 + 3224 + 0 + + + 1 + 2338 + 3234 + 0 + + + 1 + 2338 + 3237 + 0 + + + 1 + 2338 + 3239 + 0 + + + 1 + 2338 + 3240 + 0 + + + 1 + 2338 + 3245 + 0 + + + 1 + 2338 + 3246 + 0 + + + 1 + 2338 + 3247 + 0 + + + 1 + 2338 + 3248 + 0 + + + 1 + 2338 + 3250 + 0 + + + 1 + 2338 + 3251 + 0 + + + + 1 + 204713 + 0 + + 3224 + Volcano14T01 + <Data><Offer><Type>Popup</Type><ID>931271</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I was examining four dragon fossils at the stand and figuring out how to prove that they weren't stone dragons when I was accosted by someone. I woke up a few hours later and the fossils were gone. @@ Now all these vile traders think that I stole them and I have this rather painful bump on my head. Could you speak with that storekeeper and explain that I'm not capable of this kind of thievery?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>931272</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>I heard the outsider's excuses and I'm not buying it. This thief is guilty until proven innocent. We'll hold him here in a cage and pelt him with fruit until he either dies or returns what he stole. It's a new law for Auction Island, but everyone is on board for it... especially the fruit vendors!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with the shifty storekeeper</Text><ID>931269</ID></Title><Desc><Text>Speak with the shifty storekeeper about Skulder.</Text><ID>931270</ID></Desc></Data> + 0 + false + + + 3234 + Volcano14T02 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano14T02.unity3d/PFGrpVolcano14T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>931275</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>If the dragon traders won't listen to reason then it's up to you. Skulder said that he was near the stand when he was knocked out. You should look for proof that someone else might have committed the crime.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>931276</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>You! Yes, you!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDragonTraderHelmet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for proof of Skulder's innocence</Text><ID>931273</ID></Title><Desc><Text>Look for proof of Skulder's innocence near the stand.</Text><ID>931274</ID></Desc></Data> + 0 + false + + + 3237 + Volcano14T03 + <Data><Offer><Type>Popup</Type><ID>931279</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>I can see you snooping around. Let's talk about this awful situation and see if we can come to an understanding.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>931280</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>Your archaeologist friend freed my rare Singetail! I have to pay for a ship and crew and that dragon would've been a gold mine. I had to find a way to pay him back and get my money... and I struck on a brilliant idea. @@ Those stone dragon pieces are proof of the power of the Red Dragon bones. A dragon hunter would sell me the yak-shirt off of his back for even a piece of that magic. I won't admit taking it... and you can't prove it. @@ Look, I don't want any trouble. Let's make a deal. If you walk away, you can get a great windfall from the profits. I know you'll make the right choice.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonTrader</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text> Talk to the dragon trader</Text><ID>931277</ID></Title><Desc><Text>Talk to the dragon trader. He seems to have something to tell you.</Text><ID>931278</ID></Desc></Data> + 0 + false + + + 3239 + Volcano14T04 + <Data><Offer><Type>Popup</Type><ID>931283</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What a jerk! Show the helmet to the storekeeper before Skulder gets punished for a crime that he didn't commit.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>931284</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>I'm sorry but this doesn't prove anything. That helmet is in style right now and all the fashionable dragon hunters have it. +Now if you'll excuse me, I'm going to find some good rotten fruit to throw.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>ItemID</Key><Value>13024</Value></Pair><Pair><Key>ItemDescription</Key><Value>Evidence?</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Show the shifty storekeeper the helmet</Text><ID>931281</ID></Title><Desc><Text>Show the shifty storekeeper the helmet that proves someone else was there.</Text><ID>931282</ID></Desc></Data> + 0 + false + + + 3240 + Volcano14T05 + <Data><Offer><Type>Popup</Type><ID>931287</ID><Asset>PfUIMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like the only way to save Skulder may be to steal back what was stolen. You should sneak into the dragon trader's ship.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>AuctionShipINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a way into the dragon trader's ship</Text><ID>931285</ID></Title><Desc><Text>Find a way into the dragon trader's ship near the docks.</Text><ID>931286</ID></Desc></Data> + 0 + false + + + 3245 + Volcano14T06 + <Data><Setup><Scene>AuctionShipINTDO</Scene><Asset>RS_DATA/PfGrpVolcano14T06.unity3d/PfGrpVolcano14T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>931290</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Sneak past the crew and recover the 4 dragon fossils.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>AuctionShipINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFossil</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Recover the 4 dragon fossils without being caught</Text><ID>931288</ID></Title><Desc><Text>Recover the 4 dragon fossils without being caught by the crew.</Text><ID>931289</ID></Desc></Data> + 0 + false + + + 3246 + Volcano14T07 + <Data><Offer><Type>Popup</Type><ID>931293</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Return the 4 stolen dragon fossils to the storekeeper without being caught by the crew.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>931294</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>This is an outrage! That scoundrel looked me in the eyes and told me that he didn't know who stole my stone dragons. I won't let him get away with this! I'll have to gather a rotten fruit posse. @@ Oh-- your friend is free to go. Let him know that there are no hard feelings, yeah?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>ItemID</Key><Value>11178</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fossil</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Return the 4 stolen dragon fossils to the shifty storekeeper</Text><ID>931291</ID></Title><Desc><Text>Return the 4 stolen dragon fossils to the shifty storekeeper without being caught.</Text><ID>931292</ID></Desc></Data> + 0 + false + + + 3247 + Volcano14T08 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistFree</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should check on Skulder.</Text><ID>931297</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank you for getting me out of one of the worst cages that I've found myself in. It's rather annoying that I have so many others to compare it to!</Text><ID>931298</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Skulder</Text><ID>931295</ID></Title><Desc><Text>Check on Skulder. He should be outside the cage</Text><ID>942112</ID></Desc></Data> + 0 + false + + + 3248 + Volcano14T09 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistFree</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I don't understand these dragon traders. I spoke to them about all their fossils and explained their importance but they don't believe me. I think they've had one too many axes to the helmet if you know what I mean. @@ To be on the safe side we should both walk out together. Would you {{input}} on me and lead me to the docks?</Text><ID>931301</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Get out of our way, you ignorant swine!</Text><ID>932867</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>Ha-HA! There's no way out, you meddler. I might have no merchandise and no gold, but I'll have sweet revenge!</Text><ID>932970</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Yeah! Wait... What? There isn't any gold? You swore you'd pay us this time.</Text><ID>932971</ID><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArchaeologistSurrounded</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Skulder and lead him to the docks</Text><ID>931299</ID></Title><Desc><Text>{{Input}} on Skulder and lead him to the docks</Text><ID>931299</ID></Desc><Reminder><Text>Slow down! Skulder is falling behind!</Text><ID>936434</ID></Reminder><Failure><Text>You've lost Skulder! Go back and get him.</Text><ID>936435</ID></Failure></Data> + 0 + false + + + 3250 + Volcano14T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>Don't worry! You'll get all the gold you need once I sell that Singetail. I promise.</Text><ID>932868</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You've caught the dragon trader in a lie. You should tell his crew that the Singetail escaped.</Text><ID>932972</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Where's the vacation you promised us last month? We can't work under these conditions. You've cheated us for the last time!</Text><ID>931309</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonHunter</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell the dragon trader's crew that the Singetail escaped</Text><ID>931305</ID></Title><Desc><Text>Tell the dragon trader's crew that the Singetail escaped. He has lied for the last time!</Text><ID>931306</ID></Desc></Data> + 0 + false + + + 3251 + Volcano14T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I guess: once a cheater, always a cheater. I don't have the words to express my gratitude, {{Name}}. @@ What a terrible town. I need to put this place as far behind me as possible. Let's go to Dragon Island!</Text><ID>931312</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This island is more impressive than I imagined. It's magnificent!</Text><ID>931313</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearVent</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Dragon Island</Text><ID>931310</ID></Title><Desc><Text>Go back to Dragon Island</Text><ID>931310</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204713 + true + 50 + 50 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 204713 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204713 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204713 + true + 50 + 50 + + 0 + +
+ false +
+ + 2339 + Volcano17 + 25 +

+ <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_SecretHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_SecretAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_SecretHarald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_SecretArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_SecretToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWStormcutter</Asset><Location>PfMarker_SecretCloudjumper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_SecretValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Solving the Volcanic Problem</Text><ID>927616</ID></Title><Desc><Text>Solving the Volcanic Problem</Text><ID>927616</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2318 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2339 + 3225 + 0 + + + 1 + 2339 + 3226 + 0 + + + 1 + 2339 + 3227 + 0 + + + 1 + 2339 + 3228 + 0 + + + + 1 + 204714 + 0 + + 3225 + Volcano17T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I think that the Green Death's nest is blocking the way that the lava would normally flow. The pressure from the magma can't penetrate it so it's got nowhere to go but through the hydrothermal vents. That's what must be causing the fog. We need to divert the lava so it is flowing again. @@ Perhaps we could excavate our own set of vents below the nest? It would leave the Green Death and its nest out of harm's way. I'm just not sure how we can do it. @@ Even if we had a hundred Vikings, I don't think they could withstand the blistering heat. If only we had a dragon that resists these intense temperatures and can burrow through the rock. Do you think Valka knows of a dragon like that?</Text><ID>931375</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>There is only one dragon that can do this. It is the Eruptodon! These dragons live deep inside volcanoes and they eat lava, so of course their magnificent skins have adapted to resist even the hottest of temperatures. @@ The Eruptodon can dig a tunnel from inside the volcano, inches from the magma.</Text><ID>931376</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Valka about Skulder's plan</Text><ID>931373</ID></Title><Desc><Text>Ask Valka about Skulder's plan and see if she knows of a dragon that can withstand volcanic heat</Text><ID>942121</ID></Desc></Data> + 0 + false + + + 3226 + Volcano17T02 + <Data><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Unfortunately, Eruptodons are a rare breed. I have met only one Eruptodon, and he was the Great Protector of Defender of the Wing Island. He is... well, we cannot rely on him. Perhaps Hiccup knows where to find another?</Text><ID>931379</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I met the Great Protector too! Small world. I don't know where to look for another... and it won't be easy.</Text><ID>931380</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about where to find an Eruptodon</Text><ID>931377</ID></Title><Desc><Text>Talk to Hiccup about where you can find the Eruptodon</Text><ID>942122</ID></Desc></Data> + 0 + false + + + 3227 + Volcano17T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm. It's a long shot but Eret may have come across an Eruptodon while he was dragon wrangling. Can you talk to him at the Training Grounds and find out?</Text><ID>931383</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Now [c][3eebff]this[/c][ffffff] is right up my alley, mate. Did I mention that I was the finest dragon wrangler?... I did? Alright, we'll just get straight to it. @@ Back in the day, there was an island that shook the oceans with earthquakes and many great dragons leaped from its volcano at any passing ships to protect their home. No hunter would dare sail near it... except yours truly, of course. @@ I still remember high-tailing it out of there when one Eruptodon flew too close. It flew so close that it almost made me soil my britches.</Text><ID>931384</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Eret</Text><ID>931381</ID></Title><Desc><Text>Speak with Eret and find out if he's come across the exotic dragon before</Text><ID>942123</ID></Desc></Data> + 0 + false + + + 3228 + Volcano17T04 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpVolcano18T00_Portal.unity3d/PfGrpVolcano18T00_Portal</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I reckon it's time to get over those fears. We'll need Valka along with us, since I haven't the faintest idea how to train the dragon once we get there! Join me on my ship and, if the seas are kind, we'll be there in no time.</Text><ID>931387</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Welcome to the wild volcano of Eruptodon island. I swear I'm not nervous... Ahem. I might be a little nervous.</Text><ID>932872</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Calm yourself, Eret. The Eruptodon is protective but not violent. As long as we respect him and his home, we won't be harmed.</Text><ID>932976</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb aboard Eret's ship and go to Eruptodon Island</Text><ID>931385</ID></Title><Desc><Text>Climb aboard Eret's ship and go to Eruptodon Island</Text><ID>931385</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204714 + true + 50 + 50 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 204714 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204714 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204714 + true + 50 + 50 + + 0 + +
+ false +
+ + 2344 + Volcano18 + 45 +

+ <Data><Setup><Scene>HubEruptodonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano18T00.unity3d/PfGrpVolcano18T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano18T00_INT.unity3d/PfGrpVolcano18T00_INT</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpVolcano18T00_Portal.unity3d/PfGrpVolcano18T00_Portal</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubEruptodonIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Trust of the Eruptodon</Text><ID>927619</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2339 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2344 + 3252 + 0 + + + 1 + 2344 + 3253 + 0 + + + 1 + 2344 + 3254 + 0 + + + 1 + 2344 + 3255 + 0 + + + 1 + 2344 + 3256 + 0 + + + 2 + 2344 + 2345 + 0 + + + 1 + 2344 + 3258 + 0 + + + 1 + 2344 + 3259 + 0 + + + 1 + 2344 + 3313 + 0 + + + + 1 + 204718 + 0 + + 2345 + Volcano18T06 + 45 +

2344

+ <Data><Offer><Type>Popup</Type><ID>927618</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>This Eruptodon has spent countless hours within the volcano. It may pay attention solely to things that glow like the magma flows. @@ These Fireworms glow with intense heat, and while they are hot they are not aggressive if handled properly. I think that we can use them to capture the Eruptodon's gaze. Gather 5 groups of Fireworms so that we may test our hypothesis!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gather Fireworms</Text><ID>927617</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2345 + 3257 + 0 + + + + 1 + 0 + 0 + + 3257 + Volcano18T07 + <Data><Setup><Scene>HubEruptodonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano18T07.unity3d/PfGrpVolcano18T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFireWorm</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 5 Groups of Fireworms</Text><ID>931390</ID></Title><Desc><Text>Gather 5 Groups of Fireworms on Eruptodon Island</Text><ID>942124</ID></Desc></Data> + 0 + false + + false + + + 3252 + Volcano18T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The Eruptodon is a dragon that prefers the heat and comfort of the volcano. By the Book of Dragons, we would consider him a Boulder class dragon. We'll be sure to find him near lava flows. Let us search this island to look for him.</Text><ID>931394</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Whoa! That's a sturdy one, isn't it? Is that the dragon you were looking for?</Text><ID>931395</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Eruptodon</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Eruptodon</Text><ID>931392</ID></Title><Desc><Text>Look for the Eruptodon on Eruptodon Island</Text><ID>942125</ID></Desc></Data> + 0 + false + + + 3253 + Volcano18T02 + <Data><Setup><Scene>HubEruptodonIslandDO</Scene><Asset>RS_DATA/PfGrpVolcano18T02.unity3d/PfGrpVolcano18T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You have done well to lead us here, Eret. This place is an excellent discovery! @@ We must now begin to train the Eruptodon, to gain its trust and plead for its aid. You may not share a bond as strong as you do with {{dragon name}}, but I believe this noble dragon will come to our aid at Dragon Island. @@ The first step to training a dragon is to prove that you mean it no harm. One way to do that is to offer the dragon his favorite foods. Like many other Boulder Class dragons, Eruptodons prefer to eat rocks. Find some pumice, or lava rocks, that are the Eruptodon's favorite!</Text><ID>931398</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockLava</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for the lava rock around the island</Text><ID>931396</ID></Title><Desc><Text>Look for the lava rock. It's the Eruptodon's favorite food</Text><ID>942126</ID></Desc></Data> + 0 + false + + + 3254 + Volcano18T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Offer the rock to the Eruptodon, {{Name}}.</Text><ID>931401</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Good! He accepted your gift. That is a wonderful start.</Text><ID>931402</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWEruptodon</Value></Pair><Pair><Key>ItemID</Key><Value>7646</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lava Rock</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the pumice to the Eruptodon</Text><ID>931399</ID></Title><Desc><Text>Give the pumice to the Eruptodon to gain its trust</Text><ID>942127</ID></Desc></Data> + 0 + false + + + 3255 + Volcano18T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Next, you must try to see from the dragon's eyes and share his viewpoint. Will you stand at the large dragon's eye level so that you can gain its trust and ask for its aid?</Text><ID>931405</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonEye</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Stand at the Eruptodon's eye level</Text><ID>931403</ID></Title><Desc><Text>Stand in a place where you can be at the Eruptodon's eye level</Text><ID>942128</ID></Desc></Data> + 0 + false + + + 3256 + Volcano18T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>He doesn't seem to notice you. Why not? I do not understand. @@ I must ponder this new information, {{Name}}. Will you search the island for something that will help us get the dragon's attention? There must be something that we are missing.</Text><ID>931408</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh, that is an [c][3eebff]excellent[/c][ffffff] idea. Good work.</Text><ID>931409</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FirewormNest</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look around the island for a solution</Text><ID>931406</ID></Title><Desc><Text>Look around the island for a solution to get the Eruptodon's attention</Text><ID>942129</ID></Desc></Data> + 0 + false + + + 3258 + Volcano18T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It's time to try it again, {{Name}}. Place the Fireworms on the dais by the Eruptodon's eyes. With the glow of the little dragons by your side, perhaps the Eruptodon will accept you.</Text><ID>931412</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano18T08CS.unity3d/PfGrpVolcano18T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonEye</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Place the Fireworms in front of the Eruptodon</Text><ID>931410</ID></Title><Desc><Text>Place the Fireworms in front of the Eruptodon to get its attention</Text><ID>942130</ID></Desc></Data> + 0 + false + + + 3259 + Volcano18T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Beautiful! Perhaps he understands our plight... and our urgency. {{Input}} on the Eruptodon, mount him, and let us leave post haste to Dragon Island!</Text><ID>931415</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubEruptodonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWEruptodon</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Eruptodon</Text><ID>931452</ID></Title><Desc><Text>Mount the Eruptodon now that you've gained its trust</Text><ID>942131</ID></Desc></Data> + 0 + false + + + 3313 + Volcano18T10 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You did it! Amazing work and welcome back. Now that you're here with an Eruptodon, we're ready as long as we have luck on our side. @@ A lot of luck, really. Odin help us, this is a crazy plan, even by my usual standards!</Text><ID>931418</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Dragon Island</Text><ID>931416</ID></Title><Desc><Text>Return to Dragon Island with the Eruptodon</Text><ID>942132</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204718 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204718 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204718 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204718 + true + 350 + 350 + + 0 + +
+ false +
+ + 2346 + Volcano05 + 15 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpVolcano05T00.unity3d/PfGrpVolcano05T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Fire it Up!</Text><ID>927579</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2347 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2346 + 3261 + 0 + + + 1 + 2346 + 3262 + 0 + + + 1 + 2346 + 3263 + 0 + + + 1 + 2346 + 3264 + 0 + + + 1 + 2346 + 3265 + 0 + + + 1 + 2346 + 3266 + 0 + + + 1 + 2346 + 3267 + 0 + + + 1 + 2346 + 3268 + 0 + + + + 1 + 204719 + 0 + + 3261 + Volcano05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The spectrometer worked so well for us, {{Name}}. My mind keeps racing with the possibilities! @@ The spectrometer splits the spectrum of light coming from gases that were heated up in the lab. We should be able to analyze dragon fireballs by using the same technique. Can you ask Hiccup if he could help us make this work?</Text><ID>930964</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, that's a great idea! The more we learn about dragons, the better. Maybe it will help us understand the differences between different classes of dragons!</Text><ID>930965</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Hiccup about the spectrometer</Text><ID>930962</ID></Title><Desc><Text>Ask Hiccup for help with the spectrometer</Text><ID>942043</ID></Desc></Data> + 0 + false + + + 3262 + Volcano05T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_NightFury</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What do you think, bud? Do you want us to figure out what elements are in your fireball? @@ Good! I knew you'd be a good sport. {{Input}} on Toothless and lead him to the spectrometer, {{Name}}.</Text><ID>930968</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMobileSpectrometer</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightFury</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Toothless and bring him to the spectrometer</Text><ID>930966</ID></Title><Desc><Text>{{Input}} on Toothless and bring him to the spectrometer</Text><ID>930966</ID></Desc><Reminder><Text>Slow down! Toothless is falling behind!</Text><ID>936428</ID></Reminder><Failure><Text>You've lost Toothless!</Text><ID>936429</ID></Failure></Data> + 0 + false + + + 3263 + Volcano05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hello Toothless. Thank you for being the first user of the mobile spectrometer! I think this will work out just fine. Rather than heating a gas within the chamber of the spectrometer, I'll ask the dragon to shoot a fireball directly into it. We should be able to analyze the results in exactly the same way. @@ Will you {{input}} on Toothless and ask him to shoot his fireball for us?</Text><ID>930971</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow, this is an interesting array of colors! It looks like there are equal levels of carbon and hydrogen, and a bit of oxygen. Taking the look of the fireball into account, I think it is made out of acetylene and oxygen! @@ [c][3eebff]Acetylene[/c][ffffff] is a very powerful fuel that burns at an extremely high temperature (over 6000 degrees)! That could explain why Toothless has such a powerful blast.</Text><ID>930972</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>NightFuryClick</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>NightFuryClick</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Toothless</Text><ID>930969</ID></Title><Desc><Text>{{Input}} on Toothless outside the lab</Text><ID>942044</ID></Desc></Data> + 0 + false + + + 3264 + Volcano05T04 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>This version of the spectrometer works perfectly! I think we should try to figure out the fires of a lot of different dragons. Can you help spread the word while I get it ready to test in a safe location? Talk to Astrid while I get set up in the Wilderness, please!</Text><ID>930975</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup came by and told me what you're doing. What an exciting idea! I would love to know everything I can about my Stormfly.</Text><ID>930976</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about the dragons</Text><ID>930973</ID></Title><Desc><Text>Talk to Astrid about getting different dragons together in the Wilderness</Text><ID>942045</ID></Desc></Data> + 0 + false + + + 3265 + Volcano05T05 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano05T05.unity3d/PfGrpVolcano05T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWAlchemist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll spread the word and meet you at the Wilderness. See you there!</Text><ID>930979</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thanks for getting the word out, {{Name}}. I finished setting up, and we're ready to test these dragons in quick order!</Text><ID>930980</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Heather in the Wilderness</Text><ID>930977</ID></Title><Desc><Text>Find Heather in the Wilderness and begin the experiment</Text><ID>942046</ID></Desc></Data> + 0 + false + + + 3266 + Volcano05T06 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano05T05.unity3d/PfGrpVolcano05T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>First up is Astrid's dragon, Stormfly! Everyone always says that the Deadly Nadder's fireball is one of the hottest fireballs among dragons. Do you think they're right? Let's find out. {{Input}} on the Deadly Nadder.</Text><ID>930983</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Whoa! What a reaction. I've determined that Stormfly's fireball is made out of [c][3eebff]magnesium[/c][ffffff]! This burns at a very high temperature, so you need to be very careful around Deadly Nadder fireballs. Water doesn't extinguish magnesium fires, so we need to tell the firefighters of Berk right away to get ready!</Text><ID>930984</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWStormfly</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWStormfly</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Stormfly</Text><ID>930981</ID></Title><Desc><Text>{{Input}} on Stormfly to test her fireball</Text><ID>942047</ID></Desc></Data> + 0 + false + + + 3267 + Volcano05T07 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano05T05.unity3d/PfGrpVolcano05T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's a really interesting discovery, Heather. I didn't realize that the Deadly Nadder had such a unique fireball. That makes me wonder about the Scuttleclaw. @@ Many Vikings seem to think that the Scuttleclaw and the Deadly Nadder are very similar, even if they're in different Dragon Classes. Let's test it out! {{Input}} on the Scuttleclaw, {{Name}}.</Text><ID>930987</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That bright green flame is distinctly different from the Deadly Nadder's almost white fire. According to the spectrometer, the Scuttleclaw's flame is made out of a copper compound!</Text><ID>930988</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWScuttleclaw</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWScuttleclaw</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Scuttleclaw</Text><ID>930985</ID></Title><Desc><Text>{{Input}} on the Scuttleclaw to test its fireball</Text><ID>942048</ID></Desc></Data> + 0 + false + + + 3268 + Volcano05T08 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano05T05.unity3d/PfGrpVolcano05T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We're next, we're next! Can you {{input}} on Meatlug and ask her to shoot a fireball at the spectrometer?</Text><ID>930991</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow, there are a lot of colors being reflected here... Let's see. It looks like Meatlug's fireball is showing the colors that correspond to oxygen, iron, calcium, sodium... and so much more! @@ That's a really interesting combination of elements. Perhaps it's because of her steady diet of different rocks.</Text><ID>932859</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That's because Gronckles shoot fireballs made out of lava and lava is formed by many different volcanic gases. That's what makes Meatlug's fireball so special. @@ This is so much data! I'm really excited to add this to the Book of Dragons. Great job, {{Name}}!</Text><ID>933399</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMeatlug</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMeatlug</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Meatlug</Text><ID>927602</ID></Title><Desc><Text>{{Input}} on Meatlug to test her fireball</Text><ID>942049</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204719 + true + 50 + 50 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 204719 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204719 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204719 + true + 50 + 50 + + 0 + +
+ false +
+ + 2347 + Volcano04 + 15 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Back into Action</Text><ID>927578</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2354 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2347 + 2348 + 0 + + + 2 + 2347 + 2349 + 0 + + + 1 + 2347 + 3270 + 0 + + + 2 + 2347 + 2350 + 0 + + + 1 + 2347 + 3271 + 0 + + + 1 + 2347 + 3273 + 0 + + + 1 + 2347 + 3274 + 0 + + + 1 + 2347 + 3275 + 0 + + + 2 + 2347 + 2362 + 0 + + + 1 + 2347 + 3277 + 0 + + + + 1 + 204720 + 0 + + 2348 + Volcano04T01 + 15 +

2347

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Heather about the fog</Text><ID>927571</ID></Title><Desc><Text>Talk to Heather about the fog</Text><ID>927571</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2348 + 3278 + 0 + + + + 1 + 204721 + 0 + + 3278 + Volcano04T01A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now that we can analyze what gases are made out of, we can approach this problem scientifically. You'll need to go back into the fog... but I have something that might help you avoid falling ill out there.</Text><ID>930930</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather about the fog</Text><ID>927571</ID></Title><Desc><Text>Talk to Heather about the fog. She has something that may help you</Text><ID>942034</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13011 + + 1 + 5332 + 204721 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13012 + + 1 + 5333 + 204721 + true + 1 + 1 + + 0 + +
+ false + + + 2349 + Volcano04T02 + 15 +

2347

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Hiccup about his air trapping device</Text><ID>927573</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2349 + 3269 + 0 + + + + 1 + 204745 + 0 + + 3269 + Volcano04T02A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>If you put that around your nose and mouth, it might filter out some of the toxins. We'll need something airtight to get a sample of the fog. I bet Hiccup will be able to help with that.</Text><ID>930933</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I do have something that might work! I created a contraption that helps me collect Hideous Zippleback gas for the Dragon Blade. I call it the Zippleback Bellows! That's how I captured the gases for the spectrometer in the Lab. @@ Be very careful with it near the ocean, but more importantly, be safe out there!</Text><ID>930934</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about his air trapping device</Text><ID>927573</ID></Title><Desc><Text>Talk to Hiccup about his air trapping device in Dragon's Edge</Text><ID>942035</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13005 + + 1 + 5328 + 204745 + true + 1 + 1 + + 0 + +
+ false +
+ + 2350 + Volcano04T04 + 15 +

2347

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Use the Zippleback Bellows to gather fog</Text><ID>927574</ID></Title><Desc><Text>Use the Zippleback Bellows to gather fog in the open ocean.</Text><ID>927575</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2350 + 3272 + 0 + + + + 1 + 204722 + 0 + + 3272 + Volcano04T04A + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpVolcano04T04.unity3d/PfGrpVolcano04T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Fly up to the gaseous spots to get 3 samples of the fog.</Text><ID>930937</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Something's wrong. The smell of the fog is starting to get to you...</Text><ID>930938</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFog</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 3 samples of the fog</Text><ID>930935</ID></Title><Desc><Text>Use the Zippleback Bellows to gather 3 samples of the fog from the open ocean</Text><ID>942036</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13006 + + 1 + 5308 + 204722 + true + 1 + 1 + + 0 + +
+ false +
+ + 2362 + Volcano04T09 + 15 +

2347

+ <Data><Offer><Type>Popup</Type><ID>922981</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting choice! Let's go into the lab.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Enter the Lab</Text><ID>927576</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2362 + 3276 + 0 + + + + 1 + 0 + 0 + + 3276 + Volcano04T09 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>HeatFog</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the lab and use the spectrometer</Text><ID>930939</ID></Title><Desc><Text>Go into the lab and use the spectrometer to test the fog</Text><ID>942037</ID></Desc></Data> + 0 + false + + false +
+ + 3270 + Volcano04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great! Now we have all the tools to do it, we can gather some samples of the fog for the Lab! Remember to wear the bandana I gave you and fly out into that ocean fog! It should keep you from fainting like Bucket and Mulch.</Text><ID>930943</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the ocean where the fog is thick</Text><ID>930941</ID></Title><Desc><Text>Return to the ocean where the fog is thick</Text><ID>930941</ID></Desc></Data> + 0 + false + + + 3271 + Volcano04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe you just need a place to catch your breath. Get out of the fog and land on the sea stack.</Text><ID>930946</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano04T05CS.unity3d/PfGrpVolcano04T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AvatarStart01</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get to the sea stack to escape the fog</Text><ID>930944</ID></Title><Desc><Text>Get to the sea stack to escape the fog before you get too light-headed</Text><ID>942038</ID></Desc></Data> + 0 + false + + + 3273 + Volcano04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Take it easy, {{Name}}. You had a close call but you're safe now. Come talk to me when you feel strong enough.</Text><ID>930949</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano04T06CS.unity3d/PfGrpVolcano04T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm glad you're feeling better. You passed out in the fog, but {{dragon name}} rescued you and flew you to the school. You've definitely trained this one well!</Text><ID>930950</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather about what happened</Text><ID>930947</ID></Title><Desc><Text>Talk to Heather about what happened. She's near the school</Text><ID>942039</ID></Desc></Data> + 0 + false + + + 3274 + Volcano04T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It's probably a good idea for all of us to steer clear of that fog until we figure out a solution. Please give me whatever samples you managed to get.</Text><ID>930953</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Yes! It's full! Both of you did very well. I hope we can answer some of our questions with this fog sample.</Text><ID>930954</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13006</Value></Pair><Pair><Key>ItemDescription</Key><Value>Gas Canister</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13005</Value></Pair><Pair><Key>ItemDescription</Key><Value>Zippleback Bellows</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Gas Canister to Heather</Text><ID>930951</ID></Title><Desc><Text>Give the Gas Canister to Heather outside the lab</Text><ID>942040</ID></Desc></Data> + 0 + false + + + 3275 + Volcano04T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'll get the spectrometer ready for you. Before we start, I'd love to know your hypothesis. What do you think this strange fog is made out of?</Text><ID>930957</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesisVolcano04T08.unity3d/PfUiHypothesisVolcano04T08</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Make a hypothesis with Heather</Text><ID>930955</ID></Title><Desc><Text>Make a hypothesis with Heather for what the fog is made of</Text><ID>942041</ID></Desc></Data> + 0 + false + + + 3277 + Volcano04T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The spectrometer showed the chemical composition of two separate elements, sulfur and oxygen. This means that the fog is made out of [c][3eebff]sulfur dioxide[/c][ffffff]! @@ No wonder our Vikings were falling ill; it's a dangerous chemical that can result in difficulty breathing or even death. It usually comes out of volcanoes, but there aren't any active volcanoes this close to the School. @@ We need to tell Hiccup about the discovery. Please let him know – and please come back to me when you have time. I have some exciting ideas that we can explore with the spectrometer!</Text><ID>930960</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There are a few volcanoes in the archipelago, but they're not so large that they could blanket the entire ocean with sulfur dioxide. This discovery only raises more questions! We [c][3eebff]need[/c][ffffff] more information.</Text><ID>930961</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13005</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Hiccup about the results</Text><ID>930958</ID></Title><Desc><Text>Talk to Hiccup about the results of the gas experiment</Text><ID>942042</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204720 + true + 50 + 50 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204720 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204720 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204720 + true + 200 + 200 + + 0 + +
+ false +
+ + 2354 + Volcano03 + 25 +

+ <Data><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Solving the Gas</Text><ID>927570</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2320 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2354 + 2355 + 0 + + + 1 + 2354 + 3291 + 0 + + + 2 + 2354 + 2356 + 0 + + + 1 + 2354 + 3293 + 0 + + + 1 + 2354 + 3294 + 0 + + + 2 + 2354 + 2360 + 0 + + + + 1 + 204725 + 0 + + 2355 + Volcano03T01 + 25 +

2354

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Heather about the fog</Text><ID>927571</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2355 + 3290 + 0 + + + + 1 + 204732 + 0 + + 3290 + Volcano03T01A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I lost track of time on a dig site and I was out there in the fog for too long. I fell violently ill! I've never seen or experienced anything like this before. We need to figure out why this fog made me sick! Can you speak to Heather and look for a scientific way to solve this mystery?</Text><ID>930901</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I think Skulder is right about that fog because it is definitely not just water and air. Why does it make Vikings sick... and why aren't the dragons affected? Organisms have adaptations to help them survive the type of environment they live in. @@ Over the years, dragons must have adapted to survive in this fog; that's why their bodies can handle it while Vikings get nauseous.</Text><ID>930902</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather about the fog</Text><ID>927571</ID></Title><Desc><Text>Talk to Heather about the fog and see if she has an explanation</Text><ID>942029</ID></Desc></Data> + 0 + false + + false + + + 2356 + Volcano03T03 + 25 +

2354

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Get a prism from Johann</Text><ID>927565</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2356 + 3292 + 0 + + + + 1 + 204726 + 0 + + 3292 + Volcano03T03A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Light is one of the forms of energy, and the light we can see is called the [c][3eebff]visible spectrum[/c][ffffff]. This light is made of the colors in the [c][3eebff]visible spectrum[/c][ffffff] that haven't been [c][3eebff]absorbed[/c][ffffff] by an object. For instance, Stormfly is blue because her scales absorb all the colors of the spectrum other than blue. @@ We shine a light through a gas then we [c][3eebff]refract[/c][ffffff], or separate, that light. That way, we can see which part of the spectrum is absorbed by the material. That tells us what that gas is made out of! @@ I have everything ready to go except for one final piece: the prism that will refract the light. Johann was supposed to bring me one in his latest shipment.</Text><ID>930905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Master Hiccup's prism? I have it right here, carefully wrapped in the finest silks! I am sure he will appreciate the presentation and the craftsmanship of the prism! Where did I get it, you ask? Well, it is a wondrous story full of tragedy and betrayal. @@ There I was, sailing along the Twin Tooth fjords when a ship the size of a hammerhead whale suddenly appeared along my starboard bow! I didn't know what to do, and...</Text><ID>930906</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get a prism from Johann</Text><ID>927565</ID></Title><Desc><Text>Get a prism from Johann, the Trader</Text><ID>942030</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13007 + + 1 + 5310 + 204726 + true + 1 + 1 + + 0 + +
+ false +
+ + 2360 + Volcano03T06 + 25 +

2354

+ <Data><Offer><Type>Popup</Type><ID>927568</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thanks for setting up the Lab, Hiccup. I'm excited to put the spectrometer to good use! Let's go inside.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927569</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow, Hiccup, you really outdid yourself this time. The spectrometer worked perfectly! @@ Now we know the colors of some common elements. The next step is to test the fog with the spectrometer to figure out if it has the same colors as any of these gases!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Enter the Lab</Text><ID>927576</ID></Title><Desc><Text>Enter the Lab and use the spectrometer.</Text><ID>927567</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2360 + 3295 + 0 + + + 1 + 2360 + 3314 + 0 + + + 1 + 2360 + 3315 + 0 + + + 1 + 2360 + 3316 + 0 + + + 1 + 2360 + 3317 + 0 + + + + 1 + 0 + 0 + + 3295 + Volcano03T06A + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>HeatOxygen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the spectrometer in the Lab</Text><ID>930911</ID></Title><Desc><Text>Use the spectrometer in the Lab</Text><ID>930909</ID></Desc></Data> + 0 + false + + + 3314 + Volcano03T06B + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>HeatHydrogen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the spectrometer in the Lab</Text><ID>930911</ID></Title><Desc><Text>Use the spectrometer in the Lab</Text><ID>930909</ID></Desc></Data> + 0 + false + + + 3315 + Volcano03T06C + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>HeatWater</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the spectrometer in the Lab</Text><ID>930911</ID></Title><Desc><Text>Use the spectrometer in the Lab</Text><ID>930909</ID></Desc></Data> + 0 + false + + + 3316 + Volcano03T06D + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>HeatSulfur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the spectrometer in the Lab</Text><ID>930911</ID></Title><Desc><Text>Use the spectrometer in the Lab</Text><ID>930909</ID></Desc></Data> + 0 + false + + + 3317 + Volcano03T06E + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>HeatCopper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the spectrometer in the Lab</Text><ID>930911</ID></Title><Desc><Text>Use the spectrometer in the Lab</Text><ID>930909</ID></Desc></Data> + 0 + false + + false +
+ + 3291 + Volcano03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hiccup and I are constantly making new upgrades to the lab that will allow us to test fantastic scientific theories together. We've been working on a way to test the [c][3eebff]chemical composition of gases[/c][ffffff] by analyzing the colors of light. I think this might be the perfect time to use that device! Will you bring Hiccup up to speed on the situation?</Text><ID>930919</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! I've been looking for a chance to debut my [c][3eebff]spectrometer[/c][ffffff]. It's a device that can measure the properties of light!</Text><ID>930920</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about chemical composition</Text><ID>930917</ID></Title><Desc><Text>Talk to Hiccup about chemical composition in Dragon's Edge</Text><ID>942031</ID></Desc></Data> + 0 + false + + + 3293 + Volcano03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should get away from Johann before he talks your ears off. Hiccup must be eagerly awaiting that prism.</Text><ID>930923</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13007</Value></Pair><Pair><Key>ItemDescription</Key><Value>Prism</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup the prism</Text><ID>930921</ID></Title><Desc><Text>Give Hiccup the prism. He's by the lab in the school</Text><ID>942032</ID></Desc></Data> + 0 + false + + + 3294 + Volcano03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Excellent! This prism will separate the wavelengths of light, and show all the colors of light, just like a rainbow does. I'll get the spectrometer ready for the lab. Can you ask Heather if she has the gases ready to go?</Text><ID>930926</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Yes, I got the canisters of gases ready to go! Usually, Hiccup has these filled with Zippleback gas for his Dragon Blade, but we have a wide assortment of gases to test for the lab here. @@ You see, we want to know the chemical composition of the mysterious fog. If we put it through the spectrometer, it will show us where on the [c][3eebff]visible spectrum[/c][ffffff] the fog emits, but we don't know what that matches! We need a baseline result to calibrate the spectrometer, so that we can recognize the chemical structure when we test the fog.</Text><ID>930927</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the school</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather outside the lab at the school</Text><ID>942033</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204725 + true + 75 + 75 + + 0 + +
+ + 350 +

1

+ 0 + + 1 + 368 + 204725 + true + 350 + 350 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204725 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204725 + true + 200 + 200 + + 0 + +
+ false +
+ + 2357 + Volcano20 + 4 +

+ <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfGrpVolcano20T00.unity3d/PfGrpVolcano20T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_LegendaryHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Volcanic Finale</Text><ID>927630</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2315 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2357 + 3296 + 0 + + + 1 + 2357 + 3297 + 0 + + + 2 + 2357 + 2358 + 0 + + + 1 + 2357 + 3298 + 0 + + + 1 + 2357 + 3300 + 0 + + + + 1 + 204727 + 0 + + 2358 + Volcano20T03 + 4 +

2357

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Valka</Text><ID>924670</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2358 + 3299 + 0 + + + + 1 + 204728 + 0 + + 3299 + Volcano20T03A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great job finding your way to Eruptodon Island. Without that, I don't think we could have found a peaceful way out of the situation. Thank Odin you were able to find the dragon and bring him here. I'm not the only person that thinks that way... Valka wanted to talk to you too.</Text><ID>931496</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The Green Death is not a ravenous beast like the Red Death... but in its presence, I felt the terrible majesty and impossible power within. It amazes me that there are many legendary dragons like the Bewilderbeast, hiding in corners of the world. I long to bask in their presence of these nobles dragons! @@ You seem to have made a strong bond with the Eruptodon. No surprise, since danger and adventure can quickly bring two souls together. I trust that you will train the Eruptodon with love and respect.</Text><ID>931497</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka about the Eruptodon and the Green Death</Text><ID>942151</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13008 + + 1 + 5311 + 204728 + true + 1 + 1 + + 0 + +
+ false + + + 3296 + Volcano20T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job! You're proving yourself a wonderful dragon trainer again and again. I know that I can rely on you to hold yourself together and excel when danger is afoot. You protected Skulder so well! You should talk to him and make sure he's doing okay.</Text><ID>931500</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>If anyone had told wee young Skulder that he would one day venture into the heart of a volcano and solve a mystery that was threatening to destroy Berk, I would have told him that he was struck by Loki! What a day, my friend. @@ Now that we've created these vents, I think that the volcanic pressure will not build up and cause those issues again. Soon the fog will die down, and we'll be able to use the trade routes once more. Wonderful!</Text><ID>931501</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Skulder</Text><ID>931498</ID></Title><Desc><Text>Talk to Skulder on Dragon Island</Text><ID>942152</ID></Desc></Data> + 0 + false + + + 3297 + Volcano20T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>All in a day's work, of course! It is a shame that we weren't able to bring Harald to justice. Have we been able to find him? Perhaps Astrid has been able to track that rascal down?</Text><ID>931504</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No, there was no sign of him anywhere. Maybe the Green Death sunk his ship with a fireball, but somehow I doubt it. I think he slipped past me through the fog. I'll give him this much: Harald is one slippery eel! I don't think we've seen the end of him quite yet.</Text><ID>931505</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Astrid</Text><ID>931502</ID></Title><Desc><Text>Speak with Astrid about where Harald went</Text><ID>942153</ID></Desc></Data> + 0 + false + + + 3298 + Volcano20T04 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}! Hiccup said that there's something happening with the egg we rescued from Harald. He told me he needed to get it to the Hatchery right away! Let's follow him and see what's going on with that egg.</Text><ID>931508</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Over here!</Text><ID>931509</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hiccup at the Hatchery</Text><ID>931506</ID></Title><Desc><Text>Find Hiccup at the Hatchery and see what's going on with the egg</Text><ID>942154</ID></Desc></Data> + 0 + false + + + 3300 + Volcano20T05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm sorry I left Dragon Island without telling you guys, but the egg is so close to hatching! I've never seen an egg like this before. What type of dragon do you think is inside? Oh, exciting! Will you take a closer look at the egg and see if you can spot the new dragon?</Text><ID>931512</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This... changes [c][3eebff]everything[/c][ffffff].</Text><ID>932874</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano20T05CS.unity3d/PfGrpVolcano20T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBContinue.unity3d/PfUiMissionActionDBContinue</Asset><NPC>PfPlayer</NPC><Text>.</Text><ID>933403</ID><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LegendaryTidalEgg</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>12995</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13023</ItemID><Quantity>1</Quantity></RemoveItem><Type>Visit</Type><Title><Text>Get close to the egg</Text><ID>931510</ID></Title><Desc><Text>Get close to the egg and have a good look at it</Text><ID>942155</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204727 + true + 50 + 50 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204727 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204727 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204727 + true + 50 + 50 + + 0 + +
+ false +
+ + 2363 + Volcano10 + 4 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Map Connection</Text><ID>927601</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2332 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2363 + 3301 + 0 + + + 1 + 2363 + 3302 + 0 + + + 2 + 2363 + 2364 + 0 + + + 1 + 2363 + 3304 + 0 + + + 1 + 2363 + 3305 + 0 + + + 1 + 2363 + 3306 + 0 + + + 1 + 2363 + 3307 + 0 + + + 1 + 2363 + 3308 + 0 + + + + 1 + 204734 + 0 + + 2364 + Volcano10T03 + 4 +

2363

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2364 + 3303 + 0 + + + + 1 + 204735 + 0 + + 3303 + Volcano10T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'll get to work right away on putting the location of these shipwrecks from the navigation charts onto my map. In the meantime, I need more information. No one here has the passion for map-making like I do, but maps are so useful that I'm sure there are some floating around. @@ Can you find them? You should ask the fishermen and travelers first, then you'll see what they use to navigate the waters. See if Mulch can help.</Text><ID>931119</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Argh! Be careful if you decide to sail out to Dragon Island. The wind tunnels and water currents around that volcano are fast and treacherous. @@ One inattentive moment at the helm, and boom! Your ship gets smashed against one of the hundreds of sea stacks. Your dragon could suffer the same fate if you're not careful. I have a map of the ocean currents and shipwrecks in the area. @@ I read it and call out directions to Bucket so that we can avoid the obstacles. Pay close attention to this map and you just might make it through.</Text><ID>931120</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Mulch for a map</Text><ID>931117</ID></Title><Desc><Text>Ask Mulch, a fisherman, for his map</Text><ID>942075</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13016 + + 1 + 5314 + 204735 + true + 1 + 1 + + 0 + +
+ false + + + 3301 + Volcano10T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's take a closer look at the map you recovered from the shipwreck. This type of map is called a nautical chart because it plots out the locations of tides, currents, and obstacles in the area. @@ Every ship needs one so that it doesn't hit a hazard and sink. {{Input}} on the nautical chart in your Backpack!</Text><ID>931123</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These guys must have been really trying to find the source of Harald's 'magic dragon bones.' They plotted out the shipwrecks on the way to the island. It's a good start, but it won't help anyone get to Dragon Island safely.</Text><ID>931124</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>12995</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the nautical charts in your Backpack</Text><ID>931121</ID></Title><Desc><Text>{{Input}} on your Backpack and {{input}} on the nautical charts to look at them</Text><ID>942076</ID></Desc></Data> + 0 + false + + + 3302 + Volcano10T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>They were trying to solve the same problem as us: how do we get to Dragon Island? It was a good idea but they crashed on the way. Don't worry; the fact that their solution didn't work doesn't bode ill for us. @@ There are always multiple ways to approach a problem. We can learn the lesson from this failure and try something else. I gave you my map of Dragon Island earlier; let's {{input}} on it in your Backpack and take another look.</Text><ID>931127</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>They look sort of similar, huh? These maps are really useful when we have landmarks or when we use the stars to know where we are by latitude and longitude. But because of the fog, we need more information.</Text><ID>931128</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>13009</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hiccup's Map in your Backpack</Text><ID>931100</ID></Title><Desc><Text>{{Input}} on your Backpack then {{input}} on Hiccup's Map to take a look at it</Text><ID>942077</ID></Desc></Data> + 0 + false + + + 3304 + Volcano10T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Open Mulch's map in your Backpack.</Text><ID>931131</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>13016</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Look at Mulch's map in your Backpack</Text><ID>931129</ID></Title><Desc><Text>{{Input}} on your Backpack and {{input}} on Mulch's map to look at it</Text><ID>942078</ID></Desc></Data> + 0 + false + + + 3305 + Volcano10T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I'd recommend you have a word with Bucket about his map.</Text><ID>931134</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Oh, I know all about Dragon Island! Mulch and I don't go there often, but they have some really really good salmon spots. @@ Whenever we get to a new great fishing area, I mark it down on this map. You can have it.</Text><ID>931135</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket about his map</Text><ID>931132</ID></Title><Desc><Text>Talk to Bucket about his map. It'll help find the way to Dragon Island</Text><ID>942079</ID></Desc></Data> + 0 + false + + + 3306 + Volcano10T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano10T06.unity3d/PfGrpVolcano10T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Now, where did I leave my map? I thought I left it out here...</Text><ID>931138</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDIMapBucket</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for Bucket's map</Text><ID>931136</ID></Title><Desc><Text>Look for Bucket's map. It can't be too far away</Text><ID>942080</ID></Desc></Data> + 0 + false + + + 3307 + Volcano10T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>That's it! You should look at it.</Text><ID>931141</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>13017</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check out Bucket's map in your Backpack</Text><ID>931139</ID></Title><Desc><Text>{{Input}} on your Backpack and {{input}} on Bucket's map to check it out</Text><ID>942081</ID></Desc></Data> + 0 + false + + + 3308 + Volcano10T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should give the maps to Hiccup.</Text><ID>931144</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay, okay... this looks great! The information on the maps don't mean much on its own, but I think we can use all of them together to get us to Dragon Island! Give me a few minutes to see what I can do to put it all on one map.</Text><ID>931145</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13016</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mulch's Map</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13017</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bucket's Map</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13009</Value></Pair><Pair><Key>ItemDescription</Key><Value>Hiccup's Map</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the maps to Hiccup</Text><ID>931142</ID></Title><Desc><Text>Give the maps to Hiccup. Together they should be enough to show the way to Dragon Island</Text><ID>942082</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204734 + true + 60 + 60 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204734 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204734 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204734 + true + 200 + 200 + + 0 + +
+ false +
+ + 2372 + Quest_Version2 + 3 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A New Dawn</Text><ID>927473</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-01-2014 07:00:00,01-04-2022 07:00:00 + 0 + false + + + 3 + 1304 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2372 + 2373 + 0 + + + 1 + 2372 + 3339 + 0 + + + 1 + 2372 + 3340 + 0 + + + 1 + 2372 + 3341 + 0 + + + + 1 + 204750 + 0 + + 2373 + Version2T01 + 3 +

2372

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Eret, son of Eret</Text><ID>927472</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2373 + 3338 + 0 + + + + 1 + 204751 + 0 + + 3338 + Verson2T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_BerkPoster01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929914</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>It's good you've stopped by, {{greeting}}. There's so much to do here to get Berk back up to speed and I need more than a hand to do it all! For example, I need more stones from Eret for the rebuilding project. Go down to the docks and get them from that rascal!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929915</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Here's a new face! I'm glad to meet you, mate. I'm Eret, son of Eret, the most famous dragon wrangler alive! I'm sure you knew that, of course.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Eret at Berk</Text><ID>929912</ID></Title><Desc><Text>Speak with Eret at Berk.</Text><ID>929913</ID></Desc></Data> + 0 + false + + + 10 +

6

+ 7970 + + 1 + 5355 + 204751 + true + 10 + 10 + + 0 + +
+ false + + + 3339 + Verson2T02 + <Data><Offer><Type>Popup</Type><ID>929918</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Well, I've turned over a new leaf. Now that I've thrown my lot in with you, I'll be dragon training with the School! Be kind to me, mate. Take the building stones to Snotlout, yeah?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929919</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Ah! I was just looking for that. We used a lot of stones to make Stoick's memorial statue by the Great Hall, so we need to restock our supplies. Good on Eret!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>7970</Value></Pair><Pair><Key>ItemDescription</Key><Value>Building Stone</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the building blocks to Snotlout</Text><ID>929916</ID></Title><Desc><Text>Take the building blocks to Snotlout.</Text><ID>929917</ID></Desc></Data> + 0 + false + + + 3340 + Verson2T03 + <Data><Offer><Type>Popup</Type><ID>929922</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Can you let our chief Hiccup know we're getting the project done?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929923</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks for helping out {{Name}}. There's a lot of rebuilding left to do after Drago and the Bewilderbeast attacked Berk. But we're a family, and we're going to get through this together... as one.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup</Text><ID>929920</ID></Title><Desc><Text>Speak with Hiccup.</Text><ID>929921</ID></Desc></Data> + 0 + false + + + 3341 + Verson2T04 + <Data><Offer><Type>Popup</Type><ID>929926</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>If you haven't said hello yet to Cloudjumper, you should go up the steps and do so!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929927</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I think Cloudjumper is still feeling miffed with all these young dragons running around. Hello! I'm so glad you're here to help us rebuild, dragon trainer. I can see the passion for dragons in your eyes... we'll need that, in the hard times to come. @@ We stand together, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWStormcutter</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Say hello to Cloudjumper at Berk</Text><ID>929924</ID></Title><Desc><Text>Walk up to Cloudjumper at Berk.</Text><ID>929925</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204750 + true + 300 + 300 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 204750 + true + 45 + 45 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204750 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204750 + true + 50 + 50 + + 0 + +
+ false +
+ + 2389 + Edu107 + 5 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu107T00.unity3d/PfGrpQEdu107T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_MulchBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWMulch</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Mulch's Sinking Adventure</Text><ID>927279</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2324 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2389 + 3395 + 0 + + + 2 + 2389 + 2390 + 0 + + + 1 + 2389 + 3397 + 0 + + + 1 + 2389 + 3398 + 0 + + + 2 + 2389 + 2391 + 0 + + + 1 + 2389 + 3399 + 0 + + + 1 + 2389 + 3401 + 0 + + + + 1 + 204776 + 0 + + 2390 + Edu107T02 + 5 +

2389

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ask Bucket for help</Text><ID>927277</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2390 + 3396 + 0 + + + + 1 + 204777 + 0 + + 3396 + Edu107T02A + <Data><Offer><Type>Popup</Type><ID>927810</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I need something to seal the cracks before my boat sinks to the bottom of the ocean. Hurry! Go back to Bucket and tell him what I need.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927811</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Oh no! We need to help right away! What can we do... how about a bucket? @@ Wait, that won't work. We need something hard and tough to plug up the holes. Maybe these rocks will work?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Bucket for help</Text><ID>927277</ID></Title><Desc><Text>Ask Bucket for help in Berk.</Text><ID>927809</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13063 + + 1 + 5364 + 204777 + true + 1 + 1 + + 0 + +
+ false + + + 2391 + Edu107T05 + 5 +

2389

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Take the rocks and the 5 Tar Residues to Heather</Text><ID>927278</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2391 + 3400 + 0 + + + + 1 + 204778 + 0 + + 3400 + Edu107T05A + <Data><Offer><Type>Popup</Type><ID>927814</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Coating the rocks with tar might make a [c][3eebff]waterproof[/c][ffffff] solution to the leak. [c][3eebff]Might[/c][ffffff]. Come back to me and give me the rocks and the tar!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927815</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>If we coat the rocks with the tar, the rocks will become [c][3eebff]waterproof[/c][ffffff]. You see, [c][3eebff]waterproof[/c][ffffff] materials have the property of [c][3eebff]low absorbency[/c][ffffff] (it doesn't let water enter). This means that the rocks are safe from the destructive effects of water and dampness.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13063</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pile of Rocks</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13064</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tar Residue</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Take the rocks and the 5 Tar Residues to Heather in the School</Text><ID>927812</ID></Title><Desc><Text>Take the rocks and the 5 Tar Residues to Heather in the School.</Text><ID>927813</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13065 + + 1 + 5365 + 204778 + true + 1 + 1 + + 0 + +
+ false +
+ + 3395 + Edu107T01 + <Data><Offer><Type>Popup</Type><ID>927818</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Oh thank Thor you are here! Mulch is out at sea and he's never this late getting back. I'm worried about him. I even took a look through that strange glass bucket-- the telescope-- but so far I haven't seen a thing. Please, fly out to sea and find him.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927819</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You're just in time! My boat has a few cracks in its hull, the poor girl, and she's taking on a lot of water. I'm bailing water out as fast as I can, but I can't keep this up much longer!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MulchBoat</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Mulch's Boat out at sea in Berk</Text><ID>927816</ID></Title><Desc><Text>Look for Mulch's Boat out at sea in Berk.</Text><ID>927817</ID></Desc></Data> + 0 + false + + + 3397 + Edu107T03 + <Data><Offer><Type>Popup</Type><ID>927822</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Mulch always tells me my bucket is hard and that I have weird ideas, but we'll never know for sure what will work unless we try it, right? It's experimentation! Wow, that's a big word for me. Mulch would be so proud. @@ Can you talk to Heather by the Lab? She'll know if my idea will work.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927823</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I know Bucket wants to help, but those rocks won't do the job! Rocks don't have the properties we need to fix the cracks on Mulch's boat. @@ All materials have [c][3eebff]multiple properties[/c][ffffff], or characteristics. Some of these properties include strength (the ability to hold a load without breaking apart), [c][3eebff]elasticity[/c][ffffff] (the ability to return to its original shape and size after being deformed), [c][3eebff]absorbency[/c][ffffff] (its ability to soak in liquids), and many more. @@ We need to find a material-- or a combination of materials-- that could have the properties that can be used to fix Mulch's boat.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherGenNotRight</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Heather about the rocks at the School</Text><ID>927820</ID></Title><Desc><Text>Ask Heather about the rocks at the School.</Text><ID>927821</ID></Desc></Data> + 0 + false + + + 3398 + Edu107T04 + <Data><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfGrpQEdu107T04.unity3d/PfGrpQEdu107T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927826</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Still, he is right about experimentation. There is still a chance that it could work... a [c][3eebff]very[/c][ffffff] small chance. I have an idea that might increase that chance! @@ We can use [c][3eebff]tar[/c][ffffff] to make the rocks more useful for sealing the cracks in Mulch's boat! It's a thick black liquid that can help make things [c][3eebff]waterproof[/c][ffffff], or protected against water. Tar is made when organic fuels like wood and coal are heated to a very high temperature without any oxygen. @@ It's created underground and seeps through pores in the earth's surface. There used to be a boiling tar pit within the Hatchery. Can you gather 5 tar samples there?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927827</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That was quick work!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWTar</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 5 Tar Residue from around the hatching pool</Text><ID>927824</ID></Title><Desc><Text>Gather 5 Tar Residue from around the hatching pool in the Hatchery.</Text><ID>927825</ID></Desc></Data> + 0 + false + + + 3399 + Edu107T06 + <Data><Offer><Type>Popup</Type><ID>927830</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There! This should help a lot more than the rocks by themselves. Can you get them to Mulch as soon as you can? I'll find Whip and Lash and follow you there just in case you need more help!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927831</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Rocks? I don't think I would have thought of it-- or tar-- but I'm willing to try anything to save my boat! Here goes nothing...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQEdu107T06CS.unity3d/PfGrpQEdu107T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>ItemID</Key><Value>13065</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pile of Tar Covered Rocks</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Get the Tar covered rocks to Mulch in Berk</Text><ID>927828</ID></Title><Desc><Text>Get the Tar covered rocks to Mulch in Berk.</Text><ID>927829</ID></Desc></Data> + 0 + false + + + 3401 + Edu107T07 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu107T06.unity3d/PfGrpQEdu107T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>927834</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Holy yak's milk! The rocks shattered when I tried to force them into the cracks! These rocks were waterproof, but we need something more [c][3eebff]malleable[/c][ffffff] to seal this crack. [c][3eebff]Malleable[/c][ffffff] materials deform under pressure rather than shattering. @@ Oh, blast my big bushy beard! I won't let my boat sink, {{Name}}! Can you signal Heather?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932779</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need more time to find the solution, Mulch. We brought Whip and Lash to help out! Let's pull your ship onto this sea stack so that it doesn't sink while we fix the cracks.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932882</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Excellent suggestion, Heather! @@ My heartfelt thanks for your timely rescue, {{Name}}! I'll rely on your help again when it comes time to fixing my boat.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Heather to rescue Mulch</Text><ID>927832</ID></Title><Desc><Text>{{Input}} on Heather to rescue Mulch.</Text><ID>927833</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204776 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204776 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204776 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204776 + true + 200 + 200 + + 0 + +
+ false +
+ + 2392 + New Farming 169 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2392 + 3402 + 0 + + + + 1 + 204779 + 0 + + 3402 + 1 Beet, 6 Dragon Nip, 3 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beet, Dragon Nip, Yak's Milk</Text><ID>928866</ID></Title><Desc><Text>Eret could use a special treat for Skullcrusher.</Text><ID>928867</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 204779 + true + 72 + 72 + + 0 + + + + 572 +

2

+ 0 + + 1 + 5366 + 204779 + true + 572 + 572 + + 0 + +
+ false +
+ + 2393 + New Farming 170 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2393 + 3403 + 0 + + + + 1 + 204780 + 0 + + 3403 + 2 Beets, 4 Tomatoes, 2 Sunflowers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets, Tomatoes, Sunflowers</Text><ID>928868</ID></Title><Desc><Text>Eret is getting the old crew back together. He hopes he can lure them in with a non-fishy meal.</Text><ID>928869</ID></Desc></Data> + 0 + false + + + 140 +

2

+ 0 + + 1 + 682 + 204780 + true + 140 + 140 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 204780 + true + 30 + 30 + + 0 + +
+ false +
+ + 2394 + New Farming 171 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2394 + 3404 + 0 + + + + 1 + 204781 + 0 + + 3404 + 3 Beets, 6 Flax Flowers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flower</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets, Flax Flowers</Text><ID>928870</ID></Title><Desc><Text>Eret dropped a few beets. He needs more with a flax fiber bag to carry them.</Text><ID>928871</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 204781 + true + 15 + 15 + + 0 + + + + 104 +

2

+ 0 + + 1 + 5367 + 204781 + true + 104 + 104 + + 0 + +
+ false +
+ + 2395 + New Farming 172 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2395 + 3405 + 0 + + + + 1 + 204782 + 0 + + 3405 + 4 Beets, 8 Elderberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets, Elderberries</Text><ID>928872</ID></Title><Desc><Text>A fine medicinal and vitamin rich juice for Cloudjumper.</Text><ID>928873</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 204782 + true + 15 + 15 + + 0 + + + + 230 +

2

+ 0 + + 1 + 975 + 204782 + true + 230 + 230 + + 0 + +
+ false +
+ + 2396 + New Farming 173 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2396 + 3406 + 0 + + + + 1 + 204783 + 0 + + 3406 + 8 Beets + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets</Text><ID>928876</ID></Title><Desc><Text>Bucket needs some red paint and crushed beets are the only things that work for him.</Text><ID>928875</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 204783 + true + 15 + 15 + + 0 + + + + 199 +

2

+ 0 + + 1 + 5368 + 204783 + true + 199 + 199 + + 0 + +
+ false +
+ + 2397 + New Farming 174 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2397 + 3407 + 0 + + + + 1 + 204784 + 0 + + 3407 + 10 Beets + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets</Text><ID>928876</ID></Title><Desc><Text>Cloudjumper ate a lot of garlic and Valka needs to feed him something to stop the smell.</Text><ID>928877</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 204784 + true + 15 + 15 + + 0 + + + + 243 +

2

+ 0 + + 1 + 2364 + 204784 + true + 243 + 243 + + 0 + +
+ false +
+ + 2398 + New Farming 175 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,15 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2398 + 3408 + 0 + + + + 1 + 204785 + 0 + + 3408 + 12 Beets, 3 Black Beans, 1 Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets, Black Beans, Arctic Poppy</Text><ID>928878</ID></Title><Desc><Text>Valka knows of a strange concoction that will restore the health of many hurt dragons.</Text><ID>928879</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 204785 + true + 96 + 96 + + 0 + + + + 443 +

2

+ 0 + + 1 + 5369 + 204785 + true + 443 + 443 + + 0 + +
+ false +
+ + 2399 + New Farming 176 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2399 + 3409 + 0 + + + + 1 + 204786 + 0 + + 3409 + 15 Beets, 20 Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Beets, Chicken Eggs</Text><ID>928880</ID></Title><Desc><Text>Astrid says she'll give Snotlout a "beeting" with some eggs. It's best not to argue.</Text><ID>928881</ID></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 204786 + true + 15 + 15 + + 0 + + + + 641 +

2

+ 0 + + 1 + 5370 + 204786 + true + 641 + 641 + + 0 + +
+ false +
+ + 2400 + New Farming 177 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,21 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2400 + 3410 + 0 + + + + 1 + 204787 + 0 + + 3410 + 1 Squash, 12 Bearberries, 24 White Pumpkins + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9893</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash, Bearberries, White Pumpkins</Text><ID>928882</ID></Title><Desc><Text>Eret often tries to disguise his boat as a merchant vessel.</Text><ID>928883</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 204787 + true + 250 + 250 + + 0 + + + + 1409 +

2

+ 0 + + 1 + 5371 + 204787 + true + 1409 + 1409 + + 0 + +
+ false +
+ + 2401 + New Farming 178 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2401 + 3411 + 0 + + + + 1 + 204788 + 0 + + 3411 + 2 Squash, 8 Peppemint, 8 Flax Flowers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flower</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash, Peppermint, Flax Flowers</Text><ID>928884</ID></Title><Desc><Text>Eret needs to distract baby dragons from chewing his boat.</Text><ID>928885</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 204788 + true + 30 + 30 + + 0 + + + + 179 +

2

+ 0 + + 1 + 2381 + 204788 + true + 179 + 179 + + 0 + +
+ false +
+ + 2402 + New Farming 179 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2402 + 3412 + 0 + + + + 1 + 204789 + 0 + + 3412 + 3 Squash, 12 Carrots + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash, Carrots</Text><ID>928886</ID></Title><Desc><Text>Eret already regrets his decision to eat healthier.</Text><ID>928887</ID></Desc></Data> + 0 + false + + + 432 +

2

+ 0 + + 1 + 1856 + 204789 + true + 432 + 432 + + 0 + + + + 56 +

9

+ 0 + + 1 + 1998 + 204789 + true + 56 + 56 + + 0 + +
+ false +
+ + 2404 + New Farming 181 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,18 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2404 + 3414 + 0 + + + + 1 + 204791 + 0 + + 3414 + 5 Squash, 3 Arctic Willow, 8 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash, Arctic Willows, Dragon Nip</Text><ID>928890</ID></Title><Desc><Text>Valka needs to pour this mixture on her clothes so some upset dragons don't feel threatened.</Text><ID>928891</ID></Desc></Data> + 0 + false + + + 160 +

9

+ 0 + + 1 + 2018 + 204791 + true + 160 + 160 + + 0 + + + + 284 +

2

+ 0 + + 1 + 5372 + 204791 + true + 284 + 284 + + 0 + +
+ false +
+ + 2405 + New Farming 182 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,15 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2405 + 3415 + 0 + + + + 1 + 204792 + 0 + + 3415 + 7 Squash, 1 Turtle Egg + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash, Turtle Egg</Text><ID>928892</ID></Title><Desc><Text>Phlegma lost her squash crop to snails. This will help and get rid of the garden pests.</Text><ID>928893</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 204792 + true + 96 + 96 + + 0 + + + + 111 +

2

+ 0 + + 1 + 5373 + 204792 + true + 111 + 111 + + 0 + +
+ false +
+ + 2406 + New Farming 183 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2406 + 3416 + 0 + + + + 1 + 204793 + 0 + + 3416 + 8 Squash + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash</Text><ID>928896</ID></Title><Desc><Text>This is not what I pictured when the twins said they wanted to play squash.</Text><ID>928895</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 204793 + true + 30 + 30 + + 0 + + + + 81 +

2

+ 0 + + 1 + 5374 + 204793 + true + 81 + 81 + + 0 + +
+ false +
+ + 2407 + New Farming 184 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2407 + 3417 + 0 + + + + 1 + 204794 + 0 + + 3417 + 10 Squash + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash</Text><ID>928896</ID></Title><Desc><Text>Grump squashed all of Gobber's food. Our blacksmith wants to feed him something poetic.</Text><ID>928897</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 204794 + true + 30 + 30 + + 0 + + + + 103 +

2

+ 0 + + 1 + 2374 + 204794 + true + 103 + 103 + + 0 + +
+ false +
+ + 2408 + Edu108 + 15 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEdu108T03.unity3d/PfGrpQEdu108T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu108T05.unity3d/PfGrpQEdu108T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Mulch's Sinking Adventure: Part 2</Text><ID>927288</ID></Title><Desc><Text>Help Bucket and Mulch to repair their fishing boat before it sinks.</Text><ID>927289</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2389 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2408 + 2409 + 0 + + + 1 + 2408 + 3419 + 0 + + + 1 + 2408 + 3420 + 0 + + + 2 + 2408 + 2410 + 0 + + + 1 + 2408 + 3421 + 0 + + + 2 + 2408 + 2411 + 0 + + + 1 + 2408 + 3426 + 0 + + + + 1 + 204795 + 0 + + 2409 + Edu108T01 + 15 +

2408

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Speak with Bucket</Text><ID>927280</ID></Title><Desc><Text>Speak with Bucket about Mulch's sinking boat</Text><ID>927281</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2409 + 3418 + 0 + + + + 1 + 204796 + 0 + + 3418 + Edu108T01A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm glad you're back, {{Name}}. Mulch refuses to give up on his sinking boat. He wants to go back to seal the cracks but those tar-covered rocks were too hard. When we tried hammering them in, they didn't fit and they shattered. @@ We should find something more [c][3eebff]malleable[/c][ffffff] (the ability to be shaped, hammered or pressed). The material needs to be able to bend and twist to fit the cracks in the boat to form a seal. @@ Speak with Bucket and see if he has a better idea for a material.</Text><ID>927839</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I don't want Mulch to sink! Sorry, I meant the boat... and him too. What can we do to fix this?</Text><ID>927840</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Bucket</Text><ID>927280</ID></Title><Desc><Text>Speak with Bucket about Mulch's sinking boat.</Text><ID>936545</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13095 + + 1 + 5375 + 204796 + true + 1 + 1 + + 0 + +
+ false + + + 2410 + Edu108T04 + 15 +

2408

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the 3 Hemp Fibers to Heather</Text><ID>927282</ID></Title><Desc><Text>Give the 3 Hemp Fibers to Heather.</Text><ID>927283</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2410 + 3422 + 0 + + + + 1 + 204797 + 0 + + 3422 + Edu108T04A + <Data><Offer><Type>Popup</Type><ID>927843</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I still have some tar left over from last time. Bring me the hemp fibers and let's get cracking! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927844</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thanks! Time is running out so we'll have to be quick... We just need to dry up the oakum a bit and it'll be good to go.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13096</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pile of Hemp Fiber</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the 3 Hemp Fibers to Heather</Text><ID>927282</ID></Title><Desc><Text>Give the 3 Hemp Fibers to Heather.</Text><ID>927283</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 13097 + + 1 + 5376 + 204797 + true + 3 + 3 + + 0 + +
+ false +
+ + 2411 + Edu108T06 + 15 +

2408

+ <Data><Offer><Type>Popup</Type><ID>927286</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>You chopped up my favorite shirt? I'll miss it but I'm so glad it helped you make a new idea! We're going down fast. {{Input}} on the 3 holes to seal them with that strange mix you made. Hurry!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927287</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wow, it's working! It's working!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>{{Input}} on the 3 holes in Mulch's Boat</Text><ID>927284</ID></Title><Desc><Text>{{Input}} on the 3 holes in Mulch's Boat.</Text><ID>927285</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2411 + 3423 + 0 + + + 1 + 2411 + 3424 + 0 + + + 1 + 2411 + 3425 + 0 + + + + 1 + 0 + 0 + + 3423 + Edu108T06A + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>HoleInBoat01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>HoleInBoat01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13097</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the 3 holes to seal them</Text><ID>927847</ID></Title><Desc><Text>{{Input}} on the 3 holes to seal them.</Text><ID>927850</ID></Desc></Data> + 0 + false + + + 3424 + Edu108T06B + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>HoleInBoat02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>HoleInBoat02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13097</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the 3 holes to seal them</Text><ID>927847</ID></Title><Desc><Text>{{Input}} on the 3 holes to seal them.</Text><ID>927850</ID></Desc></Data> + 0 + false + + + 3425 + Edu108T06C + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>HoleInBoat03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>HoleInBoat03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13097</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the 3 holes to seal them</Text><ID>927847</ID></Title><Desc><Text>{{Input}} on the 3 holes to seal them.</Text><ID>927850</ID></Desc></Data> + 0 + false + + false +
+ + 3419 + Edu108T02 + <Data><Offer><Type>Popup</Type><ID>927853</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>All I have left is my favorite hemp shirt. It's not waterproof but it is flexible. Maybe it'll help stop the leak? Please take it to Heather.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927854</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I appreciate the thought but I'm not sure a shirt will be... Wait a minute. This shirt is made out of hemp! @@ [c][3eebff]Hemp[/c][ffffff] is very absorbent and can easily be pushed into the crack to stop the leak if it's chopped up. Hemp fibers are strong as well as durable. They do not mildew and are used to make ropes, sacks and strong fabrics. What if we refine this hemp and mix it with waterproof tar to make [c][3eebff]oakum[/c][ffffff]? </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13095</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bucket's Favorite Shirt</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Bucket's Favorite Shirt to Heather</Text><ID>927851</ID></Title><Desc><Text>Give Bucket's Favorite Shirt to Heather in the School.</Text><ID>927852</ID></Desc></Data> + 0 + false + + + 3420 + Edu108T03 + <Data><Offer><Type>Popup</Type><ID>927857</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Eureka! Oakum is a [c][3eebff]malleable[/c][ffffff] and [c][3eebff]waterproof[/c][ffffff] material that would caulk Mulch's boat. Bucket came up with half of a really good idea. Let's fill in the rest. Here, I've placed this hemp shirt on the ground. Use your axe to chop it down to its fibers.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927858</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well done, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWBucketsFavoriteShirt</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWHempFiberPile</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop Bucket's Shirt and gather 3 Hemp Fibers</Text><ID>927855</ID></Title><Desc><Text>Chop Bucket's Shirt and gather 3 Hemp Fibers near Heather in the School.</Text><ID>927856</ID></Desc></Data> + 0 + false + + + 3421 + Edu108T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_MulchBoatSeaStack</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927861</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There you are. We need to get this oakum to Mulch's boat as soon as possible. Go find it as fast as you can.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927862</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>{{Name}}! Thank Odin, you're here. Mulch was so exhausted bailing out water that he keeled over and the keel of the boat is almost keeling over too!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BucketBoatSeaStack</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Mulch's Boat near the Sea Stack in Berk</Text><ID>927859</ID></Title><Desc><Text>Find Mulch's Boat near the Sea Stack in Berk.</Text><ID>927860</ID></Desc></Data> + 0 + false + + + 3426 + Edu108T07 + <Data><Offer><Type>Popup</Type><ID>927865</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Mulch, wake up... my shirt saved our sinking boat! {{Name}}, could you {{input}} on Mulch over there and tell him how you fixed his boat?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927866</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Where am I? My boat is still above water? Bucket and {{Name}}, I'm so impressed with the pair of you. @@ Who'd have thought [c][3eebff]hemp[/c][ffffff] and [c][3eebff]tar[/c][ffffff] would've been the right combination? Our boat has a [c][3eebff]strong[/c][ffffff] and [c][3eebff]durable[/c][ffffff] seal, now. Let's set sail for Berk in our newly caulked boat. This story needs to be told to all our Viking friends back home! Steady as she goes, Bucket! Berk ahoy!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMulch03</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch about how you saved his boat.</Text><ID>927864</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204795 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204795 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204795 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204795 + true + 200 + 200 + + 0 + +
+ false +
+ + 2415 + Quest 2 + 6 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>School Lessons</Text><ID>927453</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 02-28-2013 07:59:59,01-03-2022 05:05:45 + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2415 + 3453 + 0 + + + 1 + 2415 + 3449 + 0 + + + 1 + 2415 + 3450 + 0 + + + 1 + 2415 + 3451 + 0 + + + 1 + 2415 + 3454 + 0 + + + 1 + 2415 + 3455 + 0 + + + + 1 + 201319 + 0 + + 3449 + 2T02: Go to the Training Grounds + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Now, I'll help you learn how to navigate to other locations. You can either use the Map on the top right of your screen, or you can travel following the quest arrow. @@Your next lesson is in the Training Grounds! Use the map, or follow the arrow to make your way there now!</Text><ID>929517</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the quest arrow to the Training Grounds</Text><ID>929515</ID></Title><Desc><Text>Follow the quest arrow to the Training Grounds.</Text><ID>929516</ID></Desc></Data> + 0 + false + + + 3450 + 2T03: Talk to Snotlout + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Ah, the Headmaster has sent you to learn from the best! Come on over, let's chat!</Text><ID>929520</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You're {{Name}}, aren't you? I'm Snotlout, the premiere Monstrous Nightmare trainer.</Text><ID>929521</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>926773</ID></Desc></Data> + 0 + false + + + 3451 + 2T04: Talk to Phlegma at the Lookout + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>There's lots of fun activities here! Take a minute to explore the training grounds. Astrid, just across from me, often has fun battle challenges. Maybe you can earn a battle-scar.@@When you're done, follow the arrow and talk to Phlegma at the Lookout!</Text><ID>929524</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hello, {{Name}}! I'm Phlegma the Fierce and the Botanist of the school. I'm the expert on the living world. I run the greenhouse and I make sure all our dragons have enough to eat.</Text><ID>929525</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Follow the quest arrow to the Lookout and talk to Phlegma</Text><ID>929522</ID></Title><Desc><Text>Visit the Lookout and talk to Phlegma.</Text><ID>929523</ID></Desc></Data> + 0 + false + + + 3453 + 2T01: Open the Adventurer's Journal + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>As you attend the School of Dragons, you will have the option of helping out a lot of other Vikings through quests. You can keep track of all the ones you are handling in your Adventurer's Journal! {{Input}} on yourself, then {{input}} the book to learn more.</Text><ID>929528</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>OpenJournal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the Adventurer's Journal</Text><ID>929526</ID></Title><Desc><Text>Open the Adventurer's Journal.</Text><ID>934025</ID></Desc></Data> + 0 + false + + + 3454 + 2T05: Talk to the Headmaster + <Data><Offer><Type>Popup</Type><ID>929531</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Phlegma has a quest for you that will teach you about your farm. When you are done, come back to me at the School!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralAttract02</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to the Headmaster in the School</Text><ID>929529</ID></Title><Desc><Text>Come back and talk to the Headmaster in the School.</Text><ID>929530</ID></Desc></Data> + 0 + false + + + 3455 + 2T06: Look at Clans + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Dragon training is tough, but you don't have to do it alone! You can join a Clan to make friends with other students like yourself. {{Input}} on yourself, then {{input}} the Clans symbol to open the Clans page.</Text><ID>929534</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralQuestOffer01</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Well! I hope you've enjoyed this little tour. I think you are well prepared to continue your journey to become the ultimate dragon trainer. </Text><ID>929535</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralPos03</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenClan</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Clans page</Text><ID>929532</ID></Title><Desc><Text>{{Input}} on the Clans page.</Text><ID>934026</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 201319 + true + 100 + 100 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 201319 + true + 150 + 150 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 201319 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201319 + true + 50 + 50 + + 0 + +
+ false +
+ + 2416 + Edu109 + 7 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu109T00.unity3d/PfGrpQEdu109T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_ByTelescope</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_ByTelescopeToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu109T05.unity3d/PfGrpQEdu109T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Carpet Seeding</Text><ID>927300</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2408 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2416 + 3456 + 0 + + + 1 + 2416 + 3457 + 0 + + + 1 + 2416 + 3494 + 0 + + + 1 + 2416 + 3493 + 0 + + + 2 + 2416 + 2417 + 0 + + + 2 + 2416 + 2418 + 0 + + + 1 + 2416 + 3463 + 0 + + + 1 + 2416 + 3464 + 0 + + + 2 + 2416 + 2419 + 0 + + + 2 + 2416 + 2420 + 0 + + + + 3 + 204810 + 0 + + 2417 + Edu109T04 + 7 +

2416

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the seed bags to Phlegma</Text><ID>927290</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2417 + 3459 + 0 + + + + 3 + 204811 + 0 + + 3459 + Edu109T04: Give Bags to Phlegma + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Quickly, now! Give me the clay and the compost and I'll mix them up with my seeds.</Text><ID>927869</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thanks! Now, I made sure these seed balls are dry so they won't stick together or clump up while you carry them. Here you go.</Text><ID>927870</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>13149</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bag of Compost</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>13150</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bag of Clay</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the clay and compost to Phlegma</Text><ID>927867</ID></Title><Desc><Text>Give the bags of clay and bags of compost to Phlegma.</Text><ID>934393</ID></Desc></Data> + 0 + false + + + 6 +

6

+ 13148 + + 1 + 5416 + 204811 + true + 6 + 6 + + 0 + +
+ false + + + 2418 + Edu109T05 + 7 +

2416

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We'll imitate how seeds are spread in nature with a little bit of aerial seeding thrown into the bargain. Animals, birds and insects feed on the fruits of plants but the seeds often pass through them intact as the creatures go about their daily, err... pooping. @@ This allows them to grow far away from their parent plant. This process makes it more likely that the seed survives, even if it needs to pass through dragon dung to do it. @@ I've brought three dragons here to act as our natural seed spreaders. Feed 2 bags of seed balls to the Deadly Nadder, the Monstrous Nightmare, and Barf &amp; Belch here at the Lookout!</Text><ID>927292</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Feed the seed balls to the dragons at the Lookout</Text><ID>927291</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2418 + 3460 + 0 + + + 1 + 2418 + 3461 + 0 + + + 1 + 2418 + 3462 + 0 + + + + 3 + 0 + 0 + + 3460 + Edu109T05a + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's the Deadly Nadder. Well done!</Text><ID>927873</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDeadlyNadder</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDeadlyNadderNPC</Value></Pair><Pair><Key>ItemID</Key><Value>13148</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bags of Seed Balls</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 2 bags worth of seed balls to the Deadly Nadder</Text><ID>927871</ID></Title><Desc><Text>Give 2 bags worth of seed balls to the Deadly Nadder at the Lookout.</Text><ID>935648</ID></Desc></Data> + 0 + false + + + 3461 + Edu109T05b + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That Monstrous Nightmare will spread the seeds. You've done a fine job!</Text><ID>927876</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightmare</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightmareNPC</Value></Pair><Pair><Key>ItemID</Key><Value>13148</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bags of Seed Balls</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Feed 2 bags of seed balls to the Monstrous Nightmare</Text><ID>927874</ID></Title><Desc><Text>Feed 2 bags of seed balls to the Monstrous Nightmare at the Lookout.</Text><ID>936546</ID></Desc></Data> + 0 + false + + + 3462 + Edu109T05c + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Barf and Belch look ready to help. Thanks, {{Name}}.</Text><ID>927879</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWZippleback</Value></Pair><Pair><Key>NPC</Key><Value>PfDWZippleback_BarfBelch</Value></Pair><Pair><Key>ItemID</Key><Value>13148</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bags of Seed Balls</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Feed 2 bags of seed balls to Barf &amp; Belch</Text><ID>927877</ID></Title><Desc><Text>Feed 2 bags of seed balls to Barf &amp; Belch at the Lookout.</Text><ID>936547</ID></Desc></Data> + 0 + false + + false +
+ + 2419 + Edu109T08 + 7 +

2416

+ <Data><Offer><Type>Popup</Type><ID>927294</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Blast the 3 spots on the hillside to plant the seed balls!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_HighestMountain</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>932564</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That was so much fun. We got to secure the hard packed soil and shoot something at the same time. And to top it off, Phlegma is here with buckets of water so we can splash Fishlegs and Snotlout while they're not looking!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932876</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>No, that's not the reason. I got here as quickly as I could as soon as I realized you didn't have what you needed to complete the job.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Shoot spots in the hillside</Text><ID>927293</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2419 + 3465 + 0 + + + 1 + 2419 + 3466 + 0 + + + 1 + 2419 + 3467 + 0 + + + + 3 + 204812 + 0 + + 3465 + Edu109T08a + <Data><End><Type>Popup</Type><ID>929941</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Good shot!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos04</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGrassBallHole01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGrassBallHole01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the hillside to plant the seeds</Text><ID>927886</ID></Title><Desc><Text>Shoot the hillside to plant the seeds.</Text><ID>927881</ID></Desc></Data> + 0 + false + + + 3466 + Edu109T08b + <Data><End><Type>Popup</Type><ID>927885</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Awww yeah!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGrassBallHole02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGrassBallHole02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the hillside to plant the seeds</Text><ID>927886</ID></Title><Desc><Text>Shoot the hillside to plant the seeds at Berk.</Text><ID>927887</ID></Desc></Data> + 0 + false + + + 3467 + Edu109T08c + <Data><End><Type>Popup</Type><ID>927888</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Super cool!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGrassBallHole03</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGrassBallHole03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the hillside to plant the seeds</Text><ID>927886</ID></Title><Desc><Text>Shoot the hillside to plant the seeds at Berk.</Text><ID>927887</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7980 + + 1 + 5417 + 204812 + true + 1 + 1 + + 0 + +
+ false +
+ + 2420 + Edu109T09 + 7 +

2416

+ <Data><Offer><Type>Popup</Type><ID>927298</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Don't worry about these dragons accidentally swallowing the seed balls. Any seeds that aren't fired out with the dragon's breath will be naturally passed through the [c][3eebff]dragon's droppings[/c][ffffff]. I'd rather not watch -that- process. @@ [c][3eebff]Sunlight, fertile soil,[/c][ffffff] and [c][3eebff]water[/c][ffffff] create the perfect environment for seeds to sprout. To give our seeds that final touch you need to water the 3 spots on the hillside.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927299</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Now we will have excellent green cover and it's far less likely that there will be a landslide. Now that the danger has passed, I'd like to stay here a moment longer and enjoy this glorious sunset. +Well done, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><RemoveItem><ItemID>7980</ItemID><Quantity>1</Quantity></RemoveItem><Title><Text>Water the 3 spots on the hillside</Text><ID>927297</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2420 + 3468 + 0 + + + 1 + 2420 + 3469 + 0 + + + 1 + 2420 + 3470 + 0 + + + + 3 + 0 + 0 + + 3468 + Edu109T09a + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGrassBallHole01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGrassBallHole01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the seeded area and water it</Text><ID>927889</ID></Title><Desc><Text>{{Input}} on the seeded area and water it.</Text><ID>927890</ID></Desc></Data> + 0 + false + + + 3469 + Edu109T09b + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGrassBallHole02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGrassBallHole02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the seeds and water them</Text><ID>927893</ID></Title><Desc><Text>{{Input}} on the seeds and water them at Berk.</Text><ID>927894</ID></Desc></Data> + 0 + false + + + 3470 + Edu109T09c + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGrassBallHole03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGrassBallHole03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the seeds and water them</Text><ID>927893</ID></Title><Desc><Text>{{Input}} on the seeds and water them at Berk.</Text><ID>927894</ID></Desc></Data> + 0 + false + + false +
+ + 3456 + Edu109T01: Talk to Ruffnut + <Data><Offer><Type>Popup</Type><ID>927897</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We have a situation, {{Name}}! A lot of the trees have been cut down on the hillside above and behind the Great Hall in Berk over the years. It has loosened the [c][3eebff]hard packed soil[/c][ffffff] and the tree roots are no longer there to hold the dirt and soil together. @@ The next time it rains, the loose dirt is likely to start a landslide over our village and it would cause terrible damage. I don't like to ask the Thorston twins for help, since they goof off so much, but we could use the extra hands and heads. I saw them here in the Lookout a minute ago. Can you speak with Ruffnut?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927898</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yugh! She wants Barf and Belch to dig holes for replanting?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut at the Lookout</Text><ID>927895</ID></Title><Desc><Text>Talk to Ruffnut at the Lookout.</Text><ID>927896</ID></Desc></Data> + 0 + false + + + 3457 + Edu109T02: Go to the Greenhouse + <Data><Offer><Type>Popup</Type><ID>932781</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That sounds pretty boring. Lucky for you guys I've just come up with the best idea: we carpet bomb the hillside with seeds! The most explosive ideas are always the best ones, don't you think?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>932883</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I don't know, sis. This whole thing sounds like an elaborate scheme to get us to do work.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>932884</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You're not in? Fine. I'll unleash the reign of terror with {{Name}} instead. Can you look for some seeds back at the Greenhouse?</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><ID>927904</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Oh Odin! That sounds horrific... but then again it would get it done fast. @@ There are a few different ways that we can distribute seeds. We could use [c][3eebff]hand seeding[/c][ffffff], where you spread the seeds by hand. It's best used when dealing with small plots of land or difficult terrain (like you do at your farm). Also, there's [c][3eebff]broadcast seeding[/c][ffffff] which distributes seeds over large areas and often involves tools to dig the seeds into the ground. @@ What Ruffnut is suggesting - in her Thorston kind of way - is [c][3eebff]aerial seeding[/c][ffffff]--or, seeding from a flying dragon. We can spread thick, fire-resistant vegetation (these are plants that retain water very well and can stop fires from spreading too far) over large areas.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreenHouseExit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for seeds at the Greenhouse</Text><ID>927899</ID></Title><Desc><Text>Look for bags of seeds at the Greenhouse.</Text><ID>927900</ID></Desc></Data> + 0 + false + + + 3463 + Edu109T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_HighestMountain</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927907</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Super cool. Let's get this thing started. We'll meet you over at Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927908</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Over here, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HighestMountain</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Barf &amp; Belch at Berk</Text><ID>927905</ID></Title><Desc><Text>Meet Barf &amp; Belch at Berk.</Text><ID>927906</ID></Desc></Data> + 0 + false + + + 3464 + Edu109T07: Mount B&B + <Data><Offer><Type>Popup</Type><ID>927911</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Mount Barf &amp; Belch and let's do this!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWZippleback_BarfBelch</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBarfBelchSeeds</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount Barf &amp; Belch</Text><ID>927909</ID></Title><Desc><Text>Mount Barf &amp; Belch.</Text><ID>927910</ID></Desc></Data> + 0 + false + + + 3493 + Edu109T03A: Get 3 Bags of Clay + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu109T03A.unity3d/PfGrpQEdu109T03A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927914</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Aye, that's the stuff! Now, can you grab the 3 bags of clay?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922905</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBags</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 3 bags of clay in the Greenhouse</Text><ID>927912</ID></Title><Desc><Text>Gather 3 bags of clay in the Greenhouse.</Text><ID>927913</ID></Desc></Data> + 0 + false + + + 3494 + Edu109T03: Find 3 Bags of Compost + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu109T03B.unity3d/PfGrpQEdu109T03B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927918</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Ruffnut's plan could work if we can figure out the details. [c][3eebff]Seed balls[/c][ffffff] are seeds rolled in a mixture of clay and compost. It's the perfect protection for the seeds since animals, insects and birds won't be able to eat them. @@ It'll also provide a good source of nutrients for the plant to grow. Could you find me 3 bags of compost here in the Greenhouse?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBags</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the 3 bags of compost in the Greenhouse</Text><ID>927916</ID></Title><Desc><Text>Find the 3 bags of compost in the Greenhouse.</Text><ID>927917</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204810 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204810 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204810 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204810 + true + 350 + 350 + + 0 + +
+ false +
+ + 2421 + LokiMaze 2016 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 10-31-2017 12:00:00,08-29-2018 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2421 + 3471 + 0 + + + + 1 + 204813 + 0 + + 3471 + LokiMaze 2016 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title><Desc><Text>Find the chest.</Text><ID>935228</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13151 + + 1 + 5418 + 204813 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 13152 + + 1 + 5419 + 204813 + true + 1 + 1 + + 0 + +
+ false +
+ + 2422 + LokiMaze 2016 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 10-31-2017 12:00:00,08-29-2018 12:00:00 + 0 + false + + + 3 + 2421 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2422 + 3472 + 0 + + + + 1 + 204814 + 0 + + 3472 + LokiMaze 2016 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title><Desc><Text>Find the chest.</Text><ID>935228</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204814 + true + 100 + 100 + + 0 + + + false +
+ + 2423 + Loki02 + 10 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Return of the Dreadfall</Text><ID>927375</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-01-2016 12:00:00,01-01-2017 12:00:00 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2423 + 3473 + 0 + + + 1 + 2423 + 3474 + 0 + + + 1 + 2423 + 3475 + 0 + + + 1 + 2423 + 3476 + 0 + + + + 1 + 204815 + 0 + + 3473 + Loki02T01: Talk to Valka + <Data><Offer><Type>Popup</Type><ID>928841</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It's starting to get chilly again, and you know what that means.(I'm sure you've spotted the twins' festive decorations by now.) It's time for the Dreadfall! Can you fill Valka in on what this holiday is all about?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928842</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh my! I was wondering what all this was about. I missed so much when I was away from Berk... this seems like a wonderful tradition.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka about Dreadfall at Berk</Text><ID>928839</ID></Title><Desc><Text>Talk to Valka about Dreadfall.</Text><ID>928840</ID></Desc></Data> + 0 + false + + + 3474 + Loki02T02: Talk to Snotlout + <Data><Offer><Type>Popup</Type><ID>928845</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The Dreadfall is a holiday to remember the fear that we used to have in the Flightmare? What a wonderful idea. There were so many things we used to believe about the 'evil' dragons that are completely wrong... and this is a celebration of our rich history. @@ What do the others think about it, I wonder? Can you ask Snotlout?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928846</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This is all in good fun, right? 'Good fun.' Hah! +Sure, the decorations around the town are 'fun.' Some of them are even 'really cool.' But the Loki maze? That's terrifying, not fun!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 3475 + Loki02T03: Talk to Ruffnut + <Data><Offer><Type>Popup</Type><ID>928849</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The nutty twins have gone too far. TOO FAR! +You need to talk to Ruffnut and get them to tone it down.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932809</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>So, Snotlout's not a fan of the Loki's Maze of Mayhem? I'm not surprised.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932912</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yeah, he's never been a supportive friend. Remember when we put the nest of snakes in his bed? He didn't even notice that they were spelling out his name!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut about the Dreadfall</Text><ID>928847</ID></Title><Desc><Text>Talk to Ruffnut about the Dreadfall.</Text><ID>928848</ID></Desc></Data> + 0 + false + + + 3476 + Loki02T04: Go to the maze + <Data><Offer><Type>Popup</Type><ID>928854</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>What a philistine. +{{Name}}! I know that you're a good Viking and you can appreciate a masterpiece when you see one. Go across the bridge away from Berk and see Loki's Maze of Mayhem with your own eyes!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928855</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I hope you're ready for some chaos... he he he.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HauntedHouseExit</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Loki's Maze of Mayhem</Text><ID>928852</ID></Title><Desc><Text>Go to the maze.</Text><ID>928853</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 204815 + true + 200 + 200 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 204815 + true + 85 + 85 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204815 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204815 + true + 50 + 50 + + 0 + +
+ false +
+ + 2424 + New Farming 185 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2424 + 3477 + 0 + + + + 1 + 204819 + 0 + + 3477 + 1 Mushroom, 6 Dragon Nip, 2 Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushroom, Dragon Nip, Chicken Egg</Text><ID>928898</ID></Title><Desc><Text>The perfect omelet for Stormfly who needs to wake up extra early for drills.</Text><ID>928899</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 204819 + true + 40 + 40 + + 0 + + + + 93 +

2

+ 0 + + 1 + 5423 + 204819 + true + 93 + 93 + + 0 + +
+ false +
+ + 2425 + New Farming 186 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2425 + 3478 + 0 + + + + 1 + 204820 + 0 + + 3478 + 2 Mushrooms, 5 Elderberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms, Elderberries</Text><ID>928900</ID></Title><Desc><Text>Bucket thinks smearing himself with these ingredients will help him sneak up on fish. Don't ask.</Text><ID>928901</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 204820 + true + 40 + 40 + + 0 + + + + 127 +

2

+ 0 + + 1 + 5424 + 204820 + true + 127 + 127 + + 0 + +
+ false +
+ + 2426 + New Farming 187 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2426 + 3479 + 0 + + + + 1 + 204821 + 0 + + 3479 + 3 Mushrooms, 6 Black Beans, 1 Beet + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms, Black Beans, Beet</Text><ID>928902</ID></Title><Desc><Text>Dragon face paints on race day come from some of the strangest crops.</Text><ID>928903</ID></Desc></Data> + 0 + false + + + 160 +

2

+ 0 + + 1 + 543 + 204821 + true + 160 + 160 + + 0 + + + + 40 +

9

+ 0 + + 1 + 671 + 204821 + true + 40 + 40 + + 0 + +
+ false +
+ + 2427 + New Farming 188 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2427 + 3480 + 0 + + + + 1 + 204822 + 0 + + 3480 + 4 Mushrooms + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms</Text><ID>928912</ID></Title><Desc><Text>Tuffnut hates puns which is why he wants these mushrooms. He needs to prove that he's not a fungi!</Text><ID>928905</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 204822 + true + 40 + 40 + + 0 + + + + 89 +

2

+ 0 + + 1 + 956 + 204822 + true + 89 + 89 + + 0 + +
+ false +
+ + 2428 + New Farming 189 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2428 + 3481 + 0 + + + + 1 + 204823 + 0 + + 3481 + 5 Mushrooms, 3 Cabbage + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms, Cabbage</Text><ID>928906</ID></Title><Desc><Text>After spending weeks on Icestorm Island, Hiccup and Toothless need a nice warm soup.</Text><ID>928907</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 204823 + true + 40 + 40 + + 0 + + + + 170 +

2

+ 0 + + 1 + 676 + 204823 + true + 170 + 170 + + 0 + +
+ false +
+ + 2429 + New Farming 190 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,15 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2429 + 3482 + 0 + + + + 1 + 204824 + 0 + + 3482 + 7 Mushrooms, 1 Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms, Arctic Poppy</Text><ID>928908</ID></Title><Desc><Text>This exotic medicine should help our dragons deal with Berk's harsh winters.</Text><ID>928909</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 204824 + true + 96 + 96 + + 0 + + + + 259 +

2

+ 0 + + 1 + 5425 + 204824 + true + 259 + 259 + + 0 + +
+ false +
+ + 2431 + New Farming 192 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2431 + 3484 + 0 + + + + 1 + 204826 + 0 + + 3484 + 10 Mushrooms + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms</Text><ID>928912</ID></Title><Desc><Text>There isn't much sun in Berk so Fishlegs wants to start a crop that'll grow without it. Can you help him out?</Text><ID>928913</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 204826 + true + 40 + 40 + + 0 + + + + 224 +

2

+ 0 + + 1 + 965 + 204826 + true + 224 + 224 + + 0 + +
+ false +
+ + 2432 + New Farming 193 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2432 + 3485 + 0 + + + + 1 + 204827 + 0 + + 3485 + 1 Strawberry + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberry</Text><ID>928914</ID></Title><Desc><Text>Bucket baked a cupcake and it needs a final touch.</Text><ID>928915</ID></Desc></Data> + 0 + false + + + 12 +

2

+ 0 + + 1 + 612 + 204827 + true + 12 + 12 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 204827 + true + 30 + 30 + + 0 + +
+ false +
+ + 2433 + New Farming 194 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2433 + 3486 + 0 + + + + 1 + 204828 + 0 + + 3486 + 2 Strawberries, 4 Lavender + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11247</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries, Lavender</Text><ID>928916</ID></Title><Desc><Text>Phlegma wants to expand her garden.</Text><ID>928917</ID></Desc></Data> + 0 + false + + + 182 +

2

+ 0 + + 1 + 966 + 204828 + true + 182 + 182 + + 0 + + + + 72 +

9

+ 0 + + 1 + 1999 + 204828 + true + 72 + 72 + + 0 + +
+ false +
+ + 2434 + New Farming 195 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2434 + 3487 + 0 + + + + 1 + 204829 + 0 + + 3487 + 3 Strawberries, 3 Peppermint + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries, Peppermint</Text><ID>928918</ID></Title><Desc><Text>Mulch has been really stressed recently and could use some herbal tea.</Text><ID>928919</ID></Desc></Data> + 0 + false + + + 79 +

2

+ 0 + + 1 + 847 + 204829 + true + 79 + 79 + + 0 + + + + 30 +

9

+ 0 + + 1 + 1949 + 204829 + true + 30 + 30 + + 0 + +
+ false +
+ + 2435 + New Farming 196 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2435 + 3488 + 0 + + + + 1 + 204830 + 0 + + 3488 + 4 Strawberries, 4 Tomatoes, 3 Beets + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries, Tomatoes, Beets</Text><ID>928920</ID></Title><Desc><Text>Colored paint needed for Bucket's next masterpiece.</Text><ID>928921</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 204830 + true + 30 + 30 + + 0 + + + + 203 +

2

+ 0 + + 1 + 5426 + 204830 + true + 203 + 203 + + 0 + +
+ false +
+ + 2436 + New Farming 197 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2436 + 3489 + 0 + + + + 1 + 204831 + 0 + + 3489 + 5 Strawberries, 5 Carrots, 2 Toothache Plants + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries, Carrots, Toothache Plants</Text><ID>928922</ID></Title><Desc><Text>After a rough tooth removal, Meatlug really needs a soothing drink.</Text><ID>936076</ID></Desc></Data> + 0 + false + + + 268 +

2

+ 0 + + 1 + 967 + 204831 + true + 268 + 268 + + 0 + + + + 56 +

9

+ 0 + + 1 + 1998 + 204831 + true + 56 + 56 + + 0 + +
+ false +
+ + 2437 + New Farming 198 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,21 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2437 + 3490 + 0 + + + + 1 + 204832 + 0 + + 3490 + 7 Strawberries, 8 Elderberries, 5 Bearberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11170</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bearberries</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries, Elderberries, Bearberries</Text><ID>928924</ID></Title><Desc><Text>Cloudjumper likes to eat the finest berry mixture!</Text><ID>928925</ID></Desc></Data> + 0 + false + + + 250 +

9

+ 0 + + 1 + 2025 + 204832 + true + 250 + 250 + + 0 + + + + 778 +

2

+ 0 + + 1 + 5427 + 204832 + true + 778 + 778 + + 0 + +
+ false +
+ + 2438 + New Farming 199 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2438 + 3491 + 0 + + + + 1 + 204833 + 0 + + 3491 + 8 Strawberries, 8 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries, Yak Milk</Text><ID>928926</ID></Title><Desc><Text>Snotlout is making refreshments for the new annual dragon tennis match. He might be onto something.</Text><ID>928927</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 204833 + true + 72 + 72 + + 0 + + + + 1344 +

2

+ 0 + + 1 + 5428 + 204833 + true + 1344 + 1344 + + 0 + +
+ false +
+ + 2439 + New Farming 200 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2439 + 3492 + 0 + + + + 1 + 204834 + 0 + + 3492 + 10 Strawberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Strawberries</Text><ID>928928</ID></Title><Desc><Text>Hookfang is in need of a good vitamin C booster after eating nothing but beans with Snotlout.</Text><ID>928929</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 204834 + true + 30 + 30 + + 0 + + + + 113 +

2

+ 0 + + 1 + 2390 + 204834 + true + 113 + 113 + + 0 + +
+ false +
+ + 2444 + Edu110 + 12 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu110T00.unity3d/PfGrpQEdu110T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu110T05.unity3d/PfGrpQEdu110T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Shrinking Sheep!</Text><ID>927305</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2416 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2444 + 3511 + 0 + + + 1 + 2444 + 3512 + 0 + + + 1 + 2444 + 3513 + 0 + + + 1 + 2444 + 3514 + 0 + + + 1 + 2444 + 3515 + 0 + + + 1 + 2444 + 3516 + 0 + + + 2 + 2444 + 2445 + 0 + + + 1 + 2444 + 3519 + 0 + + + + 1 + 204837 + 0 + + 2445 + Edu110T07B: Click the wool twice + 12 +

2444

+ <Data><Offer><Type>Popup</Type><ID>927303</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The more you rub the fibers together, the more the fabric shrinks. {{Input}} twice on the wool in the pot to agitate the wool.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927304</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The wool has taken on a whole new form! I can make a whole new felt rug out of this felted wool. It'll be warm, cozy and best of all it won't shrink any more because it has already been shrunk.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>{{Input}} twice on the wool to agitate it</Text><ID>927301</ID></Title><Desc><Text>{{Input}} twice on the wool to agitate it.</Text><ID>927302</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2445 + 3517 + 0 + + + 1 + 2445 + 3518 + 0 + + + + 1 + 204838 + 0 + + 3517 + Edu110T07A: Click the wool + <Data><End><Type>Popup</Type><ID>927921</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>One more time!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfSpoolOfWool</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSpoolOfWool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} the wool to agitate it</Text><ID>927919</ID></Title><Desc><Text>{{Input}} the wool in the cauldron to agitate it.</Text><ID>927920</ID></Desc></Data> + 0 + false + + + 3518 + Edu110T07B: Click the wool + <Data><End><Type>Popup</Type><ID>41022</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfSpoolOfWool</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSpoolOfWool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the wool to compress it</Text><ID>927922</ID></Title><Desc><Text>{{Input}} on the wool in the cauldron to compress it.</Text><ID>927923</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13164 + + 1 + 5429 + 204838 + true + 1 + 1 + + 0 + +
+ false + + + 3511 + Edu110T01: Find Phlegma's Sheep + <Data><Offer><Type>Popup</Type><ID>927927</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey {{Name}}. Is this your handkerchief? I was hanging out my washing and... Oh no! This was my rug! It's made of sheep's wool and it must've shrunk when I washed it. @@ Thor's hammer on a helmet! Doesn't that mean that Phlegma's sheep will shrink when it rains, too? Find Phlegma's stray sheep in the Lookout before this wool catastrophe gets out of hand!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927928</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That's the one!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhlegmaSheep</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Phlegma's Sheep in the Lookout</Text><ID>927925</ID></Title><Desc><Text>Find Phlegma's Sheep in the Lookout.</Text><ID>927926</ID></Desc></Data> + 0 + false + + + 3512 + Edu110T02: Lead the Sheep + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWPhlegmaSheep01</Asset><Location>PfMarker_PhlegmaSheep</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>927931</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This sheep is going to have its beautiful coat and face shrunk by morning! {{Input}} on the sheep and show it the way to the pen.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927932</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That takes care of that. I'm even smarter than I thought.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutGreat</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PhlegmaSheep</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SheepPen</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>3</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPhlegmaSheep01</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the sheep to lead it to to the pen</Text><ID>927929</ID></Title><Desc><Text>{{Input}} on the sheep to lead it to the pen.</Text><ID>927930</ID></Desc><Reminder><Text>The sheep is lagging behind. Slow down.</Text><ID>936266</ID></Reminder><Failure><Text>You left the sheep behind. Go back and try again.</Text><ID>936267</ID></Failure></Data> + 0 + false + + + 3513 + Edu110T03: Talk to Phlegma + <Data><Offer><Type>Popup</Type><ID>927935</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I've got to get back and see if I can fashion some kind of a rug out of my other shrunken clothes. At least I saved the day, though! You should tell Phlegma that.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927936</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you for herding my stray sheep but I'm afraid you've been led a little astray.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Phlegma that her sheep are safe</Text><ID>927933</ID></Title><Desc><Text>Tell Phlegma that her sheep are safe.</Text><ID>927934</ID></Desc></Data> + 0 + false + + + 3514 + Edu110T04: Gather 3 Wool Spools + <Data><Offer><Type>Popup</Type><ID>927939</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Did Snotlout really think sheep would shrink in the rain? Unlike Snotlout's rug, sheep stop their wool from getting tangled and that's what makes wool shrink. They have fish-like [c][3eebff]scales[/c][ffffff] that point its woolen fibers in the same direction. @@ Also, sheep produce an oily wax called [c][3eebff]lanolin[/c][ffffff] that protects their wool from getting too wet in the rain. @@ Woolen clothes shrink because of a process called [c][3eebff]felting[/c][ffffff]. Let me show you how it works. Can you grab 3 wool spools from the sheep pen?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922905</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>PfCollectDWSpoolOfWool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 3 Wool Spools</Text><ID>927937</ID></Title><Desc><Text>Gather 3 Wool Spools from Phlegma's Sheep Pen.</Text><ID>927938</ID></Desc></Data> + 0 + false + + + 3515 + Edu110T05: Shoot the wood + <Data><Offer><Type>Popup</Type><ID>927943</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>[c][3eebff]Felting[/c][ffffff] occurs when woolen fibers get pressed together by [c][3eebff]heat, [c][3eebff]motion[/c][ffffff] or [c][3eebff]moisture[/c][ffffff]. It's easier for woolen fibers to felt if the water is hot because the scales will open up faster. Have {{dragon name}} shoot a fireball to warm up this cauldron.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927944</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Perfect! That's got the water boiling.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount your dragon and shoot the wood</Text><ID>927941</ID></Title><Desc><Text>Mount your dragon and shoot the wood under the cauldron.</Text><ID>927942</ID></Desc></Data> + 0 + false + + + 3516 + Edu110T06: Give Phlegma 3 Wool Spools + <Data><Offer><Type>Popup</Type><ID>927947</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Bring me the 3 spools of wool and we can start felting.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927948</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>There! The wool compresses in this hot water.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>13163</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spool of Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the 3 Wool Spools to Phlegma</Text><ID>927945</ID></Title><Desc><Text>Give the 3 Wool Spools to Phlegma.</Text><ID>927946</ID></Desc></Data> + 0 + false + + + 3519 + Edu110T08: Meet Snotlout + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This should be just the thing for Snotlout. Give it to him with my regards.</Text><ID>927951</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Whoa! That looks even better than my last one but I think you should keep it for your hideout. Way to go, {{Name}}! You have all the makings of a young and slightly less attractive version of me!</Text><ID>927952</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give the felt rug to Snotlout</Text><ID>927949</ID></Title><Desc><Text>Give the felt rug to Snotlout.</Text><ID>936548</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204837 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204837 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204837 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204837 + true + 350 + 350 + + 0 + +
+ false +
+ + 2457 + SnoggletogMaze 2016 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 5 + 11-01-2016,03-01-2017 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2457 + 3553 + 0 + + + + 1 + 204849 + 0 + + 3553 + SnoggletogMaze 2016 T01 + <Data><Setup><Scene>SnoggletogMazeDO</Scene><Asset>PfSnoggletogHelmetChest</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type></Data> + 0 + false + + + 1 +

6

+ 13186 + + 1 + 5434 + 204849 + true + 1 + 1 + + 0 + + + false +
+ + 2458 + SnoggletogMaze 2016 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 5 + 11-01-2016 12:00:00,03-01-2017 12:00:00 + 0 + false + + + 3 + 2457 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2458 + 3554 + 0 + + + + 1 + 204850 + 0 + + 3554 + SnoggletogMaze 2016 T02 + <Data><Setup><Scene>SnoggletogMazeDO</Scene><Asset>PfSnoggletogHelmetChest</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204850 + true + 100 + 100 + + 0 + + + false +
+ + 2459 + Edu111 + 45 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu111T00.unity3d/PfGrpQEdu111T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_OppositeHouses</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_BlueCoop</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidCChocolate</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Scrubbed Clean: Part 1</Text><ID>927314</ID></Title><Desc><Text>Scrubbed Clean: Part 1</Text><ID>927314</ID></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2444 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2459 + 3556 + 0 + + + 1 + 2459 + 3558 + 0 + + + 2 + 2459 + 2462 + 0 + + + 2 + 2459 + 2463 + 0 + + + 2 + 2459 + 2466 + 0 + + + 2 + 2459 + 2464 + 0 + + + + 1 + 204855 + 0 + + 2462 + Edu111T03 + 45 +

2459

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Get Yak Tallow from Mulch</Text><ID>927306</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2462 + 3560 + 0 + + + + 1 + 204856 + 0 + + 3560 + Edu111T03 + <Data><Offer><Type>Popup</Type><ID>927955</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>For soap making we'll need [c][3eebff]animal fat[/c][ffffff], [c][3eebff]sodium hydroxide[/c][ffffff] and the [c][3eebff]fragrance oil[/c][ffffff] that we want it to smell like. The animal fat will react with the sodium hydroxide to make our soap. Let's ask Mulch if he has any [c][3eebff]yak tallow[/c][ffffff] (that's yak fat!).</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927956</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Oh! You need some yak fat, do you? I've got a few globs of it here. @@ I don't think Gobber is right about the Viking smell though. I haven't smelled that bad since a barrel of rotten fish fell on me. Looking back, I shouldn't have asked Bucket to drop what he was doing.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get yak tallow from Mulch</Text><ID>927306</ID></Title><Desc><Text>Get yak tallow from Mulch.</Text><ID>927954</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13197 + + 1 + 5437 + 204856 + true + 1 + 1 + + 0 + +
+ false + + + 2463 + Edu111T04 + 45 +

2459

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Speak with Phlegma about lye water</Text><ID>927307</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2463 + 3561 + 0 + + + + 1 + 204857 + 0 + + 3561 + Edu111T04 + <Data><Offer><Type>Popup</Type><ID>927959</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>[c][3eebff]Lye water[/c][ffffff] has sodium hydroxide in it to break the animal fat down. I'll explain how this happens when we start making the soap. @@ Phlegma uses lye water on her farm but right now she's in Berk next to Astrid's house where there's more fresh air. Would you talk to her and see if she has any to spare?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927960</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You're a lucky Viking. I have one container left. I use lye water to keep the acidity of my soil within a certain range so that plants and flowers can better grow. If it's too acidic or not acidic enough, the plant cannot absorb certain nutrients. @@ Also, you can tell Gobber that no Viking should stink like that unless they fall into the fresh manure cart. That's only happened to me once and I swear to Thor I've never soaped myself that hard in my life.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Phlegma about lye water</Text><ID>927307</ID></Title><Desc><Text>Speak with Phlegma about lye water.</Text><ID>927958</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13198 + + 1 + 5438 + 204857 + true + 1 + 1 + + 0 + +
+ false +
+ + 2464 + Edu111T06 + 45 +

2459

+ <Data><Offer><Type>Popup</Type><ID>927309</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh man! I can't focus with the smell of Gobber's grime passing by every few seconds and I'll need some time to get the lab ready for soap making. @@ For now, can you cover the bad smell with a good smell? {{Input}} on all 3 stinks to scatter the rose petals. There's no need to worry about the one on Gobber himself.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927310</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Rose petals, eh? I suppose I deserve this for stinking up Berk in the first place. It won't last, you know. Flowery scents are no match for my mighty musk! I hope that we'll be able to deal with my grime before it spreads to other islands. Thanks for your help.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>{{Input}} the 3 stink lines to spread the rose petals</Text><ID>927308</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2464 + 3562 + 0 + + + 1 + 2464 + 3563 + 0 + + + 1 + 2464 + 3564 + 0 + + + + 1 + 0 + 0 + + 3562 + Edu111T06A + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PrtStinkLines01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PrtStinkLines01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13199</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} the stink to spread the rose petals</Text><ID>927963</ID></Title><Desc><Text>{{Input}} the stink to spread the rose petals.</Text><ID>927966</ID></Desc></Data> + 0 + false + + + 3563 + Edu111T06B + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PrtStinkLines02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PrtStinkLines02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13199</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} the stink to spread the rose petals</Text><ID>927963</ID></Title><Desc><Text>{{Input}} the stink to spread the rose petals.</Text><ID>927966</ID></Desc></Data> + 0 + false + + + 3564 + Edu111T06C + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PrtStinkLines03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PrtStinkLines03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13199</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} the stink to spread the rose petals</Text><ID>927963</ID></Title><Desc><Text>{{Input}} the stink to spread the rose petals.</Text><ID>927966</ID></Desc></Data> + 0 + false + + false +
+ + 2466 + Edu111T05 + 45 +

2459

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Give the yak tallow and lye water to Heather</Text><ID>927311</ID></Title><Desc><Text>Give the yak tallow and lye water to Heather.</Text><ID>927312</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2466 + 3559 + 0 + + + + 1 + 204858 + 0 + + 3559 + Edu111T05 + <Data><Offer><Type>Popup</Type><ID>927969</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Pee-ew! We need to hurry because I think the wind changed and Gobber's grime is heading your way. Would you come back here and give me the ingredients?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927970</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'll keep these safe until I've made a fragrance oil that smells like a sooty blacksmith.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13197</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lump of Tallow</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13198</Value></Pair><Pair><Key>ItemDescription</Key><Value>Container of Lye Water</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the yak tallow and lye water to Heather</Text><ID>927311</ID></Title><Desc><Text>Give the yak tallow and lye water to Heather</Text><ID>927311</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 13199 + + 1 + 5439 + 204858 + true + 3 + 3 + + 0 + +
+ false +
+ + 3556 + Edu111T01 + <Data><Offer><Type>Popup</Type><ID>927973</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Thank the stars you're here, {{Name}}. The entirety of Berk smells awful and I have called for a [c][3eebff]drench on sight[/c][ffffff] for whomever or whatever caused it. So far no one has found out where it's coming from but perhaps you have a better nose. @@ Follow the green stink and find out what's causing the stench.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927974</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Shh! You found me, {{greeting}}. Please don't throw water at me! I've tried to explain for years that Vikings are supposed to smell this way but no one sticks around long enough to listen.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KidCChocolate</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find what's causing the stench</Text><ID>927971</ID></Title><Desc><Text>Find what's causing the stench in Berk.</Text><ID>927972</ID></Desc></Data> + 0 + false + + + 3558 + Edu111T02 + <Data><Offer><Type>Popup</Type><ID>927977</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I guess I have let my skivvies get grimy this past year but I can't stand soap. It smells too flowery and my big boy Grump hates it even more than the grime. I saw that Heather is in Berk to help find the smell. Could you ask her if there's a better way to get me clean?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927978</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It was Gobber! I should've known... and Vikings aren't supposed to smell like that. Gobber has a buildup of [c][3eebff]grime[/c][ffffff] and that's what is making the terrible smell. Grime is made up of oils that are [c][3eebff]hydrophobic[/c][ffffff] (resist water) so washing it with water won't stop the stink. @@ We'll need a [c][3eebff]surfactant[/c][ffffff], a substance that reduces the surface tension of oils, so the water can wash it off. One of the best surfactants is [c][3eebff]soap[/c][ffffff]. @@ Don't worry, we can make it without the flowery smell so Gobber won't have any problems with Grump. We can add the smell of smoke and metalwork and call it [c][3eebff]Essence of Blacksmith[/c][ffffff] if that makes him feel better.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Heather if she knows of a way to clean Gobber</Text><ID>927975</ID></Title><Desc><Text>Ask Heather if she knows of a way to clean Gobber.</Text><ID>927976</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204855 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204855 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204855 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204855 + true + 350 + 350 + + 0 + +
+ false +
+ + 2472 + Jungle01 + 61 +

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpJungle01T03.unity3d/PfGrpJungle01T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpJungle01T00.unity3d/PfGrpJungle01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Birth of a Leviathan</Text><ID>927344</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2472 + 3571 + 0 + + + 1 + 2472 + 3572 + 0 + + + 1 + 2472 + 3573 + 0 + + + 1 + 2472 + 3574 + 0 + + + 1 + 2472 + 3575 + 0 + + + 1 + 2472 + 3576 + 0 + + + 1 + 2472 + 3577 + 0 + + + 1 + 2472 + 3578 + 0 + + + 1 + 2472 + 3579 + 0 + + + 1 + 2472 + 3580 + 0 + + + 1 + 2472 + 3581 + 0 + + + 2 + 2472 + 2473 + 0 + + + 1 + 2472 + 3585 + 0 + + + 1 + 2472 + 3586 + 0 + + + 1 + 2472 + 3587 + 0 + + + + 1 + 204859 + 0 + + 2473 + Jungle01T12 + 61 +

2472

+ <Data><Offer><Type>Popup</Type><ID>927343</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I can't go with you, {{Name}}. There's an emissary here from the island of Nepenthe, and I need to help him as the chief of Berk.@@You've proven your skills many times over in our adventures together, but I'd feel better if you had some additional help. Will you gather some allies to help you out in this journey?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Gather allies in Berk</Text><ID>927342</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2473 + 3582 + 0 + + + 1 + 2473 + 3583 + 0 + + + 1 + 2473 + 3584 + 0 + + + + 1 + 0 + 0 + + 3582 + Jungle01T12 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm sorry. Someone needs to make sure Hiccup doesn't bite off more than he can chew. +I know! You should ask some of my students, the 'A Team,' to see if they can help.</Text><ID>928240</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about helping out</Text><ID>928238</ID></Title><Desc><Text>Talk to Astrid about helping out with your new journey</Text><ID>941747</ID></Desc></Data> + 0 + false + + + 3583 + Jungle01T13 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_Botanist01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Don't fret. I am not letting one of my students head into danger without backup. My strength is yours.</Text><ID>928243</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist about helping</Text><ID>928241</ID></Title><Desc><Text>Talk to the Botanist about helping out</Text><ID>941748</ID></Desc></Data> + 0 + false + + + 3584 + Jungle01T14 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistBerk</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>If I've learned anything since my return to Berk, it's that {{Name}} will always lead me all over the map for the grandest adventures.@@Hah! Excuse my babbling. I'm with you to the edge of the world, my friend. Let's go find our missing dragon!</Text><ID>928246</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist about helping out</Text><ID>928244</ID></Title><Desc><Text>Talk to the Archaeologist about helping out</Text><ID>928244</ID></Desc></Data> + 0 + false + + false + + + 3571 + Jungle01T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_FrontOfHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>In need of any Vikings with knowledge about Dragon Island!@@Meet Hiccup outside of the Great Hall in Berk for more details.</Text><ID>928249</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey! You know, we rescued that egg from Harald in a whirlwind of adventure and things haven't slowed down. This little guy hasn't stopped growing ever since he hatched. Well, maybe I shouldn't call him 'little.'</Text><ID>928250</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup_01</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Hiccup's house at Berk</Text><ID>928247</ID></Title><Desc><Text>Talk to Hiccup at Berk</Text><ID>941749</ID></Desc></Data> + 0 + false + + + 3572 + Jungle01T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_FrontOfHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I don't recognize this dragon species, but he's clearly a Tidal Class dragon. I believe he may one day grow to be a gigantic Class 10 Leviathan, just like the Bewilderbeast! We'll learn so much as he grows and claims his birthright power...@@It's going to be okay, my dear. Don't fret... we're here for you. {{Name}}, pet the baby leviathan and help me soothe him.</Text><ID>928253</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I just wish I could make him feel better. We've given him water and dragon nip, and Toothless even played with him under the waterfall. Nothing's worked! He keeps making that heartbreaking noise...</Text><ID>928254</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle01T02CS.unity3d/PfGrpJungle01T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the baby leviathan</Text><ID>928251</ID></Title><Desc><Text>{{Input}} on the baby leviathan</Text><ID>928251</ID></Desc></Data> + 0 + false + + + 3573 + Jungle01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, we're not going to figure anything if we just stand around here. +Hmm... I don't remember seeing this little guy in the Book of Dragons, but it's been a while since I cracked the book open. Will you go to the Great Hall and look for it?</Text><ID>928257</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh, the little guy followed you here! He must like you.</Text><ID>928258</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Misc01T12.2</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Book of Dragons in the Great Hall</Text><ID>928255</ID></Title><Desc><Text>Look for the Book of Dragons in the Great Hall</Text><ID>928255</ID></Desc></Data> + 0 + false + + + 3574 + Jungle01T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thanks for helping. I can't find anything in the Book of Dragons that looks remotely like our baby leviathan. We've discovered a new dragon!@@Fishlegs must be ecstatic, but we need to know more if we want to help. Can you help Fishlegs with the Bork papers? He's stuck upstairs with that mess.</Text><ID>928261</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What a rare treat! Have you ever dug into the Bork Papers? It contains all the interesting dragon research Bork didn't put into the Book of Dragons. Frankly, it's fascinating.</Text><ID>928262</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs upstairs in the Great Hall</Text><ID>928259</ID></Title><Desc><Text>Talk to Fishlegs upstairs in the Great Hall</Text><ID>928259</ID></Desc></Data> + 0 + false + + + 3575 + Jungle01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I haven't found anything yet... but don't worry! I still have yards and yards of parchment to cover. +Shoot, I let the light go out. Can you {{input}} on the candle and light it again?</Text><ID>928265</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle01T05CS.unity3d/PfGrpJungle01T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Odin's eye - it's a secret message! +He must have hidden knowledge in invisible ink!</Text><ID>928266</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWCandle</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCandle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the candles to ignite them</Text><ID>928263</ID></Title><Desc><Text>Ignite the candles in the Great Hall</Text><ID>941750</ID></Desc></Data> + 0 + false + + + 3576 + Jungle01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Bork must have written this message with lemon juice ink. You see, lemon juice is more acidic than the parchment. The acid weakened the parchment where it dried. That part of the parchment turns brown before the rest of the parchment when it's exposed to heat!@@ Ooh, I wonder what was so important that Bork had to hide it. {{Input}} on the Bork Papers!</Text><ID>928269</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>This is our leviathan, all right! Let's see... "The Luminous Krayfin thrives in a humid habitat and must feed on the Dragon Bloom, a most dangerous flower. Only then can it become a leviathan. Extremely dangerous. Pray you never see this monster on the seas." @@ 'Monster.' His views on dragons are rooted in his time, and - to put it bluntly - they're wrong. Still, his knowledge of dragons was excellent.</Text><ID>932795</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle01T06CS.unity3d/PfGrpJungle01T06CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsGenPraise02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBBorkPapers.unity3d/PfUiMissionActionDBBorkPapers</Asset><NPC>PfDWFishlegs</NPC><Text>Bork</Text><ID>933389</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBorkPapers</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBorkPapers</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Bork Papers</Text><ID>928267</ID></Title><Desc><Text>{{Input}} on the Bork Papers</Text><ID>928267</ID></Desc></Data> + 0 + false + + + 3577 + Jungle01T07 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_NPC07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ugh, you two are ridiculous. +Uh-oh. {{Name}}, do you see the Krayfin anywhere? Quick, we need to find him! Let's get to Berk right away!</Text><ID>928274</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I've gotten so used to ignoring the Thorstons that I didn't even turn around when I heard the commotion... I didn't see the leviathan. +'Luminous Krayfin'? What a gorgeous name! It suits such a majestic dragon.</Text><ID>928275</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the baby leviathan at Berk</Text><ID>928272</ID></Title><Desc><Text>Look for the baby leviathan at Berk</Text><ID>928272</ID></Desc></Data> + 0 + false + + + 3578 + Jungle01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>He's still young and defenseless. We need to protect him! +Cloudjumper and I will look for him. Please, talk to the Vikings at Berk and see if they spotted our Krayfin.</Text><ID>928278</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Sure, I saw that baby leviathan come out of the Great Hall, flying towards that waterfall below us like he was being chased! The little tyke must have wanted to get his fins wet after all that noise.</Text><ID>928279</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about the baby leviathan</Text><ID>928276</ID></Title><Desc><Text>Talk to Gobber about the baby leviathan</Text><ID>928276</ID></Desc></Data> + 0 + false + + + 3579 + Jungle01T09 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You can't see any trace of the baby leviathan at the waterfall. Maybe he went elsewhere?</Text><ID>928282</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuffnutVisit</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the baby leviathan at the waterfall in Berk</Text><ID>928280</ID></Title><Desc><Text>Look for the baby leviathan at the waterfall in Berk</Text><ID>928280</ID></Desc></Data> + 0 + false + + + 3580 + Jungle01T10 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Nope, no luck. +Uhm, I'm sorry. We didn't expect he'd run away; total egg on our faces.</Text><ID>932796</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yeah, that wasn't one of our best. The prank had a shaky premise... and our execution? It stunk! +We're going to workshop a better version. Next time, it'll be a lot funnier: that's the Tuffnut Promise.</Text><ID>932899</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutInsult02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutInsult01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut at Berk</Text><ID>928283</ID></Title><Desc><Text>Talk to Ruffnut at Berk</Text><ID>928283</ID></Desc></Data> + 0 + false + + + 3581 + Jungle01T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We can't see him anywhere. He must be a fast swimmer; no surprise, considering he is a Tidal Class dragon. +We'll need to try something new if we want to track the Krayfin. Will you ask my son if he has any ideas?</Text><ID>928289</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I have an idea! +If we can't find him with our eyes, maybe we can use another one of our senses. I have just the invention that we can use to--</Text><ID>928290</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 3585 + Jungle01T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay, I think this invention will do the job! +Remember that sad noise the leviathan was making earlier today? It's terrible that the dragon felt ill, but we can use that to our advantage.@@I made the Storm Ear after the success of my previous invention, the Thunder Ear. Come to me and I'll show you how to use it!</Text><ID>928293</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGreat</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You may think of sound as something that just reaches your ear, but that's not quite true. Sound is a type of [c][3eebff]energy[/c][ffffff] made by vibrations. When any object vibrates, it causes movement in the air particles. These particles also move as a [c][3eebff]sound wave[/c][ffffff], causing other particles next to it to move too. @@ The sound wave continues until it runs out of energy. When this sound wave hits your inner ear, your inner ear vibrates along with that frequency. That's how you can hear the sound!</Text><ID>932797</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBSoundEdu.unity3d/PfUiMissionActionDBSoundEdu</Asset><NPC>PfDWHiccup</NPC><Text>Sound</Text><ID>41774</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about the Storm Ear</Text><ID>928291</ID></Title><Desc><Text>Talk to Hiccup about the Storm Ear</Text><ID>928291</ID></Desc></Data> + 0 + false + + + 3586 + Jungle01T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Storm Ear has a [c][3eebff]tuning fork[/c][ffffff] at the center of it that is crucial to the invention. Tuning forks are amazing instruments that can always produce the same pitch (or sound). Whenever a sound wave of that specific speed of vibration (or [c][3eebff]frequency[/c][ffffff]) hits the tuning fork, it starts vibrating! @@ This means that if we move the Storm Ear's listening device around, we'll be able to pinpoint what direction the sound is coming from... and follow the leviathan! This tuning fork is set to the same frequency as the baby leviathan. {{Input}} on the Storm Ear and let's see it in action!</Text><ID>928298</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! It's working just as intended. It's resonating at the same frequency as the leviathan's distress call; this will lead you right to the dragon!</Text><ID>928299</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSuperEar</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSuperEar</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Storm Ear</Text><ID>928296</ID></Title><Desc><Text>{{Input}} on the Storm Ear</Text><ID>928296</ID></Desc></Data> + 0 + false + + + 3587 + Jungle01T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A lot is riding on your shoulders. The Krayfin may be as large as a Broad Wing dragon but it hasn't been long since he hatched. We need to protect him. +And, if we can help him grow into a Class 10 Leviathan? That... would change everything.@@A lot is riding on your shoulders, {{Name}}, but I have faith in you. Now - use the Storm Ear to follow the Krayfin. And... good luck.</Text><ID>928302</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word, what a long flight! +I must confess, I enjoy these adventures more than I should. Onwards to glory, adventure, and danger!</Text><ID>928303</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the sound to the baby leviathan</Text><ID>928300</ID></Title><Desc><Text>Use the Storm Ear to follow the baby leviathan</Text><ID>941751</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204859 + true + 300 + 300 + + 0 + +
+ + 65 +

2

+ 0 + + 1 + 633 + 204859 + true + 65 + 65 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204859 + true + 200 + 200 + + 0 + +
+ + 400 +

8

+ 0 + + 1 + 1750 + 204859 + true + 400 + 400 + + 0 + +
+ false +
+ + 2474 + Jungle02 + 25 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle02T00.unity3d/PfGrpJungle02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Impossible Island?</Text><ID>927345</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2472 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2474 + 3588 + 0 + + + 1 + 2474 + 3589 + 0 + + + 1 + 2474 + 3590 + 0 + + + 1 + 2474 + 3591 + 0 + + + 1 + 2474 + 3592 + 0 + + + 1 + 2474 + 3593 + 0 + + + 1 + 2474 + 3594 + 0 + + + 1 + 2474 + 3595 + 0 + + + 1 + 2474 + 3596 + 0 + + + + 1 + 204860 + 0 + + 3588 + Jungle02T01 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle02T01.unity3d/PfGrpJungle02T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There don't seem to be many places to hide on this island, so we should be able to find where our dragon friend wandered off. We can use Hiccup's invention to find the Krayfin.</Text><ID>928306</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well, the trail seems to lead over the cliff. I hope there's a way to get down for us non-flying folks. +Phlegma, I would appreciate your keen insight; I have a strange feeling about this place.</Text><ID>928307</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Landmark</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Use the Storm Ear to follow the leviathan's trail</Text><ID>928304</ID></Title><Desc><Text>Use the Storm Ear to follow the leviathan's trail to the cenote</Text><ID>941752</ID></Desc></Data> + 0 + false + + + 3589 + Jungle02T02 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_LandmarkSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_LandmarkBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWSnaptrapperBotanist</Asset><Location>PfMarker_LandmarkSnaptrapper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle02T02.unity3d/PfGrpJungle02T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I feel it too, but I can't put my finger on the source. There is a strange smell in the air... it smells of death and decay.@@The island seems to have the same geology as the other islands, but there's something off. We'll need to be on guard while we look for the Krayfin.</Text><ID>928310</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle02T02CS.unity3d/PfGrpJungle02T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What a gorgeous building! I don't know for sure, but it looks several centuries old, and not of Berk origin. +That... smell is getting worse. I've come across this before and it's always been bad news. Phlegma, what do you think it could be?</Text><ID>928311</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgeOfCenote</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the edge of the cliff to get a better look</Text><ID>928308</ID></Title><Desc><Text>Walk closer to the edge of the cliff</Text><ID>941753</ID></Desc></Data> + 0 + false + + + 3590 + Jungle02T03 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_EdgeOfCenoteBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_EdgeOfCenoteSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWSnaptrapperBotanist</Asset><Location>PfMarker_EdgeOfCenoteSnaptrapper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I don't know. It could be that animals and dragons come to die here, or perhaps an illness has recently struck this island. We need to explore cautiously and find out.@@And explore we shall! This place is a geological wonder! This is a [c][3eebff]cenote[/c][ffffff], a cave system that looms over a giant pool of groundwater. This place was once solid limestone, but rain and erosion caused the bedrock to collapse on itself.@@I don't know who created these buildings or carved these steps, but we need to get our dragon. Let's fly down toward those ruins!</Text><ID>928314</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Whoa! It's all right, Snappy. I'm here. +Our dragons must sense danger down there that we do not. Animals have different sense receptors that are specialized for different kinds of information. This lets them make quick decisions in the wild that keeps them alive.@@This seems to be one of those times... maybe it's the deathly smell. We won't force our dragons into the cenote against their will.</Text><ID>928315</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle02T03CS_FAO.unity3d/PfGrpJungle02T03CS_FAO</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CenoteOpening</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly down into the cenote</Text><ID>928312</ID></Title><Desc><Text>Fly down into the cenote</Text><ID>928312</ID></Desc></Data> + 0 + false + + + 3591 + Jungle02T04 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_EdgeOfCenoteBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_EdgeOfCenoteSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWSnaptrapperBotanist</Asset><Location>PfMarker_EdgeOfCenoteSnaptrapper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well, the baby leviathan doesn't seem to have the same qualms. I wonder why the smell isn't scaring him off?@@Well! I suppose we have no other choice but to venture down after our errant leviathan! I hope these stairs haven't deteriorated over the years...</Text><ID>928318</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This place feels impossible the more I learn about it. The cenote is humid and moisture hangs in the air, and the flora here is unlike the plants I've seen anywhere else. I must get closer!</Text><ID>928319</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FootOfStairs</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a safe way to get down into the cenote</Text><ID>928316</ID></Title><Desc><Text>Find a safe way to get down into the cenote</Text><ID>928316</ID></Desc></Data> + 0 + false + + + 3592 + Jungle02T05 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_FootOfStairsSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FootOfStairsBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWSnaptrapperBotanist</Asset><Location>PfMarker_EdgeOfCenoteSnaptrapper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The baby Krayfin is top priority, but luckily he's waiting for us right behind this fascinating gate and amazing architecture. Let's get closer to the - to the baby Krayfin, of course. {{Input}} on me and let's go!</Text><ID>928322</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Amazing. This is just... I don't have the words for the beauty of this discovery. Thank you, baby leviathan. Thank you!</Text><ID>928323</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CenoteINT01Gate</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>7</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>SkulderSplineToTemple</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him to the door</Text><ID>941754</ID></Desc><Reminder><Text>Stay close to the Archaeologist!</Text><ID>936312</ID></Reminder><Failure><Text>Oh no! The Archaeologist left you behind!</Text><ID>936313</ID></Failure></Data> + 0 + false + + + 3593 + Jungle02T06 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FootOfStairsBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWSnaptrapperBotanist</Asset><Location>PfMarker_EdgeOfCenoteSnaptrapper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_CenoteINT01Gate</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The baby leviathan doesn't seem inclined to leave that building. {{Name}}, let's get him out on the other side. {{Input}} on the door and open it for our Krayfin.</Text><ID>928326</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Locked. +Of course it would be. Skulder?</Text><ID>928327</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>lockedGate</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>lockedGate</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the door and open it</Text><ID>928324</ID></Title><Desc><Text>{{Input}} on the door</Text><ID>926743</ID></Desc></Data> + 0 + false + + + 3594 + Jungle02T07 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FootOfStairsBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_CenoteINT01Gate</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>And the arch on this gate, it's surely a sign of... and the Eruptodon, yes... +Hmm? +Oh! My apologies, dear Phlegma. @@ The gate is locked and we can't-shouldn't?-[c][3eebff]won't[/c][ffffff] break it. I believe this building was created by the Defenders of the Wing, our allies to the north. Fortunately, Mala and her warriors are currently visiting Dragon's Edge. We should ask for their aid (and maybe a set of keys?). Phlegma, will you join us?</Text><ID>928330</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>No, I want to stay here and try to document the different types of plants flourishing here. I also want to find the source of this smell. I'm sure you two can talk to Mala without a problem. Skulder, Snappy is yours to fly if he consents.</Text><ID>928331</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist</Text><ID>923207</ID></Desc></Data> + 0 + false + + + 3595 + Jungle02T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh my word! I'm touched. I have been practicing how to fly a dragon on my own with Muddie, my rascally dragon friend, so I am up for the challenge! +Please, {{Name}}, take point. Let's fly out of here to Dragon's Edge!</Text><ID>928334</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The Defenders of the Wing are a proud people. They have an unshakeable faith in the Great Protector, the Eruptodon that lives above their village. They have martial traditions that spans generations, and they've come to Dragon's Edge to share it with us.</Text><ID>928335</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>930720</ID></Title><Desc><Text>Go to Dragon's Edge</Text><ID>929044</ID></Desc></Data> + 0 + false + + + 3596 + Jungle02T09 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Have you met Mala, the Queen of the Defenders of the Wing? She rules over the village with a kind but firm hand. She can give us the help we need to get into the ruins at Impossible Island... I hope.</Text><ID>928338</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It is a pleasure to meet you, {{Name}}. You have found a hallowed area, hidden deep within the cenote of Impossible Island. There, my ancestors constructed a labyrinth where only the worthiest could triumph.@@My great grandmother ended that tradition; too many young Defenders were injured trying to prove themselves. +I am sorry, but I will not help you. I refuse to send people into certain danger.</Text><ID>928339</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMala </Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala</Text><ID>933578</ID></Title><Desc><Text>Talk to Mala</Text><ID>928347</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 204860 + true + 250 + 250 + + 0 + + + + 65 +

2

+ 0 + + 1 + 633 + 204860 + true + 65 + 65 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204860 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204860 + true + 200 + 200 + + 0 + +
+ false +
+ + 2475 + Jungle03 + 51 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpJungle03T00.unity3d/PfGrpJungle03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Death Traps of Impossible Island</Text><ID>927346</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2474 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2475 + 3597 + 0 + + + 1 + 2475 + 3598 + 0 + + + 1 + 2475 + 3599 + 0 + + + 1 + 2475 + 3601 + 0 + + + 1 + 2475 + 3602 + 0 + + + 1 + 2475 + 3600 + 0 + + + 1 + 2475 + 3764 + 0 + + + 1 + 2475 + 3603 + 0 + + + 1 + 2475 + 3604 + 0 + + + + 1 + 204861 + 0 + + 3597 + Jungle03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>I regret that you came to speak to me in vain. Please, stay and talk to my people. Perhaps they can help you understand the trials of becoming a warrior of the Defenders of the Wing.</Text><ID>928342</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWNinjaMale</NPC><Text>Did Mala tell you no? You have that look about you. +It might seem unfair, but I'm sure she has your best interest in mind.</Text><ID>928343</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNinjaMale</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the other Defenders</Text><ID>928340</ID></Title><Desc><Text>Talk to the other Defenders</Text><ID>928340</ID></Desc></Data> + 0 + false + + + 3598 + Jungle03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWNinjaMale</NPC><Text>Mala is fair and will change her mind if given enough reason. +I can help out, but tell me, why do you want her help?</Text><ID>928346</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNinjaMale</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizJungle03T02.unity3d/PfUiQuizJungle03T02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Answer the Defender's question</Text><ID>928344</ID></Title><Desc><Text>Answer the Defender's question</Text><ID>928344</ID></Desc></Data> + 0 + false + + + 3599 + Jungle03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWNinjaMale</NPC><Text>Ha ha! I like your spirit. +Look, tell Mala this: you deserve a chance to prove your strength. Perhaps you can show her that you are worthy of tackling Impossible Island!</Text><ID>928349</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>What did my warrior tell you?</Text><ID>928350</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala</Text><ID>933578</ID></Title><Desc><Text>Talk to Mala</Text><ID>928347</ID></Desc></Data> + 0 + false + + + 3600 + Jungle03T06A + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle03T07.unity3d/PfGrpJungle03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>The [c][3eebff]gear[/c][ffffff] is a [c][3eebff]simple machine[/c][ffffff] comprised of a wheel with teeth. These teeth will slot together with other gears. When one gear is turned, the ones connected to it will turn as well.@@You must figure out how to get the device running by placing the cogs in the appropriate order! +Climb onto the ship and {{input}} on the device to test your skills.</Text><ID>928353</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Well done. You must master these skills to stand a chance inside the cenote.</Text><ID>928354</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CogShip</Value></Pair><Pair><Key>Name</Key><Value>DOCogs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the cog on board the ship</Text><ID>928351</ID></Title><Desc><Text>{{Input}} on the cog on the ship</Text><ID>941755</ID></Desc></Data> + 0 + false + + + 3601 + Jungle03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Maybe you are right. I should not judge your skills before you can demonstrate them to me. Perhaps you have what it takes to get through the death traps.@@I'll order my ships to head to Impossible Island if you can tell your companion we are ready to go.</Text><ID>928357</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah. E-excuse me ma'am. Did you say-{{Name}}, did she say 'death traps'? Oh dear. Is it too late for us to change our minds?</Text><ID>928358</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 3602 + Jungle03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>My grandparents used to tell me many incredible tales about Impossible Island, and I am pleased for the chance to see it with my own eyes. My ships and I will meet you there.</Text><ID>928361</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>The stories did not do this wonder justice...</Text><ID>928362</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the ruins at Impossible Island</Text><ID>928359</ID></Title><Desc><Text>Go to Impossible Island</Text><ID>929417</ID></Desc></Data> + 0 + false + + + 3603 + Jungle03T07 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle03T07.unity3d/PfGrpJungle03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Now it's time for the real challenge. Get to the ruins, {{input}} on the lock at the gate and arrange the gears.</Text><ID>928365</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It was the right decision to put my faith in you!</Text><ID>928366</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle03T07CS.unity3d/PfGrpJungle03T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfHCTempleDoor</Value></Pair><Pair><Key>Name</Key><Value>DOCogs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_cenoteGate</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Open the door by {{input}}ing on it</Text><ID>928363</ID></Title><Desc><Text>Open the door by {{input}}ing on it</Text><ID>928363</ID></Desc></Data> + 0 + false + + + 3604 + Jungle03T08 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle03T07.unity3d/PfGrpJungle03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Our little dragon is quite set on his goal, isn't he? We would be remiss if we do not follow its lead into the unknown. Forward, my friends!</Text><ID>928369</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Stay on your toes. My ancestors will push your abilities to their limit, and you must keep your wits if you wish to survive these trials.</Text><ID>928370</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the baby leviathan</Text><ID>928367</ID></Title><Desc><Text>Follow the baby leviathan into the labyrinth</Text><ID>941756</ID></Desc></Data> + 0 + false + + + 3764 + Jungle03T06B + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle03T07.unity3d/PfGrpJungle03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>This next trial is called Contraptions, which will test your ability to use physics to your advantage. An [c][3eebff]unbalanced force[/c][ffffff] on one side of the ball will start it moving; you must push it with another object to complete the challenge.@@Climb aboard the Contraptions ship, {{input}} on the device and solve it.</Text><ID>928373</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>I may have underestimated you. Perhaps, just perhaps, you might survive the labyrinth of Impossible Island.</Text><ID>928374</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IMShip</Value></Pair><Pair><Key>Name</Key><Value>DOIncredibleMachine</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_00</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the Contraptions device and solve the puzzle</Text><ID>928371</ID></Title><Desc><Text>{{Input}} on the Contraptions device and solve the puzzle</Text><ID>928371</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 204861 + true + 350 + 350 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 204861 + true + 85 + 85 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 204861 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204861 + true + 200 + 200 + + 0 + +
+ + 1 +

6

+ 10996 + + 1 + 5440 + 204861 + true + 1 + 1 + + 0 + +
+ false +
+ + 2477 + Jungle05 + 51 +

+ <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>RS_DATA/PfGrpJungle05T00.unity3d/PfGrpJungle05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Treasures Within</Text><ID>927348</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2476 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2477 + 3611 + 0 + + + 1 + 2477 + 3612 + 0 + + + 1 + 2477 + 3613 + 0 + + + 1 + 2477 + 3614 + 0 + + + 1 + 2477 + 3615 + 0 + + + 1 + 2477 + 3616 + 0 + + + 1 + 2477 + 3617 + 0 + + + 1 + 2477 + 3618 + 0 + + + 1 + 2477 + 3619 + 0 + + + 1 + 2477 + 3620 + 0 + + + + 1 + 204863 + 0 + + 3611 + Jungle05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>This labyrinth is even better than I could have hoped. I hope all of its legends are true; my grandmother told me stories that our greatest treasures hide within. We shall see when we go deeper. Please take a close look at the lock box.</Text><ID>928402</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>This is a classic Defender puzzle room. The lock box holds the stone in the center of the room. When you complete its challenge, the stone drops to the level below until it finally reaches the floor.</Text><ID>928403</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IM01</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a closer look at the lockbox</Text><ID>928400</ID></Title><Desc><Text>Take a closer look at the lockbox</Text><ID>928400</ID></Desc></Data> + 0 + false + + + 3612 + Jungle05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>{{Input}} on the lock box and solve it. Let us see what this room has in store for us.</Text><ID>928406</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Excellent!</Text><ID>928407</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IM01</Value></Pair><Pair><Key>Name</Key><Value>DOIncredibleMachine</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_43</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the first lock box and complete the challenge</Text><ID>928404</ID></Title><Desc><Text>{{Input}} on the first lock box and complete the challenge</Text><ID>928404</ID></Desc></Data> + 0 + false + + + 3613 + Jungle05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We're not out of it yet. Drop down another level and {{input}} on the next challenge.</Text><ID>928410</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We're close to hitting that trigger. We've almost got it!</Text><ID>928411</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle05T03CS.unity3d/PfGrpJungle05T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IM02</Value></Pair><Pair><Key>Name</Key><Value>DOIncredibleMachine</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_44</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the next challenge and solve it</Text><ID>928408</ID></Title><Desc><Text>{{Input}} on the next challenge and solve it</Text><ID>928408</ID></Desc></Data> + 0 + false + + + 3614 + Jungle05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We're almost through, my friend. I believe that we will solve this puzzle if you {{input}} on the final challenge!</Text><ID>928414</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Movie</Type><Asset>RS_MOVIES/CenoteBridgeReward02.ogg</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fie on everything on this island that keeps giving me a fright! I still have no idea what that could be, but at least it didn't set off any traps.</Text><ID>928415</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle05T04CS.unity3d/PfGrpJungle05T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IM03</Value></Pair><Pair><Key>Name</Key><Value>DOIncredibleMachine</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_45</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the final Lock Box</Text><ID>928412</ID></Title><Desc><Text>{{Input}} on the final Lock Box</Text><ID>928412</ID></Desc></Data> + 0 + false + + + 3615 + Jungle05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well, I think we must enter that device to see what there is to discover in the next chamber!</Text><ID>928418</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Wait. My great-grandparents left behind scrolls that detailed the challenges within the labyrinth, but this trial was not recorded.</Text><ID>928419</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_MemoryRespawn</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MemoryRespawn</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the next chamber</Text><ID>928416</ID></Title><Desc><Text>Go to the next chamber</Text><ID>928416</ID></Desc></Data> + 0 + false + + + 3616 + Jungle05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Someone other than the Defenders must have made this trial. Who could come this far without our help? Could you take a closer look and figure out who might be responsible?</Text><ID>928422</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fascinating! They're a bit strange, but I'm certain that this was created by someone from Berk.</Text><ID>928423</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MemoryTileStart</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find clues to solve the memory challenge</Text><ID>928420</ID></Title><Desc><Text>Find clues to solve the memory challenge</Text><ID>928420</ID></Desc></Data> + 0 + false + + + 3617 + Jungle05T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ruffnut and Tuffnut like these types of challenges in their mazes. It seems our ancestors also had a keen eye for these memory challenges, too. Find your way across, please!</Text><ID>928426</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TreasureRoom</Value></Pair><Pair><Key>Range</Key><Value>13</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a way through and search the corridor</Text><ID>928424</ID></Title><Desc><Text>Find your way through the maze and across the chasm</Text><ID>941758</ID></Desc></Data> + 0 + false + + + 3618 + Jungle05T08 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_AfterMemoryBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_AfterMemoryKrayfin</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWMala</Asset><Location>PfMarker_AfterMemoryMala</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_AfterMemorySkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Mala would definitely want to see this. You should find a way back to Mala and the others.</Text><ID>928429</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>There you are! What did you find?</Text><ID>928430</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala</Text><ID>933578</ID></Title><Desc><Text>Talk to Mala</Text><ID>928347</ID></Desc></Data> + 0 + false + + + 3619 + Jungle05T09 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_AfterMemoryBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_AfterMemoryKrayfin</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWMala</Asset><Location>PfMarker_AfterMemoryMala</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_AfterMemorySkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>A treasure room sounds like the exact thing I was hoping to find! {{Input}} on me and lead on, adventurer!</Text><ID>928433</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Heavens! This is the Winged Spear, an ancient symbol of our connection to the Eruptodon. I must return this - and the rest of these beautiful relics - back to their rightful place on our island.</Text><ID>928434</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle05T09CS.unity3d/PfGrpJungle05T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TreasureRoom</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>9</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Mala and lead her to the treasure room</Text><ID>928431</ID></Title><Desc><Text>{{Input}} on Mala and lead her to the treasure room</Text><ID>928431</ID></Desc><Reminder><Text>Don't get too far ahead!</Text><ID>936316</ID></Reminder><Failure><Text>Oh no! You left Mala behind!</Text><ID>936329</ID></Failure></Data> + 0 + false + + + 3620 + Jungle05T10 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_TreasureBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_TreasureKrayfin</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWMala</Asset><Location>PfMarker_TreasureMala</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_TreasureSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Our journeys together end for now, but this will not be the last time we work together. These trials tested your mettle and you proved worthy. I have no doubt you will find what you seek. +Farewell... and good luck.</Text><ID>932798</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>It was an honor, your majesty. Come on, {{greeting}}. We need to follow that tunnel to the next room.</Text><ID>932901</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>It's strange. Why would explorers from Berk create an additional trial in this building? It's as if they were trying to hide something inside... +No matter. The next challenge awaits us.</Text><ID>928439</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WaterRoom</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Proceed to the next chamber</Text><ID>928435</ID></Title><Desc><Text>Proceed to the next chamber</Text><ID>928435</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 204863 + true + 250 + 250 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 204863 + true + 85 + 85 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 204863 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204863 + true + 50 + 50 + + 0 + +
+ false +
+ + 2478 + Jungle06 + 7 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle06T00EXT.unity3d/PfGrpJungle06T00EXT</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWMala</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Water Conundrum</Text><ID>927349</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2477 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2478 + 3621 + 0 + + + 1 + 2478 + 3622 + 0 + + + 1 + 2478 + 3623 + 0 + + + 1 + 2478 + 3624 + 0 + + + 1 + 2478 + 3625 + 0 + + + 1 + 2478 + 3626 + 0 + + + 1 + 2478 + 3747 + 0 + + + 1 + 2478 + 3627 + 0 + + + 1 + 2478 + 3628 + 0 + + + 1 + 2478 + 3629 + 0 + + + + 1 + 204864 + 0 + + 3621 + Jungle06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We must figure out what the Defenders' new challenge is in this room. Can you take a closer look for the exit?</Text><ID>928442</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Well, now we know what the leviathan wants... but this looks too deep for you and me! Is that the intended trial, to figure out how to lower the water level?</Text><ID>928443</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Catwalk</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Walk onto the catwalk</Text><ID>928440</ID></Title><Desc><Text>Walk onto the catwalk</Text><ID>928440</ID></Desc></Data> + 0 + false + + + 3622 + Jungle06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We are on the same brain wave, my dear Phlegma! We can close the valve on those pipes to stop the water! They have an outer part called a [c][3eebff]seat[/c][ffffff] that makes sure there is a tight fit, then the inner part (called the [c][3eebff]body[/c][ffffff]) can open or close to control the water flow. We can open or close the body by using the lever.</Text><ID>932799</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>'My dear...' Oh! I mean. I mean no disrespect, I just... +Oh dear. {{Name}}, please save me from the embarrassment! {{Input}} on the device and close the pipe valve.</Text><ID>932902</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle06T02CS.unity3d/PfGrpJungle06T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WaterPuzzle01</Value></Pair><Pair><Key>Name</Key><Value>DOIncredibleMachine</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_47</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the valve and solve it</Text><ID>928444</ID></Title><Desc><Text>Solve the mystery of the valve</Text><ID>941759</ID></Desc></Data> + 0 + false + + + 3623 + Jungle06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Excellent! It seems our hypothesis was correct. Go down to the second level and {{input}} on the device!</Text><ID>928450</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle06T03CS.unity3d/PfGrpJungle06T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WaterPuzzle02</Value></Pair><Pair><Key>Name</Key><Value>DOIncredibleMachine</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_48</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the lower valve</Text><ID>928448</ID></Title><Desc><Text>{{Input}} on the lower valve</Text><ID>928448</ID></Desc></Data> + 0 + false + + + 3624 + Jungle06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I believe the door will open if we put the statues in the right place. {{Input}} on the button when you are near to push it into the right place!</Text><ID>928453</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Movie</Type><Asset>RS_MOVIES/CenoteBridgeReward03.ogg</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_IrisDoor</Value></Pair><Pair><Key>Name</Key><Value>SwitchOn</Value></Pair><Pair><Key>ItemName</Key><Value>GateSwitch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the Iris Gate</Text><ID>928451</ID></Title><Desc><Text>Open the Iris Gate</Text><ID>928451</ID></Desc></Data> + 0 + false + + + 3625 + Jungle06T05 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_IrisDoorBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_IrisDoorKrayfin</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_IrisDoorSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That sound! I wonder what changes we will see inside the cenote when we leave this place. +Do you feel the rush, my friend? We are venturing where few Vikings have crossed in decades. This is why I got into archaeology!@@Let's go. I can't wait to defeat the next trap!</Text><ID>928456</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word. What a strange place!</Text><ID>928457</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Sewer</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go through the Iris Gate</Text><ID>928454</ID></Title><Desc><Text>Go through the Iris Gate</Text><ID>928454</ID></Desc></Data> + 0 + false + + + 3626 + Jungle06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It's a dead end, but I'm sure we can figure this out. Perhaps it's hiding a clue for us to solve! Let's put our heads together.</Text><ID>928460</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Okay, I got it. I know that this lever will open the door. Here we go!</Text><ID>928461</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle06T06CS.unity3d/PfGrpJungle06T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Trap</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the room</Text><ID>928458</ID></Title><Desc><Text>Explore the room</Text><ID>928458</ID></Desc></Data> + 0 + false + + + 3627 + Jungle06T07 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_MazeCaveA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_MazeCaveB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_EdgeOfNest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Is everyone okay? +Good. My apologies, everyone... but at least we're not locked in a cage, ha ha!@@Oh! Who are you, little guy? {{Input}} on our new visitor!</Text><ID>928464</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle06T07CS.unity3d/PfGrpJungle06T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Uh-oh. Uh-oh...</Text><ID>928465</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle06T08CS.unity3d/PfGrpJungle06T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWFlameWhipperBaby</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFlameWhipperBaby</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the baby dragon and greet her</Text><ID>928462</ID></Title><Desc><Text>{{Input}} on the baby dragon and greet her</Text><ID>928462</ID></Desc></Data> + 0 + false + + + 3628 + Jungle06T08 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_MazeCaveA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_MazeCaveB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_EdgeOfNest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Stay calm. +These dragons have a natural instinct to protect their babies, and we're too close to the nest. Back away from them, slowly.</Text><ID>928468</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgeOfNest</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Back away from the dragons</Text><ID>928466</ID></Title><Desc><Text>Back away from the dragons</Text><ID>928466</ID></Desc></Data> + 0 + false + + + 3629 + Jungle06T09 + <Data><Offer><Type>Popup</Type><ID>928471</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Get out! Run as fast as you can!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928472</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This won't help me get over my fear of dragons! My word. I bet those snarls will haunt my dreams for weeks to come...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeEntrance</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Run away from the dragons!</Text><ID>928470</ID></Title><Desc><Text>Run away from the dragons!</Text><ID>928470</ID></Desc></Data> + 0 + false + + + 3747 + Jungle06T06B + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_TrapBotanist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_TrapSkulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Impossible Island</Text><ID>929417</ID></Title><Desc><Text>Go to Impossible Island</Text><ID>929417</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204864 + true + 60 + 60 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 204864 + true + 300 + 300 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 204864 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204864 + true + 200 + 200 + + 0 + +
+ false +
+ + 2479 + Jungle07 + 7 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle07T00.unity3d/PfGrpJungle07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Welcome to the Jungle</Text><ID>927351</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2478 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2479 + 2480 + 0 + + + 1 + 2479 + 3631 + 0 + + + 1 + 2479 + 3632 + 0 + + + 1 + 2479 + 3633 + 0 + + + 1 + 2479 + 3634 + 0 + + + 1 + 2479 + 3635 + 0 + + + 1 + 2479 + 3636 + 0 + + + 1 + 2479 + 3637 + 0 + + + 1 + 2479 + 3709 + 0 + + + 1 + 2479 + 3638 + 0 + + + 1 + 2479 + 3639 + 0 + + + 1 + 2479 + 3746 + 0 + + + + 1 + 204865 + 0 + + 2480 + Jungle07T01 + 7 +

2479

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Look at the plant</Text><ID>927350</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2480 + 3630 + 0 + + + + 1 + 204866 + 0 + + 3630 + Jungle07T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I don't think they're following us. +We need to find out more about these dragons. Clearly they have adapted to this environment and can live with the smell. Let's find a way out, and, if you don't mind, let's take a closer look at that peculiar plant.</Text><ID>928475</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Fascinating! These are clearly tropical plants flourishing here in this humid climate. See these creeping plants with roots clinging to tree branches? They're called [c][3eebff]epiphytes[/c][ffffff].@@Epiphytes absorb water through their leaves instead of the roots, so they can compete for water in the thick foliage of a jungle. +We might have a hard time seeing where we need to go through this fauna... but I brought something that will help.</Text><ID>928476</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeEntrance</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Examine the strange plants in front of you</Text><ID>928473</ID></Title><Desc><Text>Examine the strange plants in front of you</Text><ID>928473</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12978 + + 1 + 5441 + 204866 + true + 1 + 1 + + 0 + +
+ false + + + 3631 + Jungle07T02 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I spotted a bridge northeast of here while we were falling. I think that was what we were triggering inside the labyrinth. We should head that way.</Text><ID>928479</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeDeadEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Use the compass and head northeast</Text><ID>928477</ID></Title><Desc><Text>Use the compass and head northeast into the maze</Text><ID>941761</ID></Desc></Data> + 0 + false + + + 3632 + Jungle07T03 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>A dead end! If there's no way to go, we'll go through this maze of underbrush. We'll need to find a way we can push through. Let's go south.</Text><ID>928482</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>This flower has been eaten by some sort of animal. Be alert. +This plant is an epiphyte called a [c][3eebff]ceriman[/c][ffffff]. It's a tropical invasive species, which means it's not native to the ecosystem. It can cause a lot of harm if it's allowed to flourish.</Text><ID>928483</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeFlower</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the path south</Text><ID>928480</ID></Title><Desc><Text>Follow the path south</Text><ID>928480</ID></Desc></Data> + 0 + false + + + 3633 + Jungle07T04 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_MazeFlower</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FlowerAdj</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_FlowerKray</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Phlegma, those dragons may chase us down at any moment... perhaps we should spread out and look for an exit? +{{Name}}, you and I can look for a way in that direction while Phlegma searches here. {{Input}} on me and stay close.</Text><ID>928486</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>...Ah.</Text><ID>928487</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeArchaeologist2</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Archaeologist_Follow</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Desc><Reminder><Text>Stay close to the Archaeologist!</Text><ID>936312</ID></Reminder><Failure><Text>Oh no! He left you behind!</Text><ID>936299</ID></Failure></Data> + 0 + false + + + 3634 + Jungle07T05 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FlowerAdj</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_FlowerKray</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>O-kay... Slowly, back away from the angry dragon. I don't think it likes us being close while it eats.</Text><ID>928490</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Great. You're back. Why are you shaking?</Text><ID>928491</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeFlower</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Back away from the dragon and return to the Botanist</Text><ID>928488</ID></Title><Desc><Text>Back away from the dragon and return to the Botanist</Text><ID>928488</ID></Desc></Data> + 0 + false + + + 3635 + Jungle07T06 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FlowerAdj</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_MazeFlower</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_FlowerKray</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>No matter. I've found a weakness in this underbrush that you can chop through. Don't worry; the fauna in jungle biomes is very aggressive, and it'll grow back quickly.</Text><ID>928494</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Ah! These strange dragons live here because they eat the cerimans that thrive in this environment. The smell doesn't bother them, somehow, so they can feast on their food without any competition. What a sweet deal for them!</Text><ID>928495</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMazeWall1</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMazeWall1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop through the plants</Text><ID>928492</ID></Title><Desc><Text>Chop through the plants</Text><ID>928492</ID></Desc></Data> + 0 + false + + + 3636 + Jungle07T07 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_FlowerAdj</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_MazeFlower</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_FlowerKray</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm sure that's very fascinating, but I suggest we get moving before we end up looking like that half-gnawn flower! Let's take the east path out of here.</Text><ID>928498</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>They're close... Goodness, my mind is conjuring images of their razor sharp teeth. We need to pick up the pace!</Text><ID>928499</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeEast</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take the east path</Text><ID>928496</ID></Title><Desc><Text>Take the east path</Text><ID>928496</ID></Desc></Data> + 0 + false + + + 3637 + Jungle07T08 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Keep calm, Skulder. {{Name}}, we need to head north. Chop through any of the weak points in the underbrush wherever you can.</Text><ID>928502</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Good, we're out. +What a tense situation! It was nearly as bad as the one time I went into battle with nothing but my armor and a sharpened mango.</Text><ID>928503</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle07T05CS.unity3d/PfGrpJungle07T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeExit</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Chop through underbrush and head north</Text><ID>928500</ID></Title><Desc><Text>Chop through any underbrush and head north when you can</Text><ID>941762</ID></Desc></Data> + 0 + false + + + 3638 + Jungle07T09 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_MazeFollow</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_PathA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_PathB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Just to be safer, shall we cross the bridge? I see more plants that would interest you, Phlegma.</Text><ID>928506</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These plants are more like the ones you're used to. These are [c][3eebff]philodendrons[/c][ffffff] and [c][3eebff]ficuses[/c][ffffff]. They're tropical plants, that prefer humid conditions, but they use their roots to absorb water and their leaves to absorb light.@@Some species of philodendron are epiphytes and will wrap themselves around trees instead! +There are so many subspecies that I could talk about them all day...</Text><ID>928507</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle07T09CS.unity3d/PfGrpJungle07T09CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TropicalPlants</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Cross the bridge and examine the plants</Text><ID>928504</ID></Title><Desc><Text>Cross the bridge to the plants</Text><ID>941763</ID></Desc></Data> + 0 + false + + + 3639 + Jungle07T10 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_PlantsB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_PlantsA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thor on a hammer! It's the baby dragon we saw earlier. Don't touch her, {{Name}}. Her parents are already furious, so let's not make things worse. I think now is the time to step back.</Text><ID>928510</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Am I the only one who noticed that dragon lost her tail? Will she be all right?</Text><ID>928511</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SecondBuildingEntrance</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Back away from the dragon onto the stairs</Text><ID>928508</ID></Title><Desc><Text>Back away from the dragon and onto the stairs</Text><ID>941764</ID></Desc></Data> + 0 + false + + + 3709 + Jungle07T08_5 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_KrayfinEscort</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_ArchEscort</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_BotanistEscort</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's not a very interesting story; we should keep our mind focused on the current task. Our Krayfin friend looks antsy. Follow him wherever he wants to go.</Text><ID>928514</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MazeFollow</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>9</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Spline</Key><Value>Krayfin_Spline</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow the Krayfin</Text><ID>928512</ID></Title><Desc><Text>Follow the baby Krayfin</Text><ID>941765</ID></Desc><Reminder><Text>Stay close to the Krayfin!</Text><ID>936320</ID></Reminder><Failure><Text>Oh no! He left you behind!</Text><ID>936299</ID></Failure></Data> + 0 + false + + + 3746 + Jungle07T11 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>She didn't look or sound injured. She might have lost her tail as a defense mechanism. More importantly, did you see how she deftly flicked her tongue? I bet she can fling her fireball in a unique shape, like the ones we saw in the labyrinth.@@Maybe we can name her a "Flame Whipper?" I hope we can see her again when tensions are low.</Text><ID>928517</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Back away from the dragon down the stairs</Text><ID>928515</ID></Title><Desc><Text>Back away from the dragon and onto the stairs</Text><ID>941764</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 204865 + true + 250 + 250 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 204865 + true + 45 + 45 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204865 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204865 + true + 50 + 50 + + 0 + +
+ false +
+ + 2481 + Jungle08 + 25 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle08T00.unity3d/PfGrpJungle08T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Approaching the Ruins</Text><ID>927352</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2479 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2481 + 3641 + 0 + + + 1 + 2481 + 3642 + 0 + + + 1 + 2481 + 3643 + 0 + + + 1 + 2481 + 3644 + 0 + + + 1 + 2481 + 3645 + 0 + + + 1 + 2481 + 3646 + 0 + + + + 1 + 204867 + 0 + + 3641 + Jungle08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Our Krayfin seems very intent on entering this building. Well, we shouldn't keep him waiting! Let's open this door and follow him through.</Text><ID>928520</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuinsDoor</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Examine the door</Text><ID>928518</ID></Title><Desc><Text>Examine the door</Text><ID>928518</ID></Desc></Data> + 0 + false + + + 3642 + Jungle08T03 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle08T03.unity3d/PfGrpJungle08T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Locked. Well, the key can't be very far! Let's search the area.</Text><ID>928523</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Eureka! What did you find?</Text><ID>928524</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBagHamish</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for the missing key</Text><ID>928521</ID></Title><Desc><Text>Look for the missing key from the door</Text><ID>941766</ID></Desc></Data> + 0 + false + + + 3643 + Jungle08T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's a messenger bag from Berk! What is that doing here? Give it to me and I'll take a look.</Text><ID>928527</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>"The dragon bloom is now safely hidden. If you need to find it, come talk to me. Berk has the key." - Hamish II</Text><ID>932800</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle08T04CS.unity3d/PfGrpJungle08T04CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hamish must have been working with Bork to bring the 'dragon bloom,' whatever that is, here. That makes sense; Hamish the Second was renowned for his labyrinths and strange puzzles. In fact, he used to love statues like this one here...</Text><ID>933391</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>13200</Value></Pair><Pair><Key>ItemDescription</Key><Value> Berk Messenger Bag</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the messenger bag to the Botanist</Text><ID>928525</ID></Title><Desc><Text>Give the messenger bag to the Botanist</Text><ID>928525</ID></Desc></Data> + 0 + false + + + 3644 + Jungle08T05 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_StairB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Skulder! Are you alright? +{{Name}}! Try to get him out. {{Input}} on the trap wall and see if we can trigger it to swing again!</Text><ID>928532</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Don't worry; the only thing I bruised was my pride. There doesn't seem to be anything dangerous here. The baby leviathan is looking at me curiously... and I'm in a cage again.@@Wonderful. +It's my lot in life.</Text><ID>928533</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWTrapDoor</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTrapDoor</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the trap door and get Skulder free</Text><ID>928530</ID></Title><Desc><Text>{{Input}} on the trap door and get Skulder free</Text><ID>928530</ID></Desc></Data> + 0 + false + + + 3645 + Jungle08T06 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWBotanist</Asset><Location>PfMarker_BridgeExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I can't help you in here, but I think I figured out where the key could be. Hamish II only sailed once beyond Berk's borders and his ship sank before it could return home.@@In his journals, he wrote that he crashed his ship 'north of the Dragon's Jaws.' The key must be there, at the Ship Graveyard! {{Name}}, please, go to Phlegma and figure out how to leave the cenote!</Text><ID>928536</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Look out!</Text><ID>928537</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle08T06CS_FAO.unity3d/PfGrpJungle08T06CS_FAO</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BridgeExit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Botanist</Text><ID>928534</ID></Title><Desc><Text>Go to the Botanist</Text><ID>928534</ID></Desc></Data> + 0 + false + + + 3646 + Jungle08T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>See if the Botanist needs help!</Text><ID>928538</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>We're Vikings; we're made of sterner stuff. I'm going to be fine. +More importantly, you've obviously trained your dragon well. Every instinct was telling your dragon to stay out of the cenote, and {{dragon name}} ignored them to help you. You have a wonderful bond.</Text><ID>928541</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>See if the Botanist needs help!</Text><ID>928538</ID></Title><Desc><Text>Talk to the Botanist</Text><ID>923207</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 204867 + true + 250 + 250 + + 0 + + + + 300 +

8

+ 0 + + 1 + 653 + 204867 + true + 300 + 300 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 204867 + true + 55 + 55 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204867 + true + 200 + 200 + + 0 + +
+ false +
+ + 2482 + Jungle09 + 7 +

+ <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpJungle09T00.unity3d/PfGrpJungle09T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Key Finders</Text><ID>927353</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2481 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2482 + 3647 + 0 + + + 1 + 2482 + 3648 + 0 + + + 1 + 2482 + 3649 + 0 + + + 1 + 2482 + 3650 + 0 + + + 1 + 2482 + 3651 + 0 + + + 1 + 2482 + 3652 + 0 + + + 1 + 2482 + 3653 + 0 + + + 1 + 2482 + 3654 + 0 + + + 1 + 2482 + 3655 + 0 + + + 1 + 2482 + 3656 + 0 + + + 1 + 2482 + 3657 + 0 + + + 1 + 2482 + 3658 + 0 + + + + 1 + 204868 + 0 + + 3647 + Jungle09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You'll need to go to the Ship Graveyard by yourself. I'm going back to Berk to have Gobber and Gothi look at my injury before it festers. I'll catch up with a clean bill of health. Go!</Text><ID>928544</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Ship Graveyard</Text><ID>930223</ID></Title><Desc><Text>Go to the Ship Graveyard</Text><ID>930223</ID></Desc></Data> + 0 + false + + + 3648 + Jungle09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Phlegma told us you need backup! Bucket and I are ready to get our hands dirty. Come over and talk to me!</Text><ID>928547</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I'm chuffed to be looking for the missing ship of Hamish II! Actually, a lot of people say he was a bit like Hiccup.</Text><ID>928548</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch</Text><ID>923238</ID></Desc></Data> + 0 + false + + + 3649 + Jungle09T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>So, Skulder says we're looking for something north of the 'Dragon's Jaws'? I bet you're looking for a sea stack or a tall island of some sort!</Text><ID>928551</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KnifeMountain</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the 'Dragon's Jaws'</Text><ID>928549</ID></Title><Desc><Text>Look for the mountain that looks like a Dragon's Jaws</Text><ID>941767</ID></Desc></Data> + 0 + false + + + 3650 + Jungle09T04 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_Jungle09T04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I can recognize Dragon's Jaws when I see them! Now, pull out your compass and head north of the sea stack. The shipwreck should be somewhere near here.</Text><ID>928554</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Jungle09T04</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search north of the 'Dragon's Jaws'</Text><ID>928552</ID></Title><Desc><Text>Search north of the 'Dragon's Jaws' for the shipwreck</Text><ID>941768</ID></Desc></Data> + 0 + false + + + 3651 + Jungle09T05 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_UnderwaterSpawn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I don't like fishing here since the area is a bit spooky. But Bucket and I charted out this area so that my boat doesn't become a part of the graveyard!@@We charted out the [c][3eebff]ocean currents[/c][ffffff] near here. The water may look like it's standing still, but it's constantly moving in these massive rivers within the oceans. The currents are created by differences in temperature, salinity, and movement of the wind.@@Here, the currents move toward the east, so the shipwreck could have moved in that direction over the years. Can you look for a spot where the shipwreck could have moved?</Text><ID>928557</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>There! That sea stack! It's large enough to break the flow of the current. Maybe Hamish's ship is down here.</Text><ID>928558</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_UnderwaterSpawn</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search east</Text><ID>928555</ID></Title><Desc><Text>Search east</Text><ID>928555</ID></Desc></Data> + 0 + false + + + 3652 + Jungle09T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Do you see anything that might give us a clue that Hamish the Second's ship lies far below us?</Text><ID>928561</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Eureka! That looks like the tip of a mast to me. We must be on the right track!</Text><ID>928562</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Mast</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for clues of the shipwreck</Text><ID>928559</ID></Title><Desc><Text>Look for clues of the shipwreck</Text><ID>928559</ID></Desc></Data> + 0 + false + + + 3653 + Jungle09T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Bucket has the best set of lungs among us, so I'm sure he'll volunteer to dive down and find it! Come by and talk to me and we'll sort it out.</Text><ID>928565</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle09T07CS.unity3d/PfGrpJungle09T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch</Text><ID>923238</ID></Desc></Data> + 0 + false + + + 3654 + Jungle09T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Do you see anything, Bucket?</Text><ID>928568</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>It's no good, Mulch. It's really deep, and the air in my bucket makes it really hard to dive deeper. I'll keep trying.</Text><ID>932801</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Bucket is as healthy as a yak; if he can't swim to the bottom of the sea, there's not a Viking alive who can! Maybe we can tie something heavy to me with some rope. I'll have a few moments before I drown, right?</Text><ID>932904</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle09T02CS.unity3d/PfGrpJungle09T02CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MulchUnderwater</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>See if Bucket needs help finding the key</Text><ID>928566</ID></Title><Desc><Text>Listen to Bucket</Text><ID>941769</ID></Desc></Data> + 0 + false + + + 3655 + Jungle09T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Young dragon trainer, you have permission to board the ship to talk to the lovely Botanist. What a wonderful - and generous - Viking!</Text><ID>932802</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Ahoy there! Sorry for the delay but I've arrived with reinforcements. We're here to help!</Text><ID>932905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Hiccup was leaving to visit the island of Nepenthe, but don't worry. We discussed Impossible Island and figured out some solutions. He thinks we can use a [c][3eebff]diving bell[/c][ffffff] to reach the bottom of the sea!</Text><ID>932803</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBDivingApparatus.unity3d/PfUiMissionActionDBDivingApparatus</Asset><NPC>PfDWBotanist</NPC><Text>Diving bell</Text><ID>932906</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist</Text><ID>923207</ID></Desc></Data> + 0 + false + + + 3656 + Jungle09T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Have you ever taken a cup and pushed it, open side down, into water? It takes a bit more push than pushing it down open side up, but this leaves a pocket of air inside the cup. That's how a diving bell works! We'll lower the bell into the ocean with its open side faced downwards, and you'll be able to breathe the air bubble that's inside.@@Tug on the rope when you're down there if you want to get back to the top, and we'll crank you back up. Good luck... and {{input}} on the diving bell. </Text><ID>928579</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDivingBell2</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDivingBell</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the diving bell</Text><ID>928577</ID></Title><Desc><Text>{{Input}} on the diving bell</Text><ID>928577</ID></Desc></Data> + 0 + false + + + 3657 + Jungle09T11 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpJungle09T11.unity3d/PfGrpJungle09T11</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should swim around by the ocean floor and look for the key. When you are running low on air, you can return to the diving bell and breathe from the air trapped under the bell.</Text><ID>928582</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWKey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Collect</Type><Title><Text>Use the bell for air and find the key</Text><ID>928580</ID></Title><Desc><Text>Use the bell for air and find the key</Text><ID>928580</ID></Desc></Data> + 0 + false + + + 3658 + Jungle09T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This must be what you were looking for! You should return to the surface of the water by {{input}}ing on the rope tied to the diving bell.</Text><ID>928585</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Well done, {{Name}}!</Text><ID>927858</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_JohannBoat</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>{{Input}} on the rope on the bell to return to the surface</Text><ID>928583</ID></Title><Desc><Text>{{Input}} on the rope on the bell to return to the surface</Text><ID>928583</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204868 + true + 60 + 60 + + 0 + + + + 350 +

1

+ 0 + + 1 + 368 + 204868 + true + 350 + 350 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 204868 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204868 + true + 50 + 50 + + 0 + +
+ false +
+ + 2483 + Jungle10 + 7 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle10T00.unity3d/PfGrpJungle10T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Return to the Impossible</Text><ID>927355</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2482 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2483 + 2484 + 0 + + + 1 + 2483 + 3660 + 0 + + + 1 + 2483 + 3661 + 0 + + + 1 + 2483 + 3662 + 0 + + + 1 + 2483 + 3663 + 0 + + + 1 + 2483 + 3664 + 0 + + + 1 + 2483 + 3665 + 0 + + + 1 + 2483 + 3751 + 0 + + + 1 + 2483 + 3752 + 0 + + + 1 + 2483 + 3753 + 0 + + + 1 + 2483 + 3754 + 0 + + + 1 + 2483 + 3755 + 0 + + + 1 + 2483 + 3666 + 0 + + + 1 + 2483 + 3667 + 0 + + + 1 + 2483 + 3668 + 0 + + + + 1 + 204869 + 0 + + 2484 + Jungle10T01 + 7 +

2483

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the supply box</Text><ID>927354</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2484 + 3659 + 0 + + + + 1 + 204914 + 0 + + 3659 + Jungle10T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You need to get back to the cenote and make sure Skulder and the Krayfin are okay. Now, Hiccup gave me a prototype design of his for you to use. {{Input}} on the supply box on Johann's boat.</Text><ID>928589</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSupplyBox</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSupplyBox</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the supply box</Text><ID>927354</ID></Title><Desc><Text>{{Input}} on the supply box</Text><ID>927354</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13245 + + 1 + 5458 + 204914 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13246 + + 1 + 5459 + 204914 + true + 1 + 1 + + 0 + +
+ false + + + 3660 + Jungle10T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>With that, you can glide down safely into the cenote and avoid the angry Flame Whippers. +I wish I could help, but this injury is going to slow you down. Go back to the cenote on Impossible Island. Thorspeed!</Text><ID>928592</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CenoteOpening</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Impossible Island and fly above the Cenote</Text><ID>928590</ID></Title><Desc><Text>Return to Impossible Island and fly above the Cenote</Text><ID>928590</ID></Desc></Data> + 0 + false + + + 3661 + Jungle10T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>With the flight suit on, you should be able to glide down into the cenote and land safely on the bridge.</Text><ID>928595</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuinsDoor</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Glide down safely onto the bridge</Text><ID>928593</ID></Title><Desc><Text>Glide down safely onto the bridge</Text><ID>928593</ID></Desc></Data> + 0 + false + + + 3662 + Jungle10T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Flame Whippers are nowhere in sight. You should get to the door under the Eruptodon statue before the dragons discover you.</Text><ID>928598</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuinsDoor</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get to the door</Text><ID>928596</ID></Title><Desc><Text>Get to the door</Text><ID>928596</ID></Desc></Data> + 0 + false + + + 3663 + Jungle10T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like you will need to solve the puzzle with the cog as a key. You need to {{input}} on the door.</Text><ID>928601</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_RuinsDoor</Value></Pair><Pair><Key>Name</Key><Value>DOCogs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_cenoteGate2</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the door to insert the key</Text><ID>928599</ID></Title><Desc><Text>{{Input}} on the door and solve the puzzle</Text><ID>941770</ID></Desc></Data> + 0 + false + + + 3664 + Jungle10T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Is that the door I hear? Oh-ho-ho, I bet the key was with Hamish's shipwreck, wasn't it? That rascally devil! +The Flame Whippers don't seem to have calmed down any in your absence. Don't worry; I have a plan. Come to my humble cage!</Text><ID>928604</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I've noticed that the Flame Whippers stare at the Eruptodon statue with caution. They're worried. If we light a fire in the mouth of the statue, it might scare the dragons and make them run away!</Text><ID>928605</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle10T06CS.unity3d/PfGrpJungle10T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArchaeologistCage</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Archaeologist</Text><ID>930376</ID></Title><Desc><Text>Look for the Archaeologist</Text><ID>930376</ID></Desc></Data> + 0 + false + + + 3665 + Jungle10T07A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fire is a [c][3eebff]chemical reaction[/c][ffffff] that happens when these elements are combined at the right mixture: oxygen (in the air), some sort of fuel (like wood, oil, or gas), and heat. If you remove one or more of these elements, the fire gets extinguished.@@You need to climb the cliff to the statue and find a place to light a fire. Be careful: the Flame Whippers are waiting for you! I'll be cheering you on from here. (I've started to get a bit comfortable in my cage.)</Text><ID>932804</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBFireTriangle.unity3d/PfUiMissionActionDBFireTriangle</Asset><NPC>PfDWArchaeologist</NPC><Text>Fire</Text><ID>10490</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonPath01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb the cliff to the golden Eruptodon statue</Text><ID>928607</ID></Title><Desc><Text>Climb the cliff to the golden Eruptodon statue</Text><ID>928607</ID></Desc></Data> + 0 + false + + + 3666 + Jungle10T08 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle10T08.unity3d/PfGrpJungle10T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like the mouth of the statue is full of some sort of oil, and a flint and steel are nearby that can produce a spark of heat. {{Input}} on the flint and steel and light a spark over the oil.</Text><ID>928612</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle10T01CS.unity3d/PfGrpJungle10T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWEruptodonBrazier</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWEruptodonBrazier</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the brazier to light the fire in the Eruptodon's mouth</Text><ID>928610</ID></Title><Desc><Text>Light the fire in the Eruptodon's mouth</Text><ID>941771</ID></Desc></Data> + 0 + false + + + 3667 + Jungle10T09 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle10T09.unity3d/PfGrpJungle10T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It's working! You should go back to the Archaeologist and let him out of his cage.</Text><ID>928615</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Huzzah! So, the Defenders left materials to create a fire at the statue? They must have known it was a way for them to live in peace with these dragons without fighting them...</Text><ID>928616</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWCageArchaeologist</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCageArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the cage and free the Archaeologist</Text><ID>928613</ID></Title><Desc><Text>{{Input}} on the cage and free the Archaeologist</Text><ID>928613</ID></Desc></Data> + 0 + false + + + 3668 + Jungle10T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'll make sure that the fire in the statue remains lit. You can go with the Krayfin and make sure that he finds... whatever it is he's looking for. +I know you can do it, {{Name}}!</Text><ID>928619</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The horrible smell is getting worse. You must be getting closer...</Text><ID>928620</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the next room with the baby Krayfin</Text><ID>928617</ID></Title><Desc><Text>Enter the next room with the baby Krayfin</Text><ID>928617</ID></Desc></Data> + 0 + false + + + 3751 + Jungle10T07B + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonPath02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928629</ID></Title><Desc><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928623</ID></Desc></Data> + 0 + false + + + 3752 + Jungle10T07C + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonPath03</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928629</ID></Title><Desc><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928623</ID></Desc></Data> + 0 + false + + + 3753 + Jungle10T07D + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonPath04</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928629</ID></Title><Desc><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928623</ID></Desc></Data> + 0 + false + + + 3754 + Jungle10T07E + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonPath05</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928629</ID></Title><Desc><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928623</ID></Desc></Data> + 0 + false + + + 3755 + Jungle10T07F + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EruptodonPath06</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928629</ID></Title><Desc><Text>Follow the cliff path to the Eruptodon statue</Text><ID>928623</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204869 + true + 50 + 50 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204869 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 204869 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204869 + true + 200 + 200 + + 0 + +
+ false +
+ + 2485 + Jungle14 + 45 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Congratulations!</Text><ID>10521</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2499 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2485 + 3669 + 0 + + + 1 + 2485 + 3670 + 0 + + + 1 + 2485 + 3671 + 0 + + + 1 + 2485 + 3672 + 0 + + + + 1 + 204870 + 0 + + 3669 + Jungle14T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Trust me. The story of {{Name}} and the Krayfin is far from over. You helped him when his need was the greatest, and I know your paths will cross again when the time is right. +Bucket wanted to hear all your stories when you came back. Please talk to him and let him know what happened.</Text><ID>928732</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Wow! Impossible Island sounds amazing. I want to go there someday... but I don't think Whip &amp; Lash would like that smell any better than {{dragon name}} did.</Text><ID>928733</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Thank Bucket for his help</Text><ID>928730</ID></Title><Desc><Text>Talk to Bucket</Text><ID>923073</ID></Desc></Data> + 0 + false + + + 3670 + Jungle14T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I've always wondered: what does it feel like at the bottom of the ocean? The fish don't seem to mind being in the dark. Did you feel close to your inner Tidal Class dragon? Maybe you could ask Mulch if I can go down there while you tell him what happened.</Text><ID>928736</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Bucket needs to stick up here on land and boat with me, where I can look after him. +The wee dragon got what he wanted then, did he? Good. You did a great thing, {{greeting}}. Big dragons need to reign over their own waters! He would have never found it without you.</Text><ID>928737</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Thank Mulch for his help</Text><ID>928734</ID></Title><Desc><Text>Thank Mulch for his help</Text><ID>928734</ID></Desc></Data> + 0 + false + + + 3671 + Jungle14T03 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You would have never made it through without the help of bumbling Skulder! He's back at the Lookout with Phlegma.</Text><ID>928740</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}, my good and dear friend! You wouldn't believe the commotion I heard shortly after you entered the ruins. It sounded like the world was crashing down.@@I was worried for you, but Phlegma convinced me you were going to be just fine. And, just like everything else she says, she was right.</Text><ID>928741</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist at the Lookout</Text><ID>928738</ID></Title><Desc><Text>Talk to the Archaeologist at the Lookout</Text><ID>928738</ID></Desc></Data> + 0 + false + + + 3672 + Jungle14T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Phlegma came back to Impossible Island to check up on us. Goodness me - she flew all the way despite her gruesome injury to help us. She is exactly the stalwart Viking we need leading the School. Will you tell her what happened?</Text><ID>928744</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I've been pondering about the force of will of the little Krayfin. He knew that he needed to find the dragon bloom, and his sense receptors let him track it over miles and miles of open ocean. How fascinating...</Text><ID>928745</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist</Text><ID>923207</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 204870 + true + 150 + 150 + + 0 + + + + 70 +

2

+ 0 + + 1 + 524 + 204870 + true + 70 + 70 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 204870 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204870 + true + 50 + 50 + + 0 + +
+ false +
+ + 2486 + Jungle15 + 7 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_MeetingSpot</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpJungle15T00.unity3d/PfGrpJungle15T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpJungle15T06.unity3d/PfGrpJungle15T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpJungle15T05.unity3d/PfGrpJungle15T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Flame Whipper Unleashed!</Text><ID>927372</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2485 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2486 + 3673 + 0 + + + 1 + 2486 + 3674 + 0 + + + 2 + 2486 + 2487 + 0 + + + 1 + 2486 + 3676 + 0 + + + 2 + 2486 + 2488 + 0 + + + 1 + 2486 + 3678 + 0 + + + 1 + 2486 + 3679 + 0 + + + 1 + 2486 + 3680 + 0 + + + 2 + 2486 + 2489 + 0 + + + 2 + 2486 + 2490 + 0 + + + 2 + 2486 + 2491 + 0 + + + 1 + 2486 + 3686 + 0 + + + 2 + 2486 + 2492 + 0 + + + 1 + 2486 + 3688 + 0 + + + + 1 + 204871 + 0 + + 2487 + Jungle15T03 + 7 +

2486

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2487 + 3675 + 0 + + + + 1 + 204903 + 0 + + 3675 + Jungle15T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Every liquid has a value on the [c][3eebff]pH scale[/c][ffffff], a scale from 0 to 14 that measures how [c][3eebff]acidic[/c][ffffff] or [c][3eebff]basic[/c][ffffff] the liquid is.  Acidic liquids like lemon juice have more [c][3eebff]hydrogen[/c][ffffff] and tend to be sour.@@Basic solutions like baking soda have more [c][3eebff]hydroxide[/c][ffffff] and tend to be bitter.@@Numbers below 7 on the scale are acidic while numbers above 7 are basic. Liquids on either end of the pH scale (0 or 14) are very dangerous and need to be handled with care!@@We can neutralize the danger of this poison by making it a [c][3eebff]neutral[/c][ffffff] liquid--that is, a 7 on the pH scale. First, we'll need to find out where it is on the pH scale, then we add other liquids into the solution. To do that, we'll need red cabbage. Can you ask the Botanist for some?</Text><ID>928748</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I didn't know that red cabbage can be useful in that way. Here, have all you may need.</Text><ID>928749</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask the Botanist for red cabbages</Text><ID>928746</ID></Title><Desc><Text>Ask the Botanist for red cabbages</Text><ID>928746</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13201 + + 1 + 5453 + 204903 + true + 1 + 1 + + 0 + +
+ false + + + 2488 + Jungle15T05 + 7 +

2486

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Click on Sweet Death</Text><ID>927364</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2488 + 3677 + 0 + + + + 1 + 204872 + 0 + + 3677 + Jungle15T05 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpJungle15T05.unity3d/PfGrpJungle15T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Chase down the Sweet Death and {{input}} on her to collect her saliva.</Text><ID>928752</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSweetDeathNPC</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSweetDeathNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Play tag with the Sweet Death and {{input}} her</Text><ID>928750</ID></Title><Desc><Text>{{Input}} on the Sweet Death</Text><ID>941780</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13202 + + 1 + 5442 + 204872 + true + 1 + 1 + + 0 + +
+ false +
+ + 2489 + Jungle15T09 Experiment + 7 +

2486

+ <Data><Offer><Type>Popup</Type><ID>927366</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Perfect! This solution will change color to match the pH level of the liquid. Then, we can change the pH level of the liquid by adding precise levels of acidic and basic liquids through a process called [c][3eebff]titration[/c][ffffff]. Come on, I'll show you! Let's go into [c][3eebff]the Lab.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DOQuestLab1.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Go into the Lab</Text><ID>922980</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2489 + 3681 + 0 + + + 1 + 2489 + 3682 + 0 + + + 1 + 2489 + 3683 + 0 + + + + 1 + 0 + 0 + + 3681 + Jungle15T09A + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TitrateSoap</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the lab</Text><ID>922980</ID></Title><Desc><Text>Go into the lab for this titration experiment</Text><ID>941781</ID></Desc></Data> + 0 + false + + + 3682 + Jungle15T09B + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TitrateVinegar</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the lab</Text><ID>922980</ID></Title><Desc><Text>Go into the lab for the titration experiment</Text><ID>941782</ID></Desc></Data> + 0 + false + + + 3683 + Jungle15T09C + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TitrateSweetDeath</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Go into the Lab</Text><ID>926596</ID></Desc></Data> + 0 + false + + false +
+ + 2490 + Jungle15T10 + 7 +

2486

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2490 + 3684 + 0 + + + + 1 + 204873 + 0 + + 3684 + Jungle15T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now that we understand how to find the pH level, we can use the titration machine to neutralize the Flame Whipper's poison. Can you talk to Fishlegs and get a sample?</Text><ID>928761</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I scraped this off the tail while you were getting the Lab ready. I hope you can make the antidote; Snotlout keeps twitching and it's a bit creepy. You doing okay there, Snotlout?</Text><ID>932806</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>...</Text><ID>932908</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Then again, this is the best conversation we've ever had.</Text><ID>932909</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13203 + + 1 + 5443 + 204873 + true + 1 + 1 + + 0 + +
+ false +
+ + 2491 + Jungle15T11 Experiment + 7 +

2486

+ <Data><Offer><Type>Popup</Type><ID>927369</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Okay! Let's find how to neutralize the Flame Whipper's tail poison. Enter [c][3eebff]the Lab[/c][ffffff] when you're ready.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927370</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow. You've managed to change the pH value of the poison to 7 into a neutral solution! Now we can make an antidote... one moment...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Enter the Lab</Text><ID>927576</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2491 + 3685 + 0 + + + + 1 + 204946 + 0 + + 3685 + Jungle15T11 + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TitratePoison</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Enter the Lab</Text><ID>927576</ID></Title><Desc><Text>Enter the Lab</Text><ID>927496</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13266 + + 1 + 5462 + 204946 + true + 1 + 1 + + 0 + +
+ false +
+ + 2492 + Jungle15T13 + 7 +

2486

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Click on the Flame Whipper</Text><ID>927371</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2492 + 3687 + 0 + + + + 1 + 204909 + 0 + + 3687 + Jungle15T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, the perfect silence couldn't last forever. {{Name}}, thank you for helping out. It looks like the Flame Whipper is a bit shaken up by her adventures today and left.@@She seems to trust you the most out of all the Vikings here. Can you find her and bond with her? Approach her slowly like Hiccup has taught you and {{input}} on her.</Text><ID>928769</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWFlameWhipperNPC</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFlameWhipperNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Flame Whipper</Text><ID>928767</ID></Title><Desc><Text>{{Input}} on the Flame Whipper</Text><ID>928767</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13258 + + 1 + 5455 + 204909 + true + 1 + 1 + + 0 + +
+ false +
+ + 3673 + Jungle15T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>The Flame Whipper you brought back is a handful, that one. She's running around and getting her snout into everything! Will you find her and make sure she's not causing trouble?</Text><ID>928772</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hi! I've been keeping an eye on the Flame Whipper (and of course, writing down my observations!). She's very interesting, but she has very clammy skin. I wonder if she has any natural defense mechanisms...</Text><ID>932807</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You think this twerp is interesting? I think she'd look more interesting upside down-</Text><ID>932910</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle15T01CS.unity3d/PfGrpJungle15T01CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MeetingSpot</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Flame Whipper at the School</Text><ID>928770</ID></Title><Desc><Text>Look for the Flame Whipper at the School</Text><ID>928770</ID></Desc></Data> + 0 + false + + + 3674 + Jungle15T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWFlameWhipperNPC</Asset><Location>PfMarker_Jungle15Escort</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow! This is a defense mechanism called [c][3eebff]autotomy[/c][ffffff]. The Flame Whipper has 'fracture planes' between the vertebrae in her tail that allows her to 'drop' her tail when she is threatened. The tail will wiggle, attract predators and give the Flame Whipper time to run away... and the tail is poisonous.@@Don't worry; these dragons and lizards can grow their tail back. +I guess we should try to help Snotlout. Can you {{input}} on the Flame Whipper and lead her to Heather?</Text><ID>928777</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsGenPraise02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey there, little lady! Paralyzing poison, detachable tail, and a nasty fireball... you have a deadly arsenal, don't you?@@Lots of animals in tropical rainforest biomes use deadly poisons because the environment teems with life. The increased population means there's an abundance of predators to worry about.</Text><ID>928778</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HodsLab</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFlameWhipperNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Flame Whipper and lead her to Heather</Text><ID>928775</ID></Title><Desc><Text>{{Input}} on the Flame Whipper and lead her to Heather</Text><ID>928775</ID></Desc><Reminder><Text>Stay close to the Flame Whipper!</Text><ID>936322</ID></Reminder><Failure><Text>Oh no! You left the Flame Whipper behind!</Text><ID>936323</ID></Failure></Data> + 0 + false + + + 3676 + Jungle15T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You need other samples to test in the Lab with Heather. I'll gather some materials, but I want you to find some Sweet Death saliva as well. It has some interesting attributes. You'll find one in the Wilderness.</Text><ID>928781</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle15T05CS.unity3d/PfGrpJungle15T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Sweet Death in the Wilderness</Text><ID>928779</ID></Title><Desc><Text>Find the Sweet Death in the Wilderness</Text><ID>928779</ID></Desc></Data> + 0 + false + + + 3678 + Jungle15T06 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Waterwheels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should meet Heather by the Lab to start the experiment.</Text><ID>928784</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great timing! The process to test the liquid pH is ready to go.</Text><ID>928785</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13201</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Meet Heather at the side of the Lab</Text><ID>928782</ID></Title><Desc><Text>Meet Heather by the cauldron at the side of the Lab</Text><ID>941783</ID></Desc></Data> + 0 + false + + + 3679 + Jungle15T07 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Waterwheels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We can use red cabbage juice to test the pH values of other liquids! It's really interesting solution that changes red when matched with acidic solutions, or blue with basic solutions. Can you light a fire under the cauldron?</Text><ID>928788</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great! Boiling the cabbage helps us extract the juice. It's working already!</Text><ID>928789</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWCabbagePot</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCabbagePot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Light a fire under the cauldron</Text><ID>928786</ID></Title><Desc><Text>Light a fire under the cauldron</Text><ID>928786</ID></Desc></Data> + 0 + false + + + 3680 + Jungle15T08 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RSDATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Waterwheels</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now, we can't exactly test solutions with chunks of cabbage still floating around. {{Input}} on the cauldron and fish the cabbage pieces out of there.</Text><ID>928792</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWCabbagePot</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCabbagePot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the pot of cabbage</Text><ID>928790</ID></Title><Desc><Text>{{Input}} on the pot of cabbage</Text><ID>928790</ID></Desc></Data> + 0 + false + + + 3686 + Jungle15T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Can you take this over to Snotlout and {{input}} on him to apply the antidote?</Text><ID>928795</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Keep that demon away from me! My body is tingling and I can't feel my toes. Are my toes still there? My glorious Snotlout sausage toes...</Text><ID>928796</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutUpset02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Snotlout and apply the antidote</Text><ID>928793</ID></Title><Desc><Text>{{Input}} on Snotlout and apply the antidote</Text><ID>928793</ID></Desc></Data> + 0 + false + + + 3688 + Jungle15T14 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You've bonded with the Flame Whipper! Valka would be very interested to meet your dragon.</Text><ID>928799</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I've never seen a dragon like you before, little one. You're adorable and amazing! +You may have a lot of natural defenses, but you have a lot of love to share. I know that {{Name}} will prove worthy of it.</Text><ID>928800</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13202</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13203</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13266</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 204871 + true + 350 + 350 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 204871 + true + 45 + 45 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204871 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204871 + true + 350 + 350 + + 0 + +
+ false +
+ + 2493 + Jungle16 + 45 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle16T00EXT.unity3d/PfGrpJungle16T00EXT</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpJungle16T00.unity3d/PfGrpJungle16T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Fate of the Leviathan</Text><ID>927373</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2486 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2493 + 3689 + 0 + + + 1 + 2493 + 3690 + 0 + + + 1 + 2493 + 3691 + 0 + + + 1 + 2493 + 3692 + 0 + + + 1 + 2493 + 3693 + 0 + + + + 1 + 204874 + 0 + + 3689 + Jungle16T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We need to give the Krayfin time to figure out his own strength; Impossible Island can be that haven for him as he grows into his birthright power. I am sure Hiccup will want to visit once he returns from Nepenthe. You should wait for him by his house at Berk!</Text><ID>928803</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle16T02CS.unity3d/PfGrpJungle16T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup_01</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Wait for Hiccup at his house</Text><ID>928801</ID></Title><Desc><Text>Talk to Hiccup at Berk</Text><ID>941749</ID></Desc></Data> + 0 + false + + + 3690 + Jungle16T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. You had as big an adventure as I did! I trusted you, and you came through in a really big way. You even figured out what the Krayfin needed at the labyrinth without anyone to help you!@@I wonder how much the Krayfin has grown on his own. I hope he's become a confident dragon. Come on, let's check up on him. Toothless and I will meet you at Impossible Island!</Text><ID>928806</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>'Impossible Island' feels just like any other island, doesn't it bud? I wouldn't have guessed that this bland island hides a beautiful cenote secret. Toothless and I can't wait to see it!</Text><ID>928807</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Impossible Island</Text><ID>929417</ID></Title><Desc><Text>Go to Impossible Island</Text><ID>929417</ID></Desc></Data> + 0 + false + + + 3691 + Jungle16T03 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, {{input}} on me and lead on, explorer!</Text><ID>928810</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. Your descriptions didn't do this place justice. This is unlike any place I've ever seen. +Now... if I were a baby leviathan, where would I hide?</Text><ID>928811</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle16T03CS.unity3d/PfGrpJungle16T03CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgeOfCenoteHiccup</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Hiccup and lead him to the cenote</Text><ID>928808</ID></Title><Desc><Text>{{Input}} on Hiccup and lead him to the cenote</Text><ID>928808</ID></Desc><Reminder><Text>Don't leave Hiccup behind!</Text><ID>936324</ID></Reminder><Failure><Text>Oh no! You left Hiccup behind!</Text><ID>936325</ID></Failure></Data> + 0 + false + + + 3692 + Jungle16T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Aha, here you are! Come on down, {{Name}} - you're lagging behind!</Text><ID>928814</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There, there, big guy... we're happy to see you too. +I think he's outgrown the nickname of 'baby' Krayfin, and then some!</Text><ID>928815</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LeviathanTeen</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Glide down to the bridge</Text><ID>928812</ID></Title><Desc><Text>Glide down to the bridge</Text><ID>928812</ID></Desc></Data> + 0 + false + + + 3693 + Jungle16T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>His new diet is agreeing with him! Ha ha. Don't be a stranger, {{Name}}, you should come close and {{input}} on him!</Text><ID>928818</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle16T05CS.unity3d/PfGrpJungle16T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Krayfin</Text><ID>933555</ID></Title><Desc><Text>{{Input}} on the Krayfin</Text><ID>933555</ID></Desc></Data> + 0 + false + + + 400 +

1

+ 0 + + 1 + 418 + 204874 + true + 400 + 400 + + 0 + + + + 55 +

2

+ 0 + + 1 + 673 + 204874 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204874 + true + 50 + 50 + + 0 + +
+ + 400 +

8

+ 0 + + 1 + 1750 + 204874 + true + 400 + 400 + + 0 + +
+ false +
+ + 2494 + Jungle_Misc01 + 4 +

+ <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpJungleMisc01T00.unity3d/PfGrpJungleMisc01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>You've Got Terror-Mail</Text><ID>927341</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2475 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2494 + 3694 + 0 + + + 1 + 2494 + 3695 + 0 + + + 1 + 2494 + 3696 + 0 + + + 2 + 2494 + 2495 + 0 + + + 1 + 2494 + 3698 + 0 + + + 1 + 2494 + 3699 + 0 + + + 1 + 2494 + 3700 + 0 + + + 1 + 2494 + 3701 + 0 + + + 1 + 2494 + 3702 + 0 + + + 1 + 2494 + 3703 + 0 + + + 1 + 2494 + 3704 + 0 + + + + 1 + 204875 + 0 + + 2495 + Jungle_Misc01T04 + 4 +

2494

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Speak with Mala</Text><ID>927340</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2495 + 3697 + 0 + + + + 1 + 204915 + 0 + + 3697 + Jungle_Misc01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>{{Name}}! I'm glad you got the message.</Text><ID>928197</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It's great to see you again, especially in these circumstances. Who's this?</Text><ID>932792</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I'm glad you asked! I am Eret, son of…</Text><ID>932894</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>No time for an elaborate intro, sailor. Three of my best Defenders were thrown overboard in the crash.</Text><ID>932895</ID><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Mala</Text><ID>927340</ID></Title><Desc><Text>Speak with Mala</Text><ID>928195</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13261 + + 1 + 5460 + 204915 + true + 1 + 1 + + 0 + +
+ false + + + 3694 + Jungle_Misc01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>If we want to change everyone's minds on dragons, we need to show everyone that they aren't evil. We've been using a Terrible Terror mail system to send messages to the other islands. Eret volunteered to take point on the project. Can you ask him how it's going?</Text><ID>928203</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ahoy there, {{Name}}. Are you here to see me off?</Text><ID>928204</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungleMisc01T01CS.unity3d/PfGrpJungleMisc01T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>See if Eret has everything for his voyage at the Training Grounds</Text><ID>928201</ID></Title><Desc><Text>Talk to Eret at the Training Grounds</Text><ID>933489</ID></Desc></Data> + 0 + false + + + 3695 + Jungle_Misc01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Thor's britches, Queen Mala needs our help! The message says that her ship was hit by a storm at Helheim's Gate. Well, I'm not one to leave royalty waiting. Let's go!</Text><ID>928207</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Helheim's Gate</Text><ID>928205</ID></Title><Desc><Text>Go to Helheim's Gate</Text><ID>928205</ID></Desc></Data> + 0 + false + + + 3696 + Jungle_Misc01T03 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDo</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>According to the note, the storm pushed them northeast. Open your compass and let's find Mala!</Text><ID>928210</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MalaWreck</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head northeast to find Mala</Text><ID>928208</ID></Title><Desc><Text>Head northeast to find Mala</Text><ID>928208</ID></Desc></Data> + 0 + false + + + 3698 + Jungle_Misc01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>When Defenders get lost, we whistle a specific note so we can be found over the sounds of the rumbling volcano at our island. Hiccup showed me his 'Storm Ear,' so I made a tuning fork that is attuned to it. Perhaps it will help you find my men.</Text><ID>928213</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Defender01</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Defender</Text><ID>928211</ID></Title><Desc><Text>Find the Defender</Text><ID>928211</ID></Desc></Data> + 0 + false + + + 3699 + Jungle_Misc01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Use your dragon's fire on the sea stack to signal Eret's ship.</Text><ID>928216</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Thank the stars we found you!</Text><ID>932793</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWNinjaMale</NPC><Text>I knew you would, my queen!</Text><ID>932896</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSignal</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSignal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Tell your dragon to shoot on the rock as a signal</Text><ID>928214</ID></Title><Desc><Text>Tell your dragon to shoot on the rock as a signal</Text><ID>928214</ID></Desc></Data> + 0 + false + + + 3700 + Jungle_Misc01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Miss Queen Mala, or whatever I'm supposed to call you, I'm not any run-of-the-mill sailor. I'm the greatest dragon wrangler-</Text><ID>932794</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>I care little about your self-proclaimed titles, sailor. I am focused on the safety of my people. +{{Name}}, use the Storm Ear to find the second survivor.</Text><ID>932897</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Defender02</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the next survivor</Text><ID>928219</ID></Title><Desc><Text>Find the next survivor</Text><ID>928219</ID></Desc></Data> + 0 + false + + + 3701 + Jungle_Misc01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWNinjaFemale</NPC><Text>Your name is {{Name}} and you're here to rescue me? That's fantastic. You should signal my Queen with your dragon.</Text><ID>928225</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Nice one, {{Name}}. +I've decided that the Queen can call me whatever she likes - as long as she remembers my name!</Text><ID>928226</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSignal2</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSignal2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Light a signal fire on the seastack with your dragon</Text><ID>928223</ID></Title><Desc><Text>Light a signal fire on the seastack</Text><ID>941745</ID></Desc></Data> + 0 + false + + + 3702 + Jungle_Misc01T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>One last Defender is out there in the water. Let's find him.</Text><ID>928229</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Defender03</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the final survivor</Text><ID>928227</ID></Title><Desc><Text>Find the final survivor</Text><ID>928227</ID></Desc></Data> + 0 + false + + + 3703 + Jungle_Misc01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Signal Eret's ship with your dragon to rescue the final survivor.</Text><ID>928232</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>My gracious thanks... the Defenders owe you a great debt.</Text><ID>928233</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSignal3</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSignal3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Signal Eret with a fire at the top of the seastack</Text><ID>928230</ID></Title><Desc><Text>Signal Eret with a fire at the top of the seastack</Text><ID>928230</ID></Desc></Data> + 0 + false + + + 3704 + Jungle_Misc01T11 + <Data><Setup><Scene>HelheimsGateDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Another job well done! I hate to rain on the reunion, but we've managed to lose all bearings inside this hazy maze. I believe we need to head south or southwest of here... {{Name}}, could you use your compass and find the way out?</Text><ID>928236</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>We're out! I mean... of course we're out. I never doubted us for a second. I'll sail these Defenders back to their island and see you next time around. Our adventures seem to be getting better and better, {{Name}}!</Text><ID>928237</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HelheimsGateDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AvatarStart01</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>13261</ItemID><Quantity>1</Quantity></RemoveItem><Type>Visit</Type><Title><Text>Use your compass and head south-southwest to find the exit</Text><ID>928234</ID></Title><Desc><Text>Use your compass and head south-southwest</Text><ID>941746</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 204875 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204875 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 204875 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204875 + true + 50 + 50 + + 0 + +
+ false +
+ + 2496 + Jungle11 + 52 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Labyrinth</Text><ID>927359</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2483 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2496 + 3707 + 0 + + + 1 + 2496 + 3708 + 0 + + + 1 + 2496 + 3710 + 0 + + + 1 + 2496 + 3711 + 0 + + + 1 + 2496 + 3712 + 0 + + + 1 + 2496 + 3713 + 0 + + + 1 + 2496 + 3714 + 0 + + + 1 + 2496 + 3715 + 0 + + + 2 + 2496 + 2497 + 0 + + + 1 + 2496 + 3719 + 0 + + + 1 + 2496 + 3763 + 0 + + + 1 + 2496 + 3720 + 0 + + + 1 + 2496 + 3721 + 0 + + + 1 + 2496 + 3722 + 0 + + + 1 + 2496 + 3745 + 0 + + + + 1 + 204876 + 0 + + 2497 + Jungle11T09 + 52 +

2496

+ <Data><Offer><Type>Popup</Type><ID>927357</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The baby Krayfin wants to continue forward... but it's underwater! How deep does it go? +Perhaps you can find a way to create a device to help you breathe underwater. After all, you have Hiccup's designs with you. You should find pieces that will help you create a breathing device!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>927358</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This just might work!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Find breathing apparatus</Text><ID>927356</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2497 + 3716 + 0 + + + 1 + 2497 + 3717 + 0 + + + 1 + 2497 + 3718 + 0 + + + + 1 + 204908 + 0 + + 3716 + Jungle11T09A + <Data><Setup><Scene>HubCenoteINT02DO</Scene><Asset>RS_DATA/PfGrpJungle11T09A.unity3d/PfGrpJungle11T09A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>These bellows are able to pump air with each press. If the baby Krayfin can keep a steady flow going, you'll have air through your underwater journey... +It's worth a shot.</Text><ID>928633</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBellows</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for a way to pump air</Text><ID>928631</ID></Title><Desc><Text>Look for a way to pump air</Text><ID>928631</ID></Desc></Data> + 0 + false + + + 3717 + Jungle11T09B + <Data><Setup><Scene>HubCenoteINT02DO</Scene><Asset>RS_DATA/PfGrpJungle11T09B.unity3d/PfGrpJungle11T09B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This hose could transport the air from the bellows to your head!</Text><ID>928636</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWHose</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for a way to generate air</Text><ID>928634</ID></Title><Desc><Text>Look for a way to generate air</Text><ID>928634</ID></Desc></Data> + 0 + false + + + 3718 + Jungle11T09C + <Data><Setup><Scene>HubCenoteINT02DO</Scene><Asset>RS_DATA/PfGrpJungle11T09C.unity3d/PfGrpJungle11T09C</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This is great! You should be able to fit this over your head and keep a steady flow of air coming into the dome.</Text><ID>928639</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWLantern</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for a container to hold air over your head</Text><ID>928637</ID></Title><Desc><Text>Look for a container to hold air</Text><ID>941772</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13257 + + 1 + 5456 + 204908 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13259 + + 1 + 5457 + 204908 + true + 1 + 1 + + 0 + +
+ false + + + 3707 + Jungle11T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKrayfinBaby</NPC><Text>It looks like it will be just you and the baby Krayfin as you explore the ruins. You should venture forward into the room.</Text><ID>928642</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PlatformingEntrance</Value></Pair><Pair><Key>Name</Key><Value>SwitchOn</Value></Pair><Pair><Key>ItemName</Key><Value>FirstSwitch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Enter the maze</Text><ID>928640</ID></Title><Desc><Text>Enter the maze</Text><ID>928640</ID></Desc></Data> + 0 + false + + + 3708 + Jungle11T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKrayfinBaby</NPC><Text>Whoa! + +You should see if the tower will allow you to explore deeper in.</Text><ID>928645</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FirstStatue</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Jump on the platforms and explore the chamber</Text><ID>928643</ID></Title><Desc><Text>Jump on the platforms and explore the chamber</Text><ID>928643</ID></Desc></Data> + 0 + false + + + 3710 + Jungle11T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKrayfinBaby</NPC><Text>The statue looks like it might be moveable. You should push the statue onto the switch... maybe that will help you get to the next room.</Text><ID>928648</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle11T03CS.unity3d/PfGrpJungle11T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Bridge</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Push the statue onto the switch and continue into the chamber</Text><ID>928646</ID></Title><Desc><Text>Push the statue onto the switch and continue into the chamber</Text><ID>928646</ID></Desc></Data> + 0 + false + + + 3711 + Jungle11T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Wow! The Krayfin knew exactly how to help you get further through the maze. You're in this together...</Text><ID>928651</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CogDoor</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get to the door</Text><ID>928596</ID></Title><Desc><Text>Get to the door</Text><ID>928596</ID></Desc></Data> + 0 + false + + + 3712 + Jungle11T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This area seems deadly, but you need to brave its dangers to open this door. It seems like the pieces to open the door may be scattered around the room...</Text><ID>928654</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ElevatorEntrance</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the missing pieces and get through the door</Text><ID>928652</ID></Title><Desc><Text>Get to a good vantage point to look at the room</Text><ID>941773</ID></Desc></Data> + 0 + false + + + 3713 + Jungle11T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>These strange mechanisms are barring the way. You need to solve them as you continue deeper into the tower.</Text><ID>928657</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle11T06CS.unity3d/PfGrpJungle11T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FallenStatue</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Make your way to the fallen statue</Text><ID>928655</ID></Title><Desc><Text>Make your way to the fallen statue</Text><ID>928655</ID></Desc></Data> + 0 + false + + + 3714 + Jungle11T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The panels seem to open doors. You should look for a way to activate more panels at the same time to continue!</Text><ID>928660</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle11T07CS.unity3d/PfGrpJungle11T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FinalPuzzle</Value></Pair><Pair><Key>Name</Key><Value>SwitchOn</Value></Pair><Pair><Key>ItemName</Key><Value>FinalDoorSwitch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Solve the puzzle contraption</Text><ID>928658</ID></Title><Desc><Text>Solve the puzzle contraption</Text><ID>928658</ID></Desc></Data> + 0 + false + + + 3715 + Jungle11T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You are so close! You need to continue into the labyrinth to find the answer to the Krayfin's urgent travels.</Text><ID>928663</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Workshop</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find an exit</Text><ID>928661</ID></Title><Desc><Text>Find an exit</Text><ID>928661</ID></Desc></Data> + 0 + false + + + 3719 + Jungle11T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It's the moment of truth! You should get to the flooded corridor.</Text><ID>928666</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle11T10CS.unity3d/PfGrpJungle11T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDiveHelmetTrigger</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDiveHelmetTrigger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go to the flooded entrance and {{input}} on the helmet</Text><ID>928664</ID></Title><Desc><Text>Go to the entrance of the tunnel</Text><ID>941774</ID></Desc></Data> + 0 + false + + + 3720 + Jungle11T11B + <Data><Setup><Scene>HubCenoteINT02DO</Scene><Asset>RS_DATA/PfGrpJungle11T11.unity3d/PfGrpJungle11T11</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like the way out is barred. Is the key somewhere in this flooded area?</Text><ID>928669</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWKey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the key</Text><ID>928667</ID></Title><Desc><Text>Find the key</Text><ID>928667</ID></Desc></Data> + 0 + false + + + 3721 + Jungle11T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This might work! You should go back to the door and see if this will open the way.</Text><ID>928672</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle11T12CS.unity3d/PfGrpJungle11T12CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_UnderwaterBlockage</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the door to the key</Text><ID>928670</ID></Title><Desc><Text>Find the door to the key</Text><ID>928670</ID></Desc></Data> + 0 + false + + + 3722 + Jungle11T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You need to find the exit.</Text><ID>928675</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>... + +What is this place?</Text><ID>928676</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Location</Key><Value>PfLadder</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_UnderwaterTunnelEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the exit</Text><ID>928673</ID></Title><Desc><Text>Find the exit</Text><ID>928673</ID></Desc></Data> + 0 + false + + + 3745 + Jungle11T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What could be around the corner?</Text><ID>928679</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle11T14CS.unity3d/PfGrpJungle11T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Fountain</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Fountain</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the cavern</Text><ID>928677</ID></Title><Desc><Text>Explore the cavern</Text><ID>928677</ID></Desc></Data> + 0 + false + + + 3763 + Jungle11T11A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The breathing apparatus is working! + +This strange and beautiful area is amazing, but time is of the essence for the baby Krayfin. You should look for the exit to continue the search.</Text><ID>928682</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_UnderwaterBlockage</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the exit</Text><ID>928680</ID></Title><Desc><Text>Look for the exit</Text><ID>928680</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204876 + true + 60 + 60 + + 0 + +
+ + 350 +

1

+ 0 + + 1 + 368 + 204876 + true + 350 + 350 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204876 + true + 50 + 50 + + 0 + +
+ false +
+ + 2498 + Jungle12 + 52 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Dragon Bloom</Text><ID>927360</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2496 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2498 + 3723 + 0 + + + 1 + 2498 + 3724 + 0 + + + 1 + 2498 + 3725 + 0 + + + 1 + 2498 + 3726 + 0 + + + 1 + 2498 + 3727 + 0 + + + 1 + 2498 + 3728 + 0 + + + + 1 + 204877 + 0 + + 3723 + Jungle12T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKrayfinBaby</NPC><Text>This flower... +Is this what the Luminous Krayfin been searching for all along? +You should take a closer look.</Text><ID>928685</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DragonBloom</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a closer look at the flower</Text><ID>928683</ID></Title><Desc><Text>Approach the flower</Text><ID>941775</ID></Desc></Data> + 0 + false + + + 3724 + Jungle12T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What a unique looking flower... +Why did the baby Krayfin want to come to this room, and what makes this flower special? You should look in the room for hints to its importance.</Text><ID>928688</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle12T02CS.unity3d/PfGrpJungle12T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Tablets</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the room for further clues</Text><ID>928686</ID></Title><Desc><Text>Explore the room for further clues</Text><ID>928686</ID></Desc></Data> + 0 + false + + + 3725 + Jungle12T03 + <Data><Setup><Scene>HubCenoteINT02DO</Scene><Asset>RS_DATA/PfGrpJungle12T03.unity3d/PfGrpJungle12T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Wow! Perhaps the dragon needs the fruit of this flower to grow into being a giant leviathan, like the Bewilderbeast! There's only one way to test the hypothesis! You should look for some of its fruit nearby.</Text><ID>928691</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWDragonBloomFruit</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDragonBloomFruit</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Look for fruit that resembles the carving</Text><ID>928689</ID></Title><Desc><Text>Look for fruit that resembles the fruit shown in the carving</Text><ID>941776</ID></Desc></Data> + 0 + false + + + 3726 + Jungle12T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should give the fruit to the Krayfin and observe how he reacts.</Text><ID>928694</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle12T04CS.unity3d/PfGrpJungle12T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13260</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Feed the Krayfin the fruit</Text><ID>928692</ID></Title><Desc><Text>Feed the Krayfin the fruit</Text><ID>928692</ID></Desc></Data> + 0 + false + + + 3727 + Jungle12T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Now that the fruits have been cracked open, the smell is getting worse and worse. You need to get out of here. You should go back to the watery tunnel where you entered the room.</Text><ID>928697</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Fountain</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to the watery entrance to the room</Text><ID>928695</ID></Title><Desc><Text>Go back to the watery entrance in the room</Text><ID>941777</ID></Desc></Data> + 0 + false + + + 3728 + Jungle12T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>How would you convince the Krayfin to go back and help operate the oxygen machine? You would never make it all the way through without the help. Perhaps there is another way out of here.</Text><ID>928700</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle12T06CS.unity3d/PfGrpJungle12T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You can see the gratitude in the Krayfin's eyes. You've really helped him out... and you've helped him reach his destiny.</Text><ID>928701</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FlowerRoomExit</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for another way out of here!</Text><ID>928698</ID></Title><Desc><Text>Look for another way out of here!</Text><ID>928698</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204877 + true + 300 + 300 + + 0 + + + + 65 +

2

+ 0 + + 1 + 633 + 204877 + true + 65 + 65 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 204877 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204877 + true + 50 + 50 + + 0 + +
+ false +
+ + 2499 + Jungle13 + 52 +

+ <Data><Setup><Scene>HubCenoteINT02DO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Escape!</Text><ID>927361</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2498 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2499 + 3729 + 0 + + + 1 + 2499 + 3757 + 0 + + + 1 + 2499 + 3750 + 0 + + + 1 + 2499 + 3730 + 0 + + + 1 + 2499 + 3731 + 0 + + + 1 + 2499 + 3732 + 0 + + + 1 + 2499 + 3733 + 0 + + + 1 + 2499 + 3734 + 0 + + + 1 + 2499 + 3735 + 0 + + + 1 + 2499 + 3748 + 0 + + + + 1 + 204878 + 0 + + 3729 + Jungle13T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKrayfinBaby</NPC><Text>The baby Krayfin wants to stay here with the noxious Dragon Bloom, so that means you need to find a way out of here on your own. You should continue down the path.</Text><ID>928704</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TunnelStart</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the tunnel out of here</Text><ID>928728</ID></Title><Desc><Text>Follow the tunnel out of here</Text><ID>928726</ID></Desc></Data> + 0 + false + + + 3730 + Jungle13T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Whew! That was a close call. You should continue cautiously.</Text><ID>928707</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFlameWhipperNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Continue down the path and {{input}} on a friend</Text><ID>928705</ID></Title><Desc><Text>Continue down the path and {{input}} on a friend</Text><ID>928705</ID></Desc></Data> + 0 + false + + + 3731 + Jungle13T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It's the same Flame Whipper that you met out in the cenote! She seems to be really interested in you. Perhaps she'll help you find the way out, but you should continue down the path in the meanwhile.</Text><ID>928710</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GeckoDoor</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue down the path</Text><ID>928708</ID></Title><Desc><Text>Continue down the path</Text><ID>928711</ID></Desc></Data> + 0 + false + + + 3732 + Jungle13T04 + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GeyserRoom</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue down the path</Text><ID>928708</ID></Title><Desc><Text>Follow the path out of here</Text><ID>941778</ID></Desc></Data> + 0 + false + + + 3733 + Jungle13T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like a dead end, but it might be the way out. You should run there as soon as you can!</Text><ID>928715</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle13T05CS.unity3d/PfGrpJungle13T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GeyserElevator</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Run to the large geyser</Text><ID>928713</ID></Title><Desc><Text>Run to the large geyser</Text><ID>941779</ID></Desc></Data> + 0 + false + + + 3734 + Jungle13T06 + <Data><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get to Impossible Island!</Text><ID>928716</ID></Title><Desc><Text>Get to Impossible Island!</Text><ID>928716</ID></Desc></Data> + 0 + false + + + 3735 + Jungle13T07 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpJungle13T07.unity3d/PfGrpJungle13T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpJungle13T08.unity3d/PfGrpJungle13T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What a journey! You should tell Phlegma the whole story since she couldn't follow it to its end.</Text><ID>928720</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle13T06CS_FAO.unity3d/PfGrpJungle13T06CS_FAO</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I can't believe that was what was at the heart of Impossible Island. I must go there and see this beautiful flower for myself. +And... it seems this Flame Whipper stowed away on your journey back.</Text><ID>928721</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Phlegma about the journey</Text><ID>928718</ID></Title><Desc><Text>Talk to Phlegma about the journey</Text><ID>928718</ID></Desc></Data> + 0 + false + + + 3748 + Jungle13T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Valka asked to talk to you whenever you returned from Impossible Island. I'll look after this little one while you see her at Berk.</Text><ID>928724</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I finished reading all the hidden Luminous Krayfin entries in the Bork Papers. It seems that the dragon bloom helps accelerate the growth of our Krayfin and helps him grow into a powerful leviathan!</Text><ID>928725</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka at Berk</Text><ID>928722</ID></Title><Desc><Text>Talk to Valka at Berk</Text><ID>928722</ID></Desc></Data> + 0 + false + + + 3750 + Jungle13T01b + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle13T02CS.unity3d/PfGrpJungle13T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TunnelEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the tunnel out of here!</Text><ID>928728</ID></Title><Desc><Text>Follow the tunnel out of here!</Text><ID>928727</ID></Desc></Data> + 0 + false + + + 3757 + Jungle13T01a + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle13T01CS.unity3d/PfGrpJungle13T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT02DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TunnelMid</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the tunnel out of here</Text><ID>928728</ID></Title><Desc><Text>Follow the tunnel out of here</Text><ID>928726</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 204878 + true + 300 + 300 + + 0 + + + + 250 +

8

+ 0 + + 1 + 651 + 204878 + true + 250 + 250 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 204878 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204878 + true + 50 + 50 + + 0 + +
+ false +
+ + 2500 + Edu112 + 46 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEdu112T00.unity3d/PfGrpQEdu112T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidCChocolate</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu112T07.unity3d/PfGrpQEdu112T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Scrubbed Clean: Part 2</Text><ID>927319</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2459 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2500 + 2501 + 0 + + + 1 + 2500 + 3736 + 0 + + + 1 + 2500 + 3738 + 0 + + + 1 + 2500 + 3739 + 0 + + + 1 + 2500 + 3740 + 0 + + + 2 + 2500 + 2502 + 0 + + + 1 + 2500 + 3741 + 0 + + + 1 + 2500 + 3743 + 0 + + + 1 + 2500 + 3744 + 0 + + + + 1 + 204880 + 0 + + 2501 + Edu112T01 + 46 +

2500

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Heather in the School</Text><ID>927315</ID></Title><Desc><Text>Talk to Heather in the School.</Text><ID>927316</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2501 + 3737 + 0 + + + + 1 + 204879 + 0 + + 3737 + Edu112T01A + <Data><Offer><Type>Popup</Type><ID>927981</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ahoy there! Thanks for clearing up Gobber's stink but now Grump has gone missing. I think he couldn't stand the smell of roses around Gobber so he ran away. It looks like this is a job for the finest dragon wrangler alive! @@ I'll see if I can track down old Grump while you speak with Heather. She said that she had an idea for fixing Gobber's smell. You can find her by the Lab at the School.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927982</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great timing! I just bottled a fragrance oil that I'm calling [c][3eebff]Essence of Blacksmith[/c][ffffff]. The smell is a perfect mix of old metal tools, sooty hands and singed mustache so don't be surprised if the inside of the Lab smells like Gobber’s smithy for a while.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather in the School</Text><ID>927315</ID></Title><Desc><Text>Talk to Heather in the School.</Text><ID>927316</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13197 + + 1 + 5446 + 204879 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13198 + + 1 + 5447 + 204879 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13217 + + 1 + 5448 + 204879 + true + 1 + 1 + + 0 + +
+ false + + + 2502 + Edu112T06 + 46 +

2500

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>{{Input}} on Heather to answer her question</Text><ID>927317</ID></Title><Desc><Text>{{Input}} on Heather to answer her question.</Text><ID>927318</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2502 + 3742 + 0 + + + + 1 + 204881 + 0 + + 3742 + Edu112T06A + <Data><Offer><Type>Popup</Type><ID>927985</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now I'll just pour the soap into molds and it'll be ready to use in no time. I have a quick question for you if you'll {{input}} on me.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927986</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We did it! The bar of soap is ready and I gave it the only name that makes sense...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizQEdu112T06.unity3d/PfUiQuizQEdu112T06</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Heather to answer her question</Text><ID>927317</ID></Title><Desc><Text>{{Input}} on Heather to answer her question.</Text><ID>927318</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13218 + + 1 + 5449 + 204881 + true + 1 + 1 + + 0 + +
+ false +
+ + 3736 + Edu112T02 + <Data><Offer><Type>Popup</Type><ID>927989</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We're going to need all the ingredients you gathered last time to make this special soap. [c][3eebff]Tallow[/c][ffffff] is made from [c][3eebff]rendering[/c][ffffff]; that's a procedure where you heat pieces of animal fat so it doesn't spoil as easily. {{Input}} on the cauldron to add the block of tallow. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927990</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>For centuries tallow has been used for cooking, candle making and even in printing. Gobber uses it in his smithy as a [c][3eebff]lubricant[/c][ffffff] so his tools move smoothly when they come up against rough surfaces.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13197</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>Add the tallow to the Cauldron</Text><ID>927987</ID></Title><Desc><Text>Add the tallow to the Cauldron in the School.</Text><ID>927988</ID></Desc></Data> + 0 + false + + + 3738 + Edu112T03 + <Data><Offer><Type>Popup</Type><ID>927993</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need liquid tallow to make soap, so we need to melt this block. Could you get your dragon to light the fire underneath the cauldron?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927994</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thanks! It has a lovely color but stinks worse than Snotlout's burning pants!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the wood fire</Text><ID>927991</ID></Title><Desc><Text>Shoot the wood fire with your dragon to heat up the cauldron.</Text><ID>927992</ID></Desc></Data> + 0 + false + + + 3739 + Edu112T04 + <Data><Offer><Type>Popup</Type><ID>927997</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need to be very careful. The [c][3eebff]lye water[/c][ffffff] from Phlegma's farm is [c][3eebff]caustic[/c][ffffff], which means it can burn your skin. Carefully {{input}} the cauldron to add the lye water. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>927998</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Nicely done! When you pour the lye onto the liquid tallow, it starts a chemical reaction. This is called [c][3eebff]saponification[/c][ffffff], which is a cool way of saying the fat (in the tallow) gets broken down by the sodium hydroxide (from the lye water). The mixture thickens like pudding and we have the beginning of our soap.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWLumpOfTallow</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectDWLumpOfTallow</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13198</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>Pour the Lye Water into the cauldron</Text><ID>927995</ID></Title><Desc><Text>Pour the Lye Water into the cauldron.</Text><ID>927996</ID></Desc></Data> + 0 + false + + + 3740 + Edu112T05 + <Data><Offer><Type>Popup</Type><ID>928001</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>To finish, we need to stir the mixture and 'Gobberize' the smell. {{Input}} on the cauldron to finish the soap!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928002</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow... you can really smell the mustache.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWLumpOfTallow</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectDWLumpOfTallow</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13217</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} the cauldron to drizzle Essence of Blacksmith</Text><ID>927999</ID></Title><Desc><Text>{{Input}} the cauldron to drizzle Essence of Blacksmith into the soap mixture.</Text><ID>928000</ID></Desc></Data> + 0 + false + + + 3741 + Edu112T07 + <Data><Offer><Type>Popup</Type><ID>928005</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now comes the hard part: convincing Gobber to actually use the soap. He still smells of rose petals and won't venture away from the waterfall. I think he's a little ashamed of smelling so sweet and fresh. @@ Give Gobber the soap; let's hope it's a smell he likes!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928006</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>'Gobber' soap, eh? It's got a grand name and smells just like a smithy after a five day smelting... I love it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13218</Value></Pair><Pair><Key>ItemDescription</Key><Value>Soap</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Gobber the soap</Text><ID>928003</ID></Title><Desc><Text>Give Gobber the soap. He's on top of the waterfall in Berk.</Text><ID>928004</ID></Desc></Data> + 0 + false + + + 3743 + Edu112T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_FarPier</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>928009</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If you don't mind, I need privacy to enjoy a good shower so... away with yeh! @@ Talk to Eret on the pier and find out if he's tracked down my sweet Grump. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928010</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>It's never easy to get anyone around here to clean themselves but now that Gobber's under the waterfall, he won't come out until he's belted out every Viking song that he knows! You did a fine job there, mate.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak to Eret about Grump</Text><ID>928007</ID></Title><Desc><Text>Speak to Eret about Grump.</Text><ID>928008</ID></Desc></Data> + 0 + false + + + 3744 + Edu112T09 + <Data><Offer><Type>Popup</Type><ID>928013</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I spoke with a few Vikings in Berk who saw Grump flying out to open sea but he won't have gotten far. As much as Grump hates the smell of flowers, he loves Gobber too much to go any further than that. @@ Check out the sea stacks to find Grump and I'll let Gobber know when you find him. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932783</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hoot, you found my Grump! He's going to love that I smell normal again! Let me go get that overgrown sausage. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932885</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>My eyes! Put your clothes back on, Gobber! Why would you run around Berk like that?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>932886</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Oh right. Sorry about that. I don't take showers often so I'm not well versed in the drying procedure. Many thanks go to {{Name}}! I couldn't have done it without that little {{greeting}}. So... same again, next year?</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHello02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SheepSeaStack</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Grump</Text><ID>928011</ID></Title><Desc><Text>Find Grump on one of the sea stacks near Berk.</Text><ID>928012</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204880 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204880 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204880 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204880 + true + 350 + 350 + + 0 + +
+ false +
+ + 2503 + Edu113 + 7 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu113T00.unity3d/PfGrpQEdu113T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Pine Cone Weather Station</Text><ID>927322</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2500 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2503 + 3765 + 0 + + + 1 + 2503 + 3766 + 0 + + + 2 + 2503 + 2504 + 0 + + + 2 + 2503 + 2505 + 0 + + + 1 + 2503 + 3768 + 0 + + + 1 + 2503 + 3770 + 0 + + + + 1 + 204956 + 0 + + 2504 + Edu113T03 + 7 +

2503

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Shoot the Pine Cones in the tree</Text><ID>927320</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2504 + 3767 + 0 + + + + 1 + 204957 + 0 + + 3767 + Edu113T03A + <Data><Offer><Type>Popup</Type><ID>928019</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait, it looks like there's one more pile of pine cones stuck in that tree. If we get those out we'll have enough to make up our kindling. Have your dragon shoot them out of the tree.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928020</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You got them! Nice shot.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfStuckPineCones</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfStuckPineCones</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Pine Cones in the tree</Text><ID>927320</ID></Title><Desc><Text>Shoot the Pine Cones that are stuck in the tree.</Text><ID>928018</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13269 + + 1 + 5463 + 204957 + true + 1 + 1 + + 0 + +
+ false + + + 2505 + Edu113T04 + 7 +

2503

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Bring the Open Pine Cones to Hiccup</Text><ID>927321</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2505 + 3769 + 0 + + + + 1 + 204958 + 0 + + 3769 + Edu113T04A + <Data><Offer><Type>Popup</Type><ID>928023</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Alright, now bring me the pine cones from the tree.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928024</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm. These pine cones have their scales opened up but I don't remember them looking like that while they were in the tree. They must have somehow responded to {{dragon name}}'s hot breath. Maybe we could put these pine cones to better use. @@ A [c][3eebff]hygrometer[/c][ffffff] is a tool we can use to measure moisture in the air (also called [c][3eebff]humidity[/c][ffffff]). The scales of the pine cones were closed earlier because of the rains but when they became hot, they opened up. The change in scales shows us the difference in humidity; so, we can use the pine cone as a [c][3eebff]natural hygrometer[/c][ffffff]. @@ Phlegma could use the pine cones to predict when the next storm is coming without having to stake out Bucket's house. What do you think, Phlegma?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13269</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pile of Open Pine Cones</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Hiccup the Open Pine Cones</Text><ID>928021</ID></Title><Desc><Text>Bring Hiccup the Open Pine Cones from the tree.</Text><ID>928022</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13270 + + 1 + 5464 + 204958 + true + 1 + 1 + + 0 + +
+ false +
+ + 3765 + Edu113T01 + <Data><Offer><Type>Popup</Type><ID>928027</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>My brave companion. Did you see what happened to my crops? The corn, the pumpkins and even the dragon nip have been ruined! The strong winds and heavy rains tore them apart along with part of my lovely wooden fence. Usually, I'd check with Bucket to see if a storm was on its way but he's been out fishing. @@ We need a better system to predict when a storm is coming but let's deal with one problem at a time. All the farm needs is some love and care to set it right again. Can you pick up the spoiled crops so I can start replanting?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928028</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>That's so much better.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectSpoiledCropsDO</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13267</ItemID><Quantity>3</Quantity></RemoveItem><Type>Collect</Type><Title><Text>Pick up the 3 Spoiled Crops</Text><ID>928025</ID></Title><Desc><Text>Pick up the 3 Spoiled Crops at the Lookout.</Text><ID>928026</ID></Desc></Data> + 0 + false + + + 3766 + Edu113T02 + <Data><Offer><Type>Popup</Type><ID>932784</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank Odin that Hiccup and Toothless are here to help. An extra pair of hands and dragon claws will make this a whole lot easier. We need some kindling to get rid of these old crops and what's left of my fence. @@ [c][3eebff]Kindling[/c][ffffff] is any material that catches fire easily or can be used to start a fire. Pine cones are an excellent example since they burn very well. You see all these pine cones scattered around my farm?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>932887</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's a good idea. Gather 3 piles of pine cones, {{Name}} and I'll do the same with Toothless.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>928033</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You and {{dragon name}} work really well together.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWClosedPineCones</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 3 Piles of Pine Cones</Text><ID>928029</ID></Title><Desc><Text>Gather 3 Piles of Pine Cones for kindling.</Text><ID>928030</ID></Desc></Data> + 0 + false + + + 3768 + Edu113T05 + <Data><Offer><Type>Popup</Type><ID>928036</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Wow, that's a great idea! I couldn't bring myself to waste the wood from my broken fence so I built a little something that we could use for our new weather station. @@ When organisms evolve characteristics to give them a better chance of survival it's called [c][3eebff]adaptation[/c][ffffff]. These pine cones open their scales when it's dry so they can disperse their seeds and it's worked out well for the tree. These traits have been passed on to the next generation so now we have all these pine cones that demonstrate the exact same behavior. @@ The next storm could strike at a drop of Mjolnir so we should get this weather station up and running as soon as possible. First, {{input}} on that spot to drive in the wooden stand.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfGoodSpot</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfGoodSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13270</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on a good spot for the wooden stand</Text><ID>928034</ID></Title><Desc><Text>{{Input}} on a good spot for the wooden stand.</Text><ID>928035</ID></Desc></Data> + 0 + false + + + 3770 + Edu113T06 + <Data><Offer><Type>Popup</Type><ID>928039</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Good job! {{Input}} on the wooden stand to hang up the pine cones.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928040</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Excellent work, {{Name}}! Now, all we have to do is look at the pine cones. If their scales are closed, it means the weather is humid and it will probably rain. But if they're open, it means it's dry and rain is less likely. Nature has remarkable ways of keeping us safe. Don't you think?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfWoodenStand</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfWoodenStand</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13268</ItemID><Quantity>3</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the top of the Wooden Stand</Text><ID>928037</ID></Title><Desc><Text>{{Input}} on the top of the Wooden Stand to hang up the Pine Cones.</Text><ID>928038</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 204956 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204956 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204956 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 204956 + true + 350 + 350 + + 0 + +
+ false +
+ + 2506 + Edu114 + 11 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu114T00.unity3d/PfGrpQEdu114T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_TuffnutPaints</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_BucketPaints</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_HeatherWatches</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_AstridJudges</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Paint up a Storm</Text><ID>927326</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2503 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2506 + 3772 + 0 + + + 1 + 2506 + 3773 + 0 + + + 1 + 2506 + 3774 + 0 + + + 2 + 2506 + 2507 + 0 + + + 2 + 2506 + 2508 + 0 + + + 1 + 2506 + 3777 + 0 + + + 1 + 2506 + 3778 + 0 + + + 1 + 2506 + 3779 + 0 + + + 2 + 2506 + 2509 + 0 + + + + 1 + 204967 + 0 + + 2507 + Edu114T04 + 11 +

2506

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Shoot the bones to char them</Text><ID>927323</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2507 + 3775 + 0 + + + + 1 + 204968 + 0 + + 3775 + Edu114T04A + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu114T04.unity3d/PfGrpQEdu114T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>928043</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Okay! We need to find [c][3eebff]black pigment[/c][ffffff] next, which we can find in bone charcoal, or bone char. We can make it by burning animal bones at high temperatures. I gathered animal bones for a future experiment, but we can use them now. Go into the cave and shoot the animal bones, please!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928044</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Bone char makes the best [c][3eebff]black pigment[/c][ffffff], but we could also have made it by burning oil, wood, or some rocks.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfPileOfBones</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfPileOfBones</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the animal bones to char them</Text><ID>928041</ID></Title><Desc><Text>Shoot the animal bones with {{dragon name}} to char them.</Text><ID>928042</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13345 + + 1 + 5481 + 204968 + true + 1 + 1 + + 0 + +
+ false + + + 2508 + Edu114T05 + 11 +

2506

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the 3 Bunches of Flowers and Bone Char to Heather</Text><ID>927324</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2508 + 3776 + 0 + + + + 1 + 204969 + 0 + + 3776 + Edu114T05A + <Data><Offer><Type>Popup</Type><ID>928047</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>While you found our pigments, I found us a great [c][3eebff]binder[/c][ffffff] - Bucket's lunch! Egg yolks are sticky enough to be a good binder. I separated the egg yolks from the egg whites. Now all I need to do is grind up the [c][3eebff]pigments[/c][ffffff], stir them into the yolk, and add water as the [c][3eebff]solvent[/c][ffffff]! Can you give me the flowers and the bone char?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928048</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Okay, and... done! Bucket's paint palette is ready and the colors look beautiful, if I do say so myself!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bunch of Flowers</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bone Char</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the 3 Bunches of Flowers and Bone Char to Heather</Text><ID>927324</ID></Title><Desc><Text>Give the 3 Bunches of Flowers and Bone Char to Heather so she can mix up the paints.</Text><ID>928046</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13346 + + 1 + 5482 + 204969 + true + 1 + 1 + + 0 + +
+ false +
+ + 2509 + Edu114T09 + 11 +

2506

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Tell Bucket that he's the winner</Text><ID>927325</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2509 + 3780 + 0 + + + + 1 + 204970 + 0 + + 3780 + Edu114T09A + <Data><Offer><Type>Popup</Type><ID>928051</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, the winner of this competition is a no brainer... even if it hadn't been a victory by default. Bucket's painting is the clear winner! @@ Thanks for helping out, {{Name}}. I think you earned the right to tell Bucket the great news.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928052</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>It's a dream come true! Oh my goodness, there are so many people to thank. I'd like to thank my parents and Mulch who supported me all through my painting career. Another big thank you goes to {{Name}} for the unending support and paint supplies. You can have the winning painting for your Hideout!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Bucket that he's the winner</Text><ID>927325</ID></Title><Desc><Text>Tell Bucket that he's the winner of the painting competition!</Text><ID>928050</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13347 + + 1 + 5483 + 204970 + true + 1 + 1 + + 0 + +
+ false +
+ + 3772 + Edu114T01 + <Data><Offer><Type>Popup</Type><ID>928055</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey {{Name}}! Do you have some free time to help me out? I'm hosting a painting competition and I'll need some help wrangling the twins and Snotlout. We'll be meeting by the lake at the Wilderness. Come join us when you can!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932785</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Praise Loki! Maybe now we can get started and bring this trophy home!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932888</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yeah, we'd already be done if we didn't have to paint your dragon. Chicken wouldn't be this difficult and she's the best looking [c][3eebff]anything[/c][ffffff] in the whole archipelago.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutLoading02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_QBaby8T08_1_NPCGobber</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check out the competition in the Wilderness</Text><ID>928053</ID></Title><Desc><Text>Check out the painting competition by the lake in the Wilderness.</Text><ID>928054</ID></Desc></Data> + 0 + false + + + 3773 + Edu114T02 + <Data><Offer><Type>Popup</Type><ID>928060</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Oh no! I didn't bring colors to match Stormfly's sky skin. All I have are these eggs that I brought for lunch and they won't help. @@ Oh! Heather is here to watch the competition. Can you ask her if she has any spare paint? +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928061</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I didn't bring any, but that's an easy problem to solve! To make paint, first we need natural coloring materials called [c][3eebff]pigments[/c][ffffff]. Then we need a [c][3eebff]binder[/c][ffffff] to help the pigments hold together and stick to the surface that is being painted on. Lastly we need a [c][3eebff]solvent[/c][ffffff] to thin the pigment out so there's enough paint for the artist to use.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Heather for help</Text><ID>928058</ID></Title><Desc><Text>Ask Heather for help.</Text><ID>928059</ID></Desc></Data> + 0 + false + + + 3774 + Edu114T03 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu114T03.unity3d/PfGrpQEdu114T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928064</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There are plenty of pigments all around us that we could use. For centuries, we've used pigments from things like plant parts, trees, rocks, rust, minerals like lapis lazuli (a blue rock), sea shells and lichen. Lichen in particular is an interesting source of pigment. @@ Lichen grows on rocks, trees, and walls and can be orange, yellow, red, brown, green or gray. Lichen may look like moss, but it's not a plant. It's actually a mix of [c][3eebff]fungi[/c][ffffff] and [c][3eebff]algae[/c][ffffff]. The algae makes food while the fungus keeps the algae safe and moist. @@ We can look for lichen and flowers around here to make some Stormfly paint! Can you pick 3 bunches of flowers so that we have a good variety?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928065</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great work! Did you know that we can see pigments because they reflect one color? Light is made up of several colors, but pigments absorb most of the spectrum. We think that a leaf is [c][3eebff]green[/c][ffffff] because the pigment is only reflecting the green part of the light back at our eyes!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectBunchOfFlowers</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick 3 Bunches of Flowers</Text><ID>928062</ID></Title><Desc><Text>Pick 3 Bunches of Flowers for paint pigment.</Text><ID>928063</ID></Desc></Data> + 0 + false + + + 3777 + Edu114T06 + <Data><Offer><Type>Popup</Type><ID>928068</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Paints that use egg yolk as a binder are called [c][3eebff]egg tempera[/c][ffffff] paints. They'll smell of eggs, and the paints need to be used quickly or the yolk dries up. Lucky for us, Berk's cool weather will slow that down. @@ Will you give the paint palette to Bucket please? Let him know that he can't lick his canvas, no matter how good it smells!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928069</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Thank you! Egg tempera paints make my mouth water but now's not the time for a lick. I need to paint quickly to catch up, especially with Snotlout making a masterpiece. It's a little derivative of Bjorn the Burning's works, but I like it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>ItemID</Key><Value>13346</Value></Pair><Pair><Key>ItemDescription</Key><Value>Paint Palette</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Bucket the Paint Palette</Text><ID>928066</ID></Title><Desc><Text>Bring Bucket the Paint Palette.</Text><ID>928067</ID></Desc></Data> + 0 + false + + + 3778 + Edu114T07 + <Data><Offer><Type>Popup</Type><ID>928072</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Snotlout, your canvas is on fire! Quick, {{Name}}, {{input}} on the bucket to throw water on the fire!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWhoa</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932787</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, we had things under control! Hookfang just shot my canvas to... get the right shade of awesome.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932889</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You showoff! Would you think it awesome if {{Name}} hadn't just saved your eyebrows?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>932890</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Okay, okay! Thanks for the help. You saved the 'Lout's dashing looks, and that's worth more than any painting.</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutUpset02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridReally</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfBucketWell</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBucketWell</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the bucket of water to put out the fire</Text><ID>928070</ID></Title><Desc><Text>{{Input}} on the bucket of water to put out the fire on Snotlout's canvas.</Text><ID>928071</ID></Desc></Data> + 0 + false + + + 3779 + Edu114T08 + <Data><Offer><Type>Popup</Type><ID>928078</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ugh. Well, that leaves just Bucket and the twins. Wait... where is Ruffnut and why is Tuffnut being so quiet? Could you check on him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928079</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It's all very simple. Ruffnut got bored and decided to take half our paint to throw at unsuspecting Vikings. I decided to paint Chicken. No offense Stormfly, but there's no one so fair and majestic as Chicken. @@ Now that my masterpiece is done, it's time for Chicken and me to retire to our respective bedchambers. Good night.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Tuffnut</Text><ID>928076</ID></Title><Desc><Text>Check on Tuffnut and see what happened to Ruffnut.</Text><ID>928077</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204967 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204967 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204967 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204967 + true + 200 + 200 + + 0 + +
+ false +
+ + 2511 + SpringMaze 2017 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 5 + 01-01-2017 12:00:00,09-26-2017 12:00:00 + 0 + false + + + 3 + 2510 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2511 + 3782 + 0 + + + + 1 + 204985 + 0 + + 3782 + SpringMaze2017T02 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Spring Maze Chest</Text><ID>930729</ID></Title></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204985 + true + 100 + 100 + + 0 + + + false +
+ + 2512 + New Farming 201 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2512 + 3783 + 0 + + + + 1 + 204986 + 0 + + 3783 + 1 Honey, 1 Peppermint + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, Peppermint</Text><ID>928930</ID></Title><Desc><Text>Astrid is sick and Hiccup needs some ingredients for her tea.</Text><ID>928931</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204986 + true + 50 + 50 + + 0 + + + + 109 +

2

+ 0 + + 1 + 5494 + 204986 + true + 109 + 109 + + 0 + +
+ false +
+ + 2513 + New Farming 202 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2513 + 3784 + 0 + + + + 1 + 204987 + 0 + + 3784 + 2 Honey, 2 Corn + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, Corn</Text><ID>928932</ID></Title><Desc><Text>I think we may be misunderstanding the idea of 'sweet corn'.</Text><ID>928933</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204987 + true + 50 + 50 + + 0 + + + + 219 +

2

+ 0 + + 1 + 858 + 204987 + true + 219 + 219 + + 0 + +
+ false +
+ + 2514 + New Farming 203 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2514 + 3785 + 0 + + + + 1 + 204988 + 0 + + 3785 + 3 Honey, 8 Mushrooms, 1 Black Beans + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, Mushrooms, Black Beans</Text><ID>928934</ID></Title><Desc><Text>Gothi needs more supplies for her many Terrible Terrors!</Text><ID>928935</ID></Desc></Data> + 0 + false + + + 500 +

2

+ 0 + + 1 + 522 + 204988 + true + 500 + 500 + + 0 + + + + 50 +

9

+ 0 + + 1 + 829 + 204988 + true + 50 + 50 + + 0 + +
+ false +
+ + 2515 + New Farming 204 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2515 + 3786 + 0 + + + + 1 + 204989 + 0 + + 3786 + 4 Honey + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey</Text><ID>928948</ID></Title><Desc><Text>The twins need something sticky to meet their prank quota.</Text><ID>928937</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204989 + true + 50 + 50 + + 0 + + + + 352 +

2

+ 0 + + 1 + 879 + 204989 + true + 352 + 352 + + 0 + +
+ false +
+ + 2516 + New Farming 205 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2516 + 3787 + 0 + + + + 1 + 204990 + 0 + + 3787 + 5 Honey, 5 Strawberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, Strawberries</Text><ID>928938</ID></Title><Desc><Text>Fishlegs has made a batch of sweet treats for a sour Berk.</Text><ID>928939</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204990 + true + 50 + 50 + + 0 + + + + 542 +

2

+ 0 + + 1 + 5495 + 204990 + true + 542 + 542 + + 0 + +
+ false +
+ + 2517 + New Farming 206 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,16 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2517 + 3788 + 0 + + + + 1 + 204991 + 0 + + 3788 + 7 Honey, 7 Puffin Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, Puffin Feathers</Text><ID>928940</ID></Title><Desc><Text>Tuffnut is dressing up like a bird to try and startle Ruffnut.</Text><ID>928941</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 204991 + true + 112 + 112 + + 0 + + + + 1449 +

2

+ 0 + + 1 + 5496 + 204991 + true + 1449 + 1449 + + 0 + +
+ false +
+ + 2518 + New Farming 207 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2518 + 3789 + 0 + + + + 1 + 204992 + 0 + + 3789 + 8 Honey, 3 White Wool, 3 Black Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, White Wool, Black Wool</Text><ID>928942</ID></Title><Desc><Text>Both dragon and rider need provisions for a long cold flight.</Text><ID>928943</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204992 + true + 50 + 50 + + 0 + + + + 1020 +

2

+ 0 + + 1 + 2020 + 204992 + true + 1020 + 1020 + + 0 + +
+ false +
+ + 2519 + New Farming 208 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2519 + 3790 + 0 + + + + 1 + 204993 + 0 + + 3790 + 10 Honey, 3 Yak Milk, 2 Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey, Yak Milk, Chicken Eggs</Text><ID>928944</ID></Title><Desc><Text>These ingredients make the perfect breakfast for a dragon rider!</Text><ID>928945</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 204993 + true + 72 + 72 + + 0 + + + + 1533 +

2

+ 0 + + 1 + 5497 + 204993 + true + 1533 + 1533 + + 0 + +
+ false +
+ + 2520 + New Farming 209 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2520 + 3791 + 0 + + + + 1 + 204994 + 0 + + 3791 + 12 Honey + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey</Text><ID>928948</ID></Title><Desc><Text>Ruffnut wants a beard of bees! That seems ill advised to me...</Text><ID>928947</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204994 + true + 50 + 50 + + 0 + + + + 1084 +

2

+ 0 + + 1 + 5498 + 204994 + true + 1084 + 1084 + + 0 + +
+ false +
+ + 2521 + New Farming 210 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2521 + 3792 + 0 + + + + 1 + 204995 + 0 + + 3792 + 15 Honey + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Honey</Text><ID>928948</ID></Title><Desc><Text>Honey preserves very well so Hiccup has decided to store a batch for the winter.</Text><ID>928949</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 204995 + true + 50 + 50 + + 0 + + + + 1386 +

2

+ 0 + + 1 + 5499 + 204995 + true + 1386 + 1386 + + 0 + +
+ false +
+ + 2522 + Edu115 + 11 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQEdu115T00.unity3d/PfGrpQEdu115T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>What a Mess!</Text><ID>927330</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2506 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2522 + 2523 + 0 + + + 2 + 2522 + 2524 + 0 + + + 1 + 2522 + 3795 + 0 + + + 1 + 2522 + 3796 + 0 + + + 1 + 2522 + 3797 + 0 + + + 2 + 2522 + 2525 + 0 + + + 1 + 2522 + 3799 + 0 + + + 1 + 2522 + 3800 + 0 + + + 1 + 2522 + 3801 + 0 + + + + 1 + 204996 + 0 + + 2523 + Edu115T01 + 11 +

2522

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ask Hiccup about water cleaning</Text><ID>927327</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2523 + 3793 + 0 + + + + 1 + 204997 + 0 + + 3793 + Edu115T01A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Every morning, I check on the water troughs that fill from the local pond. But something's wrong! A Deadly Nadder drank from it and now she's so feverish she couldn't even smell my hand. I think the water might be tainted. @@ We've got to find a way to clean the water before more dragons get sick. Can you ask Hiccup if he has any solutions?</Text><ID>928082</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, that poor dragon! I think I have an idea. I was eating lunch with Gobber when I noticed something peculiar. Whenever Gobber stirred his yak noodle soup, the broth circled the bowl but all the kelp and noodles stayed in the middle. @@ He was separating materials in a liquid by churning or spinning in a process called [c][3eebff]centrifugation[/c][ffffff]. I found out that bigger and denser materials get separated even faster. The effect looked so interesting that I sketched a schematic right then and there.</Text><ID>932788</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBQEduFilter.unity3d/PfUiMissionActionDBQEduFilter</Asset><NPC>PfDWHiccup</NPC><Text>Water Filter</Text><ID>932891</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Hiccup about water cleaning</Text><ID>927327</ID></Title><Desc><Text>Ask Hiccup about water cleaning in Berk.</Text><ID>936549</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13381 + + 1 + 5500 + 204997 + true + 1 + 1 + + 0 + +
+ false + + + 2524 + Edu115T02 + 11 +

2522

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ask Gobber is he has any parts for the filtration device</Text><ID>927328</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2524 + 3794 + 0 + + + + 1 + 204998 + 0 + + 3794 + Edu115T02A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The schematic is a little rough but I think it might be perfect for the job. Can you ask Gobber about the parts we'll need to make the invention?</Text><ID>928087</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Aye, Hiccup showed me the schematic during the lunch and asked me to help. (I've always known that my yak soup was going to lead to big things.) I have a nice big container for stirring, a pipe for flowing water, and a spout for pouring.</Text><ID>928088</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in the Hatchery</Text><ID>922472</ID></Title><Desc><Text>Ask Gobber if he has any parts for the filtration device.</Text><ID>936550</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13382 + + 1 + 5501 + 204998 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13383 + + 1 + 5503 + 204998 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13384 + + 1 + 5502 + 204998 + true + 1 + 1 + + 0 + +
+ false +
+ + 2525 + Edu115T06 + 11 +

2522

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the valve to churn the water</Text><ID>927329</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2525 + 3798 + 0 + + + + 1 + 204999 + 0 + + 3798 + Edu115T06A + <Data><Offer><Type>Popup</Type><ID>928091</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>All right! We need to work together for the next part. Can you churn the water in the container while I pour water through the inlet pipe? You'll need to {{input}} on the valve!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfValve</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfValve</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the valve to churn the water</Text><ID>927329</ID></Title><Desc><Text>{{Input}} on the valve to churn the water.</Text><ID>928090</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 7980 + + 1 + 5504 + 204999 + true + 3 + 3 + + 0 + +
+ false +
+ + 3795 + Edu115T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_AstridWaterFilter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If I know Astrid, she's already at the School taking care of that sick dragon. Get these parts and the schematic to her as quickly as you can.</Text><ID>928094</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank Odin for Hiccup's curiosity, Gobber's forethought - and his appetite!</Text><ID>928095</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>13381</Value></Pair><Pair><Key>ItemDescription</Key><Value>Filtration Sketch</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>13382</Value></Pair><Pair><Key>ItemDescription</Key><Value>Water Filter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>13384</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spout</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>13383</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pipe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Astrid the sketch, filter, spout and pipe</Text><ID>928092</ID></Title><Desc><Text>Give Astrid the sketch, filter, spout and pipe in the School.</Text><ID>935153</ID></Desc></Data> + 0 + false + + + 3796 + Edu115T04 + <Data><Offer><Type>Popup</Type><ID>928098</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's bring this all together. According to the schematic, the pipe needs to be attached to the top of the container. The dirty water will flow through this [c][3eebff]inlet pipe[/c][ffffff], drop down and churn around. We need to weld the inlet pipe to the container; can you ask {{dragon name}} to shoot it? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928099</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nice!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfInletPipe</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfInletPipe</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the bottom of the filter to weld the inlet pipe</Text><ID>928096</ID></Title><Desc><Text>Shoot the bottom of the filter to weld the inlet pipe.</Text><ID>928097</ID></Desc></Data> + 0 + false + + + 3797 + Edu115T05 + <Data><Offer><Type>Popup</Type><ID>928102</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The water is full of twigs, leaves and debris that we need to separate. When we churn the water, all the muck will gather at the center and leave the water fresh and clean on the outside! @@ Let's weld the container to the spout. {{dragon name}} knows what to do; shoot the spout and weld it together!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928103</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're being a great help. Thanks so much!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfSpout</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfSpout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the top of the container to attach the spout</Text><ID>928100</ID></Title><Desc><Text>Shoot the top of the container to attach the spout.</Text><ID>928101</ID></Desc></Data> + 0 + false + + + 3799 + Edu115T07 + <Data><Offer><Type>Popup</Type><ID>928106</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It worked! That poor Deadly Nadder could really use a drink of clean water. {{Input}} on the sick dragon to give her the bucket of clean filtered water, please.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928107</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>She already looks so much better! I'm so relieved.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfSickDragon</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSickDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>7980</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} sick dragon to quench its thirst</Text><ID>928104</ID></Title><Desc><Text>{{Input}} sick dragon to quench its thirst.</Text><ID>928105</ID></Desc></Data> + 0 + false + + + 3800 + Edu115T08 + <Data><Offer><Type>Popup</Type><ID>928110</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great. The other wild dragons will need water too! Can you {{input}} on the trough by the pond and refill it with filtered water?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfWaterTrough01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfWaterTrough01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>7980</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the empty water trough to fill it with water</Text><ID>928111</ID></Title><Desc><Text>{{Input}} on the empty water trough near the pond to fill it with water.</Text><ID>928109</ID></Desc></Data> + 0 + false + + + 3801 + Edu115T09 + <Data><Offer><Type>Popup</Type><ID>928113</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Perfect. We have one last empty trough next to Hiccup. Can you {{input}} on it?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGenPraise01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928114</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid tells me that the wild Deadly Nadder is looking ten times better already! The filter watered is going to keep a lot of dragons healthy, all thanks to you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfWaterTrough02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfWaterTrough02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>7980</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the empty water trough to fill it with water</Text><ID>928111</ID></Title><Desc><Text>{{Input}} on the empty water trough near the Hiccup to fill it with water.</Text><ID>928112</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 204996 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 204996 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204996 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204996 + true + 200 + 200 + + 0 + +
+ false +
+ + 2526 + Pirate01 + 61 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate01T00.unity3d/PfGrpPirate01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Rumble in the Edge</Text><ID>927422</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2526 + 3802 + 0 + + + 1 + 2526 + 3803 + 0 + + + 1 + 2526 + 3804 + 0 + + + 1 + 2526 + 3805 + 0 + + + 2 + 2526 + 2527 + 0 + + + 1 + 2526 + 3808 + 0 + + + 1 + 2526 + 3809 + 0 + + + 1 + 2526 + 3810 + 0 + + + 1 + 2526 + 3811 + 0 + + + 1 + 2526 + 3812 + 0 + + + + 1 + 205003 + 0 + + 2527 + Pirate01T05 + 61 +

2526

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>When two spines hit each other, it causes a vibration that carries on to the air molecules surrounding the spines. This vibration is a form of [c][3eebff]sound energy[/c][ffffff]. The energy and vibrations continue to spread from molecule to molecule in a sound wave until it reaches our ears and then can be heard.@@We can take advantage of that. Get closer to the Triple Stryke and {{input}} on the button. That will let you get closer and closer to the dragon!</Text><ID>927421</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Click on the spines</Text><ID>927420</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2527 + 3806 + 0 + + + 1 + 2527 + 3807 + 0 + + + + 1 + 0 + 0 + + 3806 + Pirate01T05A + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>ClickableSpikes02</Value></Pair><Pair><Key>Name</Key><Value>ClickSpikes</Value></Pair><Pair><Key>ItemName</Key><Value>ClickableSpikes02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Get close to the Triple Stryke and use the Nadder spines</Text><ID>928953</ID></Title><Desc><Text>{{Input}} on the Deadly Nadder spines far from the Triple Stryke</Text><ID>941784</ID></Desc></Data> + 0 + false + + + 3807 + Pirate01T05B + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>ClickableSpikes03</Value></Pair><Pair><Key>Name</Key><Value>ClickSpikes</Value></Pair><Pair><Key>ItemName</Key><Value>ClickableSpikes03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Get close to the Triple Stryke and use the Nadder spines</Text><ID>928953</ID></Title><Desc><Text>{{Input}} on the Deadly Nadder spines closer to the Triple Stryke</Text><ID>941785</ID></Desc></Data> + 0 + false + + false + + + 3802 + Pirate01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Help Wanted: The Dragon Riders are looking for Vikings to help them reinforce their base located at Dragon’s Edge.@@More details will be provided from Hiccup upon arrival.</Text><ID>928959</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good timing, {{Name}}. There's a rampaging Triple Stryke on the island and we need to find and stop her right away!</Text><ID>928960</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate01T01CS.unity3d/PfGrpPirate01T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the others at Dragon's Edge</Text><ID>928957</ID></Title><Desc><Text>Go to Dragon's Edge</Text><ID>929044</ID></Desc></Data> + 0 + false + + + 3803 + Pirate01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Come to me and I'll brief you on the situation. We're going to need your eyes and ears -- and {{dragon name}}'s, too.</Text><ID>928963</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We were unloading the barrels from the ship when the Triple Stryke landed in the middle of the camp. She started attacking everything in sight! We got everyone clear, and luckily, she left Dragon's Edge chasing Thor knows what.</Text><ID>928964</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Desc></Data> + 0 + false + + + 3804 + Pirate01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Triple Stryke is an aggressive species but I've never seen one act like this before. Something must be really wrong... We need to help her. +Everyone, spread out and search the island. She's probably on edge, so keep a good distance if you find her!</Text><ID>928967</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>She's still angry... + +we have our work cut out for us.</Text><ID>928968</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TriplestykeNadder</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Triple Stryke at Dragon's Edge</Text><ID>928965</ID></Title><Desc><Text>Look for the Triple Stryke</Text><ID>928975</ID></Desc></Data> + 0 + false + + + 3805 + Pirate01T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate01T04.unity3d/PfGrpPirate01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Last time we ran into an ornery Triple Stryke, we had to distract him from attacking us. I found out that tapping two Deadly Nadder spines together made a noise that distracted the dragon. Maybe that will work on this dragon too. Hey, it's worth a shot!@@Pick up the Deadly Nadder spines!</Text><ID>928971</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfSpikes</Value></Pair><Pair><Key>Name</Key><Value>PfSpikes</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the Nadder spikes</Text><ID>928969</ID></Title><Desc><Text>Pick up the Nadder spikes</Text><ID>928969</ID></Desc></Data> + 0 + false + + + 3808 + Pirate01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay! Sneak forward, reach your hand out, and {{input}} on her head. Maybe that will calm her down. Remember to avoid sudden movements...</Text><ID>928974</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate01T06CS.unity3d/PfGrpPirate01T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWTripleStryke</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTripleStryke</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Triple Stryke</Text><ID>928972</ID></Title><Desc><Text>{{Input}} on the Triple Stryke</Text><ID>928972</ID></Desc></Data> + 0 + false + + + 3809 + Pirate01T07 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsTrapped</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That's the opposite of calming down! Ugh. +I'll swing back towards Dragon's Edge and make sure everyone is safe. Can you look for the dragon on the other side of the island?</Text><ID>928977</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You're going to be all right, Meatlug. Stay with me, girl, and I'll protect you!</Text><ID>928978</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate01T07CS.unity3d/PfGrpPirate01T07CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FishlegsTrapped</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsTrapped</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Triple Stryke</Text><ID>928975</ID></Title><Desc><Text>Look for the Triple Stryke</Text><ID>928975</ID></Desc></Data> + 0 + false + + + 3810 + Pirate01T08 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsTrapped</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>It looks like I'm just in time, ha ha!@@{{Name}}! Sleuther can only intimidate the Triple Stryke for so long. You need to scare her away. Have {{dragon name}} shoot a fireball by the dragon's foot! Shoot fast, shoot strong, but most importantly, don't hit my dragon!</Text><ID>928981</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>My boy Sleuther couldn't have done it any better. Great shot!</Text><ID>928982</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate01T08CS.unity3d/PfGrpPirate01T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ShootTripleStryke</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfMarker_ShootTripleStryke</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the ground to scare off the Triple Stryke</Text><ID>928979</ID></Title><Desc><Text>Shoot the ground to scare off the Triple Stryke</Text><ID>928979</ID></Desc></Data> + 0 + false + + + 3811 + Pirate01T09 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsTrapped</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I'll help Fishlegs get Meatlug back on her feet in fighting shape in no time. Don't worry about her; she's a fighter, just like Shattermaster! +Will you go back to Dragon's Edge and tell my brother what happened?</Text><ID>928985</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. Dagur! I'm glad you and Meatlug are safe. +I've been trying to figure out why she went rogue; wild dragons aren't generally so driven to attack humans, even ones as touchy as the Triple Stryke. We need to get to the bottom of this.</Text><ID>928986</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Title><Desc><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Desc></Data> + 0 + false + + + 3812 + Pirate01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ah! There's Dagur. I need to talk to Astrid about defensive countermeasures first. Can you talk to Dagur and see why he's here? Maybe we can help him out.</Text><ID>928989</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Hey! Sleuther and I have been busy on Berserker Island but I wanted to see how my sister and friends were doing. It ended up being rather dramatic, wouldn't you say? But I suppose it always is. Drama clings to Hiccup like a fashionable cloak! I love it, I love it.@@And yes, Hiccup is right about Triple Strykes. Sleuther can get a bit bristly--especially in the morning--but this is something entirely new. My hackles are up... I must smell a villain in the area. You and I know what to do with villains, am I right {{Name}}?</Text><ID>928990</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205003 + true + 300 + 300 + + 0 + +
+ + 65 +

2

+ 0 + + 1 + 633 + 205003 + true + 65 + 65 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205003 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205003 + true + 200 + 200 + + 0 + +
+ false +
+ + 2528 + Pirate02 + 53 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>What's Going On?</Text><ID>927425</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2526 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2528 + 3813 + 0 + + + 2 + 2528 + 2560 + 0 + + + 1 + 2528 + 3942 + 0 + + + 1 + 2528 + 3943 + 0 + + + 2 + 2528 + 2561 + 0 + + + 1 + 2528 + 3814 + 0 + + + 1 + 2528 + 3815 + 0 + + + 1 + 2528 + 3816 + 0 + + + 1 + 2528 + 3817 + 0 + + + 1 + 2528 + 3818 + 0 + + + 1 + 2528 + 3819 + 0 + + + + 1 + 205004 + 0 + + 2560 + Pirate02T01A + 53 +

2528

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2560 + 3941 + 0 + + + + 1 + 205044 + 0 + + 3941 + Pirate02T01A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>With berserk dragons around, you need to be able to defend yourself and work together with your allies to stop them. I'm working on a weapon that would be perfect in your hands, but Gobber isn't done gathering the materials yet. Will you ask him for the materials? </Text><ID>928993</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah, you're here for Astrid's axe, huh? Let me tell you, I've spent years breathing life into beautiful weapons and I've never seen anything like her axe. She has a mind for weapons, just like me!</Text><ID>928994</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber at Scuttleclaw Island</Text><ID>928991</ID></Title><Desc><Text>Talk to Gobber at Scuttleclaw Island</Text><ID>928991</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 13426 + + 1 + 5535 + 205044 + true + 2 + 2 + + 0 + +
+ false + + + 2561 + Pirate02T01D + 53 +

2528

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Bring the Shivertooth fang to Astrid</Text><ID>927424</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2561 + 3944 + 0 + + + + 1 + 0 + 0 + + 3944 + Pirate02T01D + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_STAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should bring the fangs to Astrid in Dragon's Edge.</Text><ID>928997</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow, it doesn't have any cracks or chips. It's perfect! You and Gobber did great work. Give me one moment to get your present ready.</Text><ID>928998</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>13426</Value></Pair><Pair><Key>ItemDescription</Key><Value>Shivertooth Fang</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the Shivertooth fangs to Astrid</Text><ID>928995</ID></Title><Desc><Text>Bring the Shivertooth fangs to Astrid</Text><ID>928995</ID></Desc></Data> + 0 + false + + false +
+ + 3813 + Pirate02T01 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_STAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Do you really think it was just coincidence that the Triple Stryke chose Dragon's Edge for her little destructive spree? Please. I may not be book smart but I'm clever like a Skrill. This is [c][3eebff]exactly[/c][ffffff] what I'd do to my enemy. Ask Astrid what she thinks if you want a sane opinion.</Text><ID>929001</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dagur's right; we can't assume that this is a one-time thing. That dragon was acting really strange, and we all know Hiccup has more than his fair share of enemies. We'll have to find out exactly what – or who – is behind this, and stop them.</Text><ID>929002</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 3814 + Pirate02T02 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_STAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate02T02.unity3d/PfGrpPirate02T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's brush up on your battle tactics. Take this ice axe and we'll run through the Dragon Tactics practice course together!</Text><ID>929005</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey, you did great! I'll expect bigger and better things from you, and I know you'll overcome all the courses. We'll have to run you through a lot of practice courses to get you ready for anything that we may have to face. </Text><ID>929006</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STPirateArenaMapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Complete Astrid's Dragon Tactics challenge</Text><ID>929003</ID></Title><Desc><Text>Complete Astrid's Dragon Tactics challenge</Text><ID>929003</ID></Desc></Data> + 0 + false + + + 3815 + Pirate02T03 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate02T03.unity3d/PfGrpPirate02T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_STAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh, Heather's here! Great. She wanted to give this exercise a shot, and I bet Windshear is raring to give it a go too. Can you talk to her and let her know that it's ready?</Text><ID>929009</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Greet Heather by the stables</Text><ID>929007</ID></Title><Desc><Text>Greet Heather by the stables</Text><ID>929007</ID></Desc></Data> + 0 + false + + + 3816 + Pirate02T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate02T03.unity3d/PfGrpPirate02T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_Johann</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That sounds great. But first, I'm here for you! Johann is looking for you; he says that he really needs your help with something vital. He seemed really stressed. Will you go talk to him at Hobblegrunt Island? He said he'd wait by the crossed trees on the far side of the island.</Text><ID>929012</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>I see that Heather got my message to you! Oh, that is most excellent indeed. The need is both pressing and great, and you are the only Viking who may bring salvation to my most distressing situation. I'll bring you up to speed as fast as I can (and to save time, I will attempt to reign in my flourishes).</Text><ID>929013</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Johann at Hobblegrunt Island</Text><ID>929010</ID></Title><Desc><Text>Find Johann at Hobblegrunt Island</Text><ID>929010</ID></Desc></Data> + 0 + false + + + 3817 + Pirate02T05 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpPirate02T05.unity3d/PfGrpPirate02T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBVolcano.unity3d/PfUiMissionActionDBVolcano</Asset><NPC>PfDWJohann</NPC><Text>I was asked to arrange a meeting with a man who has an... extensive history with Hiccup and the illustrious others. And yes, some of that history was fraught with conflict. However, he approached me in good faith and asked me to remind you that he helped everyone survive on Dragon Island.@@Harald is waiting for you below the hill... and I believe he is a friend. Please talk to him.</Text><ID>929016</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>{{Name}}! What a pleasure. I know, I know – why am I here after I last fled with my tail tucked between my legs? Well, can you blame me for fleeing a dragon the size of an island? Besides, I helped you out then, and I'm here to do you another favor. Berk will gain a very powerful ally, if you have the courage to listen.</Text><ID>929017</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go to the shore and speak to Harald</Text><ID>929014</ID></Title><Desc><Text>Speak to Harald at Hobblegrunt Island</Text><ID>941786</ID></Desc></Data> + 0 + false + + + 3818 + Pirate02T06 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpPirate02T05.unity3d/PfGrpPirate02T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_JohannBeach</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Interested? My new boss has asked me to extend an invitation to you to her battleship. I told her that you are a moral Viking with Hiccup's ear. He's stubborn and headstrong; I don't know if he could put his misplaced hatred of me aside to have a peaceful talk. I bet [c][3eebff]you[/c][ffffff] can.</Text><ID>932810</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>My word. You may be a bit apprehensive about this offer, but I believe that we have a duty to listen to his offer. If his assertion is correct, his new employer will introduce a large shift in power in the archipelago. It is best to meet them and be prepared for what comes next. @@I shall go with you to make sure that you are safe. Harald's boat is waiting for us at the shore... let us board together.</Text><ID>932914</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Here we are at the jewel of the ocean: the Tempest. The captain standing on the bridge of the ship is no less impressive. (You'll find out for yourself soon enough.)</Text><ID>929022</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate02T06CS.unity3d/PfGrpPirate02T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take Harald's ship to Stormheart's Base</Text><ID>929018</ID></Title><Desc><Text>Take Harald's ship to Stormheart's Base</Text><ID>929018</ID></Desc></Data> + 0 + false + + + 3819 + Pirate02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Don't mind the bristling weapons or the sense of foreboding dread around the ship. I vouch for your safety, and my word is as good as gold! Johann and I will wait for you here, mate. Go on, then- Stormheart is waiting for you.</Text><ID>929025</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Harald tells me you are a warrior for Hiccup's army and you have his ear. Good. +That will make this conversation efficient: my favorite word.</Text><ID>929026</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald's new boss</Text><ID>929023</ID></Title><Desc><Text>Talk to Harald's new boss</Text><ID>929023</ID></Desc></Data> + 0 + false + + + 3942 + Pirate02T01B + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate02T01B.unity3d/PfGrpPirate02T01B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Now, I've found two of the Shivertooth fangs she asked for. (Be careful, they're freezing cold!) He's somewhere on this island... Can you find him and give him fish? They're Shivertooth's favorite, you see, and it'll help you get in the icy tyke's good graces!</Text><ID>929029</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Shivertooth</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWShivertooth</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Look for the Shivertooth and {{input}} on him</Text><ID>929027</ID></Title><Desc><Text>{{Input}} on the Shivertooth</Text><ID>941787</ID></Desc></Data> + 0 + false + + + 3943 + Pirate02T01C + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate02T01C.unity3d/PfGrpPirate02T01C</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate02T01B.unity3d/PfGrpPirate02T01B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like the Shivertooth will let you into his lair! You should look for a Shivertooth fang.</Text><ID>929032</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectShiverToothFang</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up a Shivertooth fang</Text><ID>929030</ID></Title><Desc><Text>Pick up a Shivertooth fang at Scuttleclaw Island</Text><ID>941788</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205004 + true + 300 + 300 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205004 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 205004 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205004 + true + 50 + 50 + + 0 + +
+ false +
+ + 2529 + Pirate03 + 54 +

+ <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Queen of the Sea</Text><ID>927427</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2528 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2529 + 3820 + 0 + + + 2 + 2529 + 2530 + 0 + + + 1 + 2529 + 3822 + 0 + + + 1 + 2529 + 3823 + 0 + + + 1 + 2529 + 3824 + 0 + + + 1 + 2529 + 3825 + 0 + + + 1 + 2529 + 3826 + 0 + + + 1 + 2529 + 3827 + 0 + + + 1 + 2529 + 3828 + 0 + + + 1 + 2529 + 3829 + 0 + + + 1 + 2529 + 3830 + 0 + + + 1 + 2529 + 3831 + 0 + + + 1 + 2529 + 3832 + 0 + + + 1 + 2529 + 3833 + 0 + + + + 1 + 205005 + 0 + + 2530 + Pirate03T02 + 54 +

2529

+ <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_MidDeck</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the crate</Text><ID>927426</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2530 + 3821 + 0 + + + + 1 + 205019 + 0 + + 3821 + Pirate03T02 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate03T02.unity3d/PfGrpPirate03T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I have a small gift for Hiccup and his friends; you can consider it a payment for the chaos the Triple Stryke caused within your home. The damage was... unintentional. {{Input}} on the crate, please.</Text><ID>929035</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I hope you find it charming. Harald has told me that Hiccup appreciates fine engineering and design. I thought I could share my personal style with this statue... a gift to remind him of his new neighbor.</Text><ID>929036</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfCratePirateQueen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCratePirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the crate</Text><ID>927426</ID></Title><Desc><Text>{{Input}} on the crate on the ship</Text><ID>941789</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13405 + + 1 + 5515 + 205019 + true + 1 + 1 + + 0 + +
+ false + + + 3820 + Pirate03T01 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_PirateQueen</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate03T02.unity3d/PfGrpPirate03T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I am Nikora Stormheart, the captain of this vessel. Harald has told me a lot about your exploits with Hiccup and his troops. From what I understand, Hiccup is a fascinating man. I hope that he is willing to hear some sound advice. +{{Input}} on me and follow me. I will show you a few things.</Text><ID>929039</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MidDeck</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Spline</Key><Value>Follow_Spline_Queen</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Stormheart and follow her</Text><ID>929037</ID></Title><Desc><Text>{{Input}} on Stormheart and follow her</Text><ID>929037</ID></Desc><Reminder><Text>Stay close to Stormheart!</Text><ID>936326</ID></Reminder><Failure><Text>Oh no! Stormheart left you behind!</Text><ID>936327</ID></Failure></Data> + 0 + false + + + 3822 + Pirate03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Thank you for your time. I have no doubt that you will get my message to Hiccup faithfully. Remember: our paths need not cross, for we look towards different goals on the horizon. Do not cross me and I will not consider you an enemy. +Your merchant friend is waiting for you.</Text><ID>929042</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>What an unsettling place, and a chilling captain to boot! Did she tell you why she has arrived within these waters? I wonder if she is planning on challenging Hiccup or the Dragon Hunters for supremacy.@@(She certainly could, with these weapons.) Did she tell you anything about fighting the Dragon Hunters?</Text><ID>929043</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Johann</Text><ID>927429</ID></Title><Desc><Text>Talk to Johann</Text><ID>927429</ID></Desc></Data> + 0 + false + + + 3823 + Pirate03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Well, I'm past ready to set sail far away from this warship! I am sure Stormheart wouldn't have any qualms with your flying away on {{dragon name}}; perhaps you should return to Dragon's Edge and inform Hiccup.</Text><ID>929046</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>930720</ID></Title><Desc><Text>Go to Dragon's Edge</Text><ID>929044</ID></Desc></Data> + 0 + false + + + 3824 + Pirate03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Welcome back. Heather told me that you went on an errand with Johann. What's going on? </Text><ID>929049</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBVolcano.unity3d/PfUiMissionActionDBVolcano</Asset><NPC>PfDWHiccup</NPC><Text>I don't approve of you going to face this Stormheart without backup... but thank you. I don't trust Harald, but he's right; he did try to help us at Dragon Island. Maybe we don't have to be enemies with Nikora. I'm sure she didn't mean to drive the Triple Stryke crazy, so we'll help her stop that.@@And this statue is... uh... interesting. It's not what I prefer, but I see why she likes it. I don't know where we can put it; let's leave it here for now.</Text><ID>929050</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13405</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Inform Hiccup about Nikora Stormheart</Text><ID>929047</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 3825 + Pirate03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>'Accidentally'? Sorry to butt in, brother, but I can't watch you be hoodwinked. Stormheart appears and 'apologizes' for what happened right after. It smells fishy... and Dagur doesn't like fishy. I'd wager my new axe that Stormheart did this on purpose as a warning. And I do love the way she slices through the air... Ooooh!@@Anyway! Hiccup, you listen to Astrid. {{Name}}, will you ask her what she thinks?</Text><ID>929053</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dagur's - well, he's a little crazy but he's right. I'm not entirely sure what's going on but I don't like how this feels. And this statue is too weird. +Hiccup tries to see the best in people, but that might get us in trouble this time...</Text><ID>929054</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 3826 + Pirate03T07 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpPirate03T07.unity3d/PfGrpPirate03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, we can still take some steps to protect ourselves. Remember that sound we made with the Deadly Nadder spines? Hiccup and I want to use that sound to set up defenses around Dragon's Edge if the Triple Stryke ever came back.@@You see, all objects in motion gather kinetic energy as it travels through the air. When two objects collide, each object transfers some of its energy to the other. That energy flows out into vibrations, which in turn create sound waves. So, we are going to try to create a device that can do that for us when we 'flip the switch', so to speak.@@We need a lot of wood logs to make these contraptions. Can you gather 6 wood logs from the trees at the Wilderness?</Text><ID>929057</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great!</Text><ID>922905</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridGreat</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop 6 wood logs at the Wilderness</Text><ID>929055</ID></Title><Desc><Text>Chop 6 wood logs at the Wilderness</Text><ID>929055</ID></Desc></Data> + 0 + false + + + 3827 + Pirate03T08 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpPirate03T07.unity3d/PfGrpPirate03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>While you were harvesting wood logs, I set Heather and Windshear on the task of whittling wood logs for the posts that will host the devices. Can you join up with Heather and see what you need to do next?</Text><ID>929061</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey! Windshear and I are really excited to help out. As you can tell with the water wheel on the Lab, I have a keen interest in inventions that can put [c][3eebff]kinetic[/c][ffffff] energy to good use. (That's a type of energy created by moving things.)@@The water wheel powers a lot of my instruments, and this device will be able to create the sound we want!</Text><ID>929062</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 3828 + Pirate03T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let's hurry back to Dragon's Edge and put these to good use. </Text><ID>929065</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Dragon's Edge</Text><ID>930315</ID></Title><Desc><Text>Go back to Dragon's Edge</Text><ID>930315</ID></Desc></Data> + 0 + false + + + 3829 + Pirate03T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Okay! Hiccup made blueprints for the noisemakers, and everyone's ready to help make them. Can you start off by giving Hiccup two wood logs? That should be enough to make the invention.</Text><ID>929068</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>When we try to create a solution to a problem, we need to know that there are many ways to meet all the requirements of the problem. We brainstorm ideas that could work. Then, we try to make a model and test it. If it doesn't work, we fix and try again. @@Astrid and I think that this device might fit our needs; what do you think?</Text><ID>932811</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBNoiseMaker.unity3d/PfUiMissionActionDBNoiseMaker</Asset><NPC>PfDWHiccup</NPC><Text>invention</Text><ID>932915</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 2 wood logs to Hiccup</Text><ID>929066</ID></Title><Desc><Text>Give 2 wood logs to Hiccup</Text><ID>929066</ID></Desc></Data> + 0 + false + + + 3830 + Pirate03T11 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridClicker</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's an excellent sketch! Can you pass two wood logs and the instructions to Astrid? She's working on one of the devices.</Text><ID>929073</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll get this done right away. I can't wait to see it working!</Text><ID>929074</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 2 wood logs to Astrid</Text><ID>929071</ID></Title><Desc><Text>Give 2 wood logs to Astrid</Text><ID>929071</ID></Desc></Data> + 0 + false + + + 3831 + Pirate03T12 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_TuffnutClicker</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutClicker</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>And the final helpers: the... twins. I know, I know; they're flighty but surprisingly reliable when it comes to the important things. Give the rest of the wood logs to Tuffnut, and they'll make sure the last whistling machine gets set up by the far side of Dragon's Edge.</Text><ID>929077</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Now that we have the valuable wood in our hands, Ruffnut and I will be able to put our own flourish onto this! What do you think, dear sister: giant wooden octopus or a statue of Loki on top of the pole? No, I got it: a whittled rendition of the greatest friend, Chicken!</Text><ID>932812</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>This calls for a 'Nut council meeting, Tuffnut. Chicken is your branch of the family and this pole should be a proud representation of us both. Let's lock helmet horns and come up with the answer.</Text><ID>932916</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give 2 wood logs to Tuffnut</Text><ID>929075</ID></Title><Desc><Text>Give 2 wood logs to Tuffnut</Text><ID>929075</ID></Desc></Data> + 0 + false + + + 3832 + Pirate03T13 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_1stClickerHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_1stClickerAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_1stClickerHeather</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Don't lose sight of the goal, guys... Hiccup, can you make sure they don't make anything crazy?@@Okay! Thank you for getting the logs to all the right people. They've been able to create some incredible things, with Hiccup and Astrid supervising of course. We're by the west entrance of the camp; come find us!</Text><ID>929082</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is great! With these posted around Dragon's Edge, we'll be ready if the Triple Stryke returns here. I'm sure it can keep her disoriented long enough for us to stop her rampage.</Text><ID>929083</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_1stClickerHiccup</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid and Heather by the new invention</Text><ID>929080</ID></Title><Desc><Text>Find Astrid and Heather by the new invention</Text><ID>929080</ID></Desc></Data> + 0 + false + + + 3833 + Pirate03T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm really glad that we've established a strong defense, but Dagur doesn't seem to agree. I know that look on his face: he's stewing on something. Can you talk to him and see what's going on in his head?</Text><ID>929086</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I have my thinking helmet on and the numbers aren't looking good, you know? All the defenses in the world aren't going to help us if our enemies can plot and plan and unleash hell on us! If we want to win, we have to take the fight to them. That's the Berserker way!</Text><ID>929087</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205005 + true + 300 + 300 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 205005 + true + 45 + 45 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 205005 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205005 + true + 50 + 50 + + 0 + +
+ false +
+ + 2532 + Pirate04 + 53 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpPirate04T00.unity3d/PfGrpPirate04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Grimora?</Text><ID>927428</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2529 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2532 + 3834 + 0 + + + 1 + 2532 + 3835 + 0 + + + 1 + 2532 + 3836 + 0 + + + 1 + 2532 + 3837 + 0 + + + 1 + 2532 + 3838 + 0 + + + 1 + 2532 + 3839 + 0 + + + 1 + 2532 + 3840 + 0 + + + 1 + 2532 + 3841 + 0 + + + 1 + 2532 + 3842 + 0 + + + 1 + 2532 + 3843 + 0 + + + 1 + 2532 + 3844 + 0 + + + 1 + 2532 + 3845 + 0 + + + + 1 + 205006 + 0 + + 3834 + Pirate04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>We need to figure out why the Triple Stryke acted so aggressively. I can't bear the idea of something like this happening to Sleuther. If anyone hurt my baby I'd take my axe and I'd... +Whoa! Calm down, Dagur. Rage doesn't solve anything. @@ Astrid trained Sleuther with Nadder spines while blind so I'm sure her intuition about the Triple Stryke will be useful. Could you ask her?</Text><ID>929090</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dagur is right and surprisingly on point today. That Triple Stryke reacted to the clicking sounds but when we got close, it all went wrong.</Text><ID>929091</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>See if Astrid has any ideas</Text><ID>929088</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 3835 + Pirate04T02 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_PLACEHOLDER</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Something stuck in my mind about how that dragon was acting. The only time I've ever come across a dragon this unstable was when all our dragons were infested by those awful Grimora. I wonder if the Triple Stryke is infested by them... @@ Fishlegs has been researching those parasites so he'll know if they're back. Can you ask him if he agrees with my theory?</Text><ID>929094</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That idea had occurred to me, too! The Grimora are worm-like parasites with tiny wings and sharp teeth that latch onto passing dragons. Once they latch on, they crawl under a dragon's scales and inject a toxin that drives a good dragon mad. They're relentless, and we know only one of their weaknesses: salt. @@ Lucky for us, they're quite rare and only live in [c][3eebff]freshwater biomes[/c][ffffff] such as ponds, lakes, streams, rivers, and wetlands!</Text><ID>929095</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Fishlegs about the Grimora theory</Text><ID>929092</ID></Title><Desc><Text>Tell Fishlegs about the Grimora theory</Text><ID>929092</ID></Desc></Data> + 0 + false + + + 3836 + Pirate04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yo Fishlegs, my man! Did you just say 'Grimora'? I see you've been to Hobblegrunt Island, too. Ruffnut and I think that they might be living in those weird patches of water that just popped up. We're keeping Barf and Belch away, but Ruffnut thinks we might be able to get them to feed on me. I can't wait!</Text><ID>932813</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wait, you saw Grimora at Hobblegrunt Island? What ecosystem could they have found on that island since there are no freshwater lakes? +Well, whatever the answer, this is huge news. We need to tell Hiccup right away!</Text><ID>932917</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh no... If there are Grimora behind this, we'll need to get buckets of salt water ready at the Edge in case the Triple Stryke comes back. @@ We have to consider that island to be extremely dangerous. We can't let our dragons get infested ever again.</Text><ID>929100</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup about the Grimora</Text><ID>929096</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 3837 + Pirate04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Still, we can't leave it alone. If the Grimora are this close to Dragon's Edge, all of our dragons could be at risk. Let's go to Hobblegrunt Island and look for these pools that the twins found. Stay close to your dragon, guys.</Text><ID>929103</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Watch out, {{Name}}! Don't let {{dragon name}} touch that water!</Text><ID>929104</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_VernalPool</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_VernalPool</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the strange pool of water on Hobblegrunt Island</Text><ID>929101</ID></Title><Desc><Text>Visit the vernal pool at Hobblegrunt Island</Text><ID>941790</ID></Desc></Data> + 0 + false + + + 3838 + Pirate04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We found the Grimora! That Triple Stryke must have gotten too close to the pond and gotten infected. I don't know how Stormheart is involved, but it looks like it might have been an accident. @@ We need to figure out a way to keep our dragons from making the same mistake without destroying this ecosystem. Come to think of it, I don't even know how this pond got here; it wasn't here last week. Can you ask Fishlegs if he knows how this pond arrived?</Text><ID>929107</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Of course, this wasn't here before. It's a [c][3eebff]vernal pool[/c][ffffff]! [c][3eebff]Vernal pools[/c][ffffff] are temporary pools of water that usually form in the spring and dry up by summer. While they're full, they function as a habitat for plants, amphibians (like salamanders), and reptiles (such as turtles). @@ These creatures migrate to vernal pools because they are isolated sources of water. The young ones can grow strong here without the threat of predators.</Text><ID>932814</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBVernalPool.unity3d/PfUiMissionActionDBVernalPool</Asset><NPC>PfDWFishlegs</NPC><Text>Vernal</Text><ID>932918</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Fishlegs about the best solution</Text><ID>929105</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 3839 + Pirate04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>This little microcosm of life won't last more than a few months. The Grimora rely on their habitat, like all animals, so they'll have to move on once the vernal pool dries up. This means nature will take care of the problem in the long run, so we just need to find a short term solution!</Text><ID>932817</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Allow me to interrupt, esteemed Vikings. The 'Nuts have been preparing for just this occasion. Tuffnut is currently working feverishly to finish painting signs we can place around the vernal pool. Wild dragons will come by, see the sign, and stay away!</Text><ID>932919</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ruffnut. + +Dragons can't read...</Text><ID>932920</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait Astrid. Ruffnut, that's not a bad idea! That will warn dragon riders away from the Grimora, at least. {{Name}}, can you talk to Ruffnut and find out where you can get these signs?</Text><ID>932921</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHuh</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridReally</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>3</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>My brother's currently at the Thorston Gallery. That's where genius occurs every week (as long as Tuff and I aren't busy fighting Dragon Hunters--or each other).</Text><ID>929116</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut and find the secret Thorston Gallery</Text><ID>929110</ID></Title><Desc><Text>Talk to Ruffnut and find the secret Thorston Gallery</Text><ID>929110</ID></Desc></Data> + 0 + false + + + 3840 + Pirate04T07 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_SignHideout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I'll tell you, and only you, the location of our creative oasis. It's at Zippleback Island; look for it right next to the sculpture of giant rocks! </Text><ID>929119</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Welcome, my friend! My keen artistic mind sensed you were coming... + +It didn't tell me your visit is today, though. Sorry for the mess. +</Text><ID>929120</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SignHideout</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Zippleback Island and look for the Thorston Gallery</Text><ID>929117</ID></Title><Desc><Text>Go to Zippleback Island and look for the Thorston Gallery</Text><ID>929117</ID></Desc></Data> + 0 + false + + + 3841 + Pirate04T08 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_SignHideout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpPirate04T08.unity3d/PfGrpPirate04T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Let me show you some of our finest pieces! I'm sure you've already noticed Giant Rock Pile, a Ruffnut original. Watch your step around the Deluxe Chicken Suite and you'll find the signs in the back, each numbered and signed by the artist.</Text><ID>929123</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Aren't they wonderful? They're intimidating yet obvious.</Text><ID>929124</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfWoodSignKO</Value></Pair><Pair><Key>Name</Key><Value>PfWoodSignKO</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather the two 'Keep Out' signs</Text><ID>929121</ID></Title><Desc><Text>Collect the two signs</Text><ID>941791</ID></Desc></Data> + 0 + false + + + 3842 + Pirate04T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Treat the signs like members of your own family. Hurry; take them to the vernal pool on Hobblegrunt Island. +If I think about it much longer I might regret my decision. Go!</Text><ID>929127</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Welcome back! I hope Tuffnut's 'artistic side' didn't scare you too much.</Text><ID>929128</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_VernalPool</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_VernalPool</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the vernal pool at Hobblegrunt Island</Text><ID>929125</ID></Title><Desc><Text>Return to the vernal pool at Hobblegrunt Island</Text><ID>929125</ID></Desc></Data> + 0 + false + + + 3843 + Pirate04T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We dug some dirt mounds on either side of the vernal pool that'll hold the signs. You just need to {{input}} the closer mound of dirt.</Text><ID>929131</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You know, that sign doesn't look half bad.</Text><ID>929132</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>DirtPile01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>DirtPile01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13406</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the nearby dirt mound to place a sign</Text><ID>929129</ID></Title><Desc><Text>{{Input}} on the nearby dirt mound to place a sign</Text><ID>929129</ID></Desc></Data> + 0 + false + + + 3844 + Pirate04T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Whoo! Digging these mounds really eased the tension in my shoulders. Take it from me: sweating really cools out the anger. {{Input}} on the dirt mound by me!</Text><ID>929135</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I love it!</Text><ID>929136</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>DirtPile02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>DirtPile02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13406</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the other dirt mount to place the sign</Text><ID>929133</ID></Title><Desc><Text>{{Input}} on the other dirt mount to place the sign</Text><ID>929133</ID></Desc></Data> + 0 + false + + + 3845 + Pirate04T12 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_HeadmasterLab</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Little flying worm parasites like the Grimora aren't my thing, but you know what? They're exactly Heather's style. Ha! I love my weird little sister. +Let's talk to her at the School together!</Text><ID>929139</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>{{Name}} and Dagur! What a pleasant surprise, unlike some Grimora we know. Who would have thought Hobblegrunt Island would become so dangerous overnight? Hiccup and I have been talking about what we can do. I hope we can find something.</Text><ID>929140</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the School</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather at the School</Text><ID>929137</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205006 + true + 300 + 300 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205006 + true + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205006 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205006 + true + 200 + 200 + + 0 + +
+ false +
+ + 2536 + Pirate06 + 53 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T00.unity3d/PfGrpPirate06T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Prepare For the Worst</Text><ID>927435</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2533 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2536 + 3859 + 0 + + + 2 + 2536 + 2537 + 0 + + + 1 + 2536 + 3863 + 0 + + + 1 + 2536 + 3864 + 0 + + + 1 + 2536 + 3865 + 0 + + + 1 + 2536 + 3866 + 0 + + + 1 + 2536 + 3867 + 0 + + + 1 + 2536 + 3868 + 0 + + + + 1 + 205008 + 0 + + 2537 + Pirate06T02 + 53 +

2536

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}, it's time to turn on the noise makers we installed all around Dragon's Edge and we'll free her from the Grimora. {{Input}} on each of the devices and stay clear of the Triple Stryke. Dagur and I will distract her until they're on. Go!</Text><ID>927433</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T02.unity3d/PfGrpPirate06T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Whoa Astrid, it's working! You and Hiccup always blow me away; you're geniuses, really.</Text><ID>927434</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate06T02CS.unity3d/PfGrpPirate06T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Activate the Inventions</Text><ID>927432</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2537 + 3860 + 0 + + + 1 + 2537 + 3861 + 0 + + + 1 + 2537 + 3862 + 0 + + + + 1 + 0 + 0 + + 3860 + Pirate06T02A + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PFDEClicker01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PFDEClicker01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the lever and activate the invention</Text><ID>929196</ID></Title><Desc><Text>{{Input}} on the lever and activate the invention</Text><ID>929196</ID></Desc></Data> + 0 + false + + + 3861 + Pirate06T02B + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PFDEClicker02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PFDEClicker02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the lever and activate the invention</Text><ID>929196</ID></Title><Desc><Text>{{Input}} on the lever and activate the invention</Text><ID>929196</ID></Desc></Data> + 0 + false + + + 3862 + Pirate06T02C + <Data><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PFDEClicker03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PFDEClicker03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the lever and activate the invention</Text><ID>929196</ID></Title><Desc><Text>{{Input}} on the lever and activate the invention</Text><ID>929196</ID></Desc></Data> + 0 + false + + false + + + 3859 + Pirate06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Listen. I used to think Hiccup was my enemy, and I got incensed every time he did one of his noble-yet-terribly-inconvenient-to-Dagur things. Stormheart and I are cut from the same cloth. In fact, I would bet all the axes on Berserker Island that she's on her way here right now. It doesn't matter that it was a mistake. @@ Hiccup has one of his fancy telescopes here, right? {{Input}} on the telescope and scan our horizon for our enemies.</Text><ID>929202</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ha! I knew it. I would have done the same thing; hey, I [c][3eebff]did[/c][ffffff] this to Hiccup back in the day.</Text><ID>932820</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now is not the time, Dagur! We need to deal with this angry Triple Stryke before we can even think about Stormheart.</Text><ID>932924</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate06T01CS.unity3d/PfGrpPirate06T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfTelescopeCutscene</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTelescopeCutscene</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the telescope at the top of Dragon's Edge</Text><ID>929200</ID></Title><Desc><Text>{{Input}} on the telescope at the top of Dragon's Edge</Text><ID>929200</ID></Desc></Data> + 0 + false + + + 3863 + Pirate06T03 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T03.unity3d/PfGrpPirate06T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsBuckets</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T04.unity3d/PfGrpPirate06T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Astrid, I've brought the buckets of salt water from the harbor like we planned. {{Name}}, {{input}} on the buckets and splash the Triple Stryke. That should make all the Grimora flee in terror!</Text><ID>929207</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate06T03CS.unity3d/PfGrpPirate06T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ah, that didn't work, that didn't work... Why didn't that work, Hiccup?</Text><ID>929208</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>Buckets</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>Buckets</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the buckets of sea water</Text><ID>929205</ID></Title><Desc><Text>{{Input}} on the buckets of sea water</Text><ID>929205</ID></Desc></Data> + 0 + false + + + 3864 + Pirate06T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T04.unity3d/PfGrpPirate06T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I don't know either, Fishlegs, but we're going to have to figure it out later. Her statue sprayed something into the air, and it's no accident that these wild dragons landed here. She's up to something! @@ {{Name}}, can you shoo these dragons away from here? I think Dragon's Edge is about to turn into a battlefield and we don't want these guys to get hurt. {{Input}} on the Deadly Nadder and shoo him away!</Text><ID>929211</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate06T04CS.unity3d/PfGrpPirate06T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WildNadder</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeadlyNadder01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Get close to the wild Deadly Nadder and {{input}} him</Text><ID>929209</ID></Title><Desc><Text>{{Input}} on the wild Deadly Nadder</Text><ID>941792</ID></Desc></Data> + 0 + false + + + 3865 + Pirate06T05 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T04.unity3d/PfGrpPirate06T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T05.unity3d/PfGrpPirate06T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Let me step in here: going berserk is my specialty! +If we can't free them from this Grimora venom, we need to drive them away. Axe out, {{Name}} - let's scare these dragons away from our base!</Text><ID>932821</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh no. Oh no! I think the Grimora latched on to all of the wild dragons. They're going to go berserk at any moment!</Text><ID>932925</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWhoa</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Yes! You're my favorite combat partner!</Text><ID>929216</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate06T05CS.unity3d/PfGrpPirate06T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FishlegsWall</Value></Pair><Pair><Key>Name</Key><Value>STPirateDEMapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics Battle</Text><ID>935882</ID></Title><Desc><Text>Defeat the Dragon Tactics Battle</Text><ID>933766</ID></Desc></Data> + 0 + false + + + 3866 + Pirate06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great job. Fishlegs and the twins are chasing those dragons with buckets of salt water and it seems to be working to free them from the Grimora. That's a relief... but why didn't it work on the Triple Stryke? @@ We need to figure out what Stormheart did to the dragon and why her 'gift' made the dragon attack it! Can you take a closer look?</Text><ID>929219</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh for Odin's sake! Stormheart hid a Triple Stryke egg in her 'gift.' No wonder the Triple Stryke was so desperate to break it open. She just wanted to save her egg...</Text><ID>929220</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PirateQueenStatue</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get a close look at Stormheart's 'gift'</Text><ID>929217</ID></Title><Desc><Text>Visit Stormheart's statue</Text><ID>941793</ID></Desc></Data> + 0 + false + + + 3867 + Pirate06T07 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate06T07.unity3d/PfGrpPirate06T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's despicable. This statue was a setup from the very beginning; I can't forgive her using these dragons without any regard to their lives. We need to stop her. @@ Maybe we can find something - anything - that will help us find out how she's poisoning the Triple Stryke. Can you help me search this debris for any clues?</Text><ID>929223</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good find! That slimy stuff must be her saliva. She must have been biting hard on it as she ripped it apart. That gives me an idea...</Text><ID>929224</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGoodJob</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfStatuePiece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find a clue to help figure out what happened</Text><ID>929221</ID></Title><Desc><Text>Collect the broken shard</Text><ID>941794</ID></Desc></Data> + 0 + false + + + 3868 + Pirate06T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I think we might be able to find something in that saliva. I've been cooking up a new invention with Heather that might give us some answers. Can you go to the School and give the piece to Heather?</Text><ID>929227</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow! Hiccup wants to try our newest project already? +Well, I'm always for experimenting. I'm sure we can make it work together, {{Name}}!</Text><ID>929228</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13397</Value></Pair><Pair><Key>ItemDescription</Key><Value>Statue Piece</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the broken shard to Heather at the School</Text><ID>929225</ID></Title><Desc><Text>Give the broken shard to Heather at the School</Text><ID>929225</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205008 + true + 300 + 300 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 205008 + true + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205008 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205008 + true + 200 + 200 + + 0 + +
+ false +
+ + 2538 + Pirate07 + 15 +

+ <Data><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpPirate07T00.unity3d/PfGrpPirate07T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_FlightmareNest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Grimora Solutions</Text><ID>927439</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2536 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2538 + 2539 + 0 + + + 1 + 2538 + 3870 + 0 + + + 1 + 2538 + 3871 + 0 + + + 1 + 2538 + 3872 + 0 + + + 2 + 2538 + 2540 + 0 + + + 1 + 2538 + 3874 + 0 + + + 2 + 2538 + 2541 + 0 + + + 1 + 2538 + 3876 + 0 + + + 1 + 2538 + 3877 + 0 + + + 1 + 2538 + 3878 + 0 + + + + 1 + 205010 + 0 + + 2539 + Pirate07T01 + 15 +

2538

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Click on Windshear</Text><ID>927436</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2539 + 3869 + 0 + + + + 1 + 205020 + 0 + + 3869 + Pirate07T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpPirate07T01.unity3d/PfGrpPirate07T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need to figure out if the Triple Stryke is really infested with Grimora venom or if it's something entirely new this time. Luckily, we can use a new invention, the microscope, to examine her saliva for toxins. I left the lens in my saddle bag on Windshear. Can you find her and {{input}} on her to retrieve it?</Text><ID>929231</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BeachWindshear</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRazorWhipWindshear</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Windshear at the School to search her saddlebags</Text><ID>929229</ID></Title><Desc><Text>{{Input}} on Windshear at the School to search her saddlebags</Text><ID>929229</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13407 + + 1 + 5516 + 205020 + true + 1 + 1 + + 0 + +
+ false + + + 2540 + Pirate07T05 + 15 +

2538

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Use the microscope</Text><ID>927437</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2540 + 3873 + 0 + + + + 1 + 205021 + 0 + + 3873 + Pirate07T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There, it's ready! The Triple Stryke's saliva should be completely clear and colorless, while any Grimora toxin cells should stick out like a Monstrous Nightmare at a Terrible Terror party. {{Input}} on the microscope and examine the saliva sample!</Text><ID>929234</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Look! The vicious toxic cells are dark green. That's definitely what we're looking for... but how can they still be moving? Don't the Grimora need to be attached to the dragon to keep her poisoned?</Text><ID>932822</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! I have a theory, but we'll need to do some research to test my hypothesis. {{Name}}, take this!</Text><ID>932926</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate07T05CS.unity3d/PfGrpPirate07T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMicroscope</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfMicroscope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the microscope and examine the saliva</Text><ID>929232</ID></Title><Desc><Text>{{Input}} on the microscope</Text><ID>929252</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13408 + + 1 + 5517 + 205021 + true + 1 + 1 + + 0 + +
+ false +
+ + 2541 + Pirate07T07 + 15 +

2538

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Tell Hiccup</Text><ID>927438</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2541 + 3875 + 0 + + + + 1 + 205022 + 0 + + 3875 + Pirate07T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gosh, Heather! That sounds really terrifying. If it's Grimora venom, we can still use salt to neutralize it. We'll need to figure out a way to deliver it into the blood stream and keep her still while we do it. Can you ask Hiccup if he has any ideas?</Text><ID>929239</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ah! I have just the thing.</Text><ID>929240</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Hiccup about Stormheart's poison</Text><ID>929237</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13409 + + 1 + 5518 + 205022 + true + 1 + 1 + + 0 + +
+ false +
+ + 3870 + Pirate07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Is this the right lens? You should show it to Hiccup and see what he thinks.</Text><ID>929243</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That lens is very thick so it should work perfectly in the microscope! A [c][3eebff]lens[/c][ffffff] is a curved piece of glass that bends the light that passes through it. If we bend light in the right way, it'll spread a tiny image into something big enough to see. @@ Not only that: we are going to use two lenses to magnify the image even further! The 'eyepiece lens' at the top will magnify the image from the 'objective lens' at the bottom, increasing the image size [c][3eebff]four hundred times[/c][ffffff].</Text><ID>929244</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Show Hiccup the lens</Text><ID>929241</ID></Title><Desc><Text>Show Hiccup the lens from Windshear</Text><ID>941795</ID></Desc></Data> + 0 + false + + + 3871 + Pirate07T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>If the Triple Stryke is truly infested with Grimora venom, we'd be able to see it! The toxin would show up in the saliva sample because the toxin [c][3eebff]particles[/c][ffffff] would spread throughout the Triple Stryke's whole body. You see, everything in the world is composed of tiny bits of matter called [c][3eebff]particles[/c][ffffff]. @@ Everything, even air, is made out of particles. Whenever {{dragon name}} is flying, their wings push down against hundreds of tiny particles in the air! Particles are made up of smaller units called [c][3eebff]molecules[/c][ffffff] and [c][3eebff]atoms[/c][ffffff], but we can get into those later. @@ We'll be able to tell once and for all if the Triple Stryke is truly afflicted with Grimora venom by using the microscope. Good luck! Can you go to the Clubhouse at Dragon's Edge?</Text><ID>929247</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Clubhouse at Dragon's Edge</Text><ID>929245</ID></Title><Desc><Text>Go to the Clubhouse at Dragon's Edge</Text><ID>929245</ID></Desc></Data> + 0 + false + + + 3872 + Pirate07T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should give the lens to Heather.</Text><ID>929250</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thank you so much! Now that we have the last piece we can really see what's going on. All living things (birds, insects, even dragons) are made out of millions and millions of [c][3eebff]cells[/c][ffffff]. These tiny units hold information that is necessary to keep an organism alive, and different types of cells are designed to do different things. @@ Skin cells keep outside particles from getting inside, bone cells hold us up, and saliva cells produce saliva to help break food down. Grimora toxin particles will look vastly different from saliva cells, so we'll be able to spot them easily.</Text><ID>929251</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13407</Value></Pair><Pair><Key>ItemDescription</Key><Value>Thick Lens</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Heather the lens</Text><ID>929248</ID></Title><Desc><Text>Give Heather the lens</Text><ID>929248</ID></Desc></Data> + 0 + false + + + 3874 + Pirate07T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I took this venom sample from the skin of a dragon that was attacked by the Grimora. Don't worry, it's inactive! Could you {{input}} on the microscope and tell me what you see?</Text><ID>929254</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The toxin is no longer active in your sample! My hypothesis is that dragon skin cells can repel the strength of the toxin and keep it out. However, if the toxin is introduced into the dragon in another way (introduced in a gaseous form, perhaps), it is able to live and thrive much longer.</Text><ID>929255</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate07T06CS.unity3d/PfGrpPirate07T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherWhat</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMicroscope</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfMicroscope</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13408</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the microscope</Text><ID>929252</ID></Title><Desc><Text>{{Input}} on the microscope</Text><ID>929252</ID></Desc></Data> + 0 + false + + + 3876 + Pirate07T08 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate07T08.unity3d/PfGrpPirate07T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I use the Dragon Blade primarily as a fire sword, but it's more versatile than you might think! We can load up one of the canisters with Flightmare gas and blast the Triple Stryke with it. That'll paralyze her for a few moments! @@ We'll need to gather some materials. Can you go to the Flightmare nest in Scuttleclaw Island and chop off some of the frozen Flightmare gas? We can melt it later to fill the canister.</Text><ID>929258</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FlightmareIce</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFlightmareIce</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop the Flightmare ice at Scuttleclaw Island</Text><ID>929256</ID></Title><Desc><Text>Chop the Flightmare ice at Scuttleclaw Island</Text><ID>929256</ID></Desc></Data> + 0 + false + + + 3877 + Pirate07T09 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate07T08.unity3d/PfGrpPirate07T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great! I can get the Flightmare ice to Hiccup. Can you come down here and give the things to me?</Text><ID>929261</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's fantastic! It won't take long to get this canister ready. (It's a fascinating process but also really volatile! We need to do it in The Lab.)</Text><ID>929262</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>12641</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flightmare Ice</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13409</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Blade Canister</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the ice and the Dragon Blade canister to Heather</Text><ID>929259</ID></Title><Desc><Text>Give the ice and the Dragon Blade canister to Heather</Text><ID>929259</ID></Desc></Data> + 0 + false + + + 3878 + Pirate07T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>In all my studies of venoms and toxins, I've never come across anything like what we discovered under that microscope. Now that Stormheart has weaponized the dangerous toxin, it can wreak endless havoc. @@ We need to destroy it. +Every. Last. Drop. +Will you help us? Please find Astrid when you're ready.</Text><ID>929265</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}, we'll stop this toxin at the source and teach her never to mess with dragons again. Are you with me?</Text><ID>929266</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Title><Desc><Text>Talk to Astrid at Dragon's Edge</Text><ID>930211</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 205010 + true + 350 + 350 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205010 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 205010 + true + 55 + 55 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205010 + true + 200 + 200 + + 0 + +
+ false +
+ + 2542 + Edu116 + 46 +

+ <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu116T00.unity3d/PfGrpQEdu116T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQEdu116T05.unity3d/PfGrpQEdu116T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Honey, I Stung Snotlout!</Text><ID>927336</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2522 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2542 + 3879 + 0 + + + 2 + 2542 + 2543 + 0 + + + 1 + 2542 + 3881 + 0 + + + 1 + 2542 + 3882 + 0 + + + 1 + 2542 + 3883 + 0 + + + 1 + 2542 + 3884 + 0 + + + 2 + 2542 + 2544 + 0 + + + 2 + 2542 + 2545 + 0 + + + 2 + 2542 + 2546 + 0 + + + 2 + 2542 + 2547 + 0 + + + + 1 + 205012 + 0 + + 2543 + Edu116T02 + 46 +

2542

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on Hookfang to calm him down</Text><ID>927331</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2543 + 3880 + 0 + + + + 1 + 205011 + 0 + + 3880 + Edu116T02A + <Data><Offer><Type>Popup</Type><ID>928117</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Something's wrong with Hookfang. I can't see anything wrong with him, but he's acting fidgety like he’s trying to say something. Can you {{input}} on him gently? Maybe that'll calm him down.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928118</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Is that a note?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfHookfang</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHookfang</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hookfang to calm him down</Text><ID>927331</ID></Title><Desc><Text>{{Input}} on Hookfang to calm him down.</Text><ID>928116</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13399 + + 1 + 5510 + 205011 + true + 1 + 1 + + 0 + +
+ false + + + 2544 + Edu116T07 + 46 +

2542

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the Smokebreath to smoke the beehive</Text><ID>927332</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2544 + 3885 + 0 + + + + 1 + 205016 + 0 + + 3885 + Edu116T07A + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSmokebreathNPC</Asset><Location>PfMarker_Beehive</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928121</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Gently, now. {{Input}} again on the Smokebreath and stroke the underside of his chin and he'll give us a good amount of smoke. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928122</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You've done well, my billowy little friend! @@ {{Name}}, you'll need this.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSmokebreathNPC</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSmokebreathNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the Smokebreath to smoke the beehive</Text><ID>927332</ID></Title><Desc><Text>{{Input}} on the Smokebreath to smoke the beehive.</Text><ID>928120</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13400 + + 1 + 5514 + 205016 + true + 1 + 1 + + 0 + +
+ false +
+ + 2545 + Edu116T08 + 46 +

2542

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><RemoveItem><ItemID>13400</ItemID><Quantity>1</Quantity></RemoveItem><Title><Text>{{Input}} on the beehive to cut out a piece</Text><ID>927333</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2545 + 3886 + 0 + + + + 1 + 205013 + 0 + + 3886 + Edu118T08A + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSmokebreathNPC</Asset><Location>PfMarker_Beehive</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928125</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We should be able to harvest a piece of the beehive without threatening the bees. {{Input}} on the hive to cut out a tiny piece.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933963</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Wonderful!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfBeehive</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBeehive</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the beehive to cut out a piece</Text><ID>927333</ID></Title><Desc><Text>{{Input}} on the beehive to cut out a piece.</Text><ID>928124</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13401 + + 1 + 5511 + 205013 + true + 1 + 1 + + 0 + +
+ false +
+ + 2546 + Edu116T09 + 46 +

2542

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Bring Phlegma the piece of honeycomb</Text><ID>927334</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2546 + 3887 + 0 + + + + 1 + 205014 + 0 + + 3887 + Edu116T09A + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSmokebreathNPC</Asset><Location>PfMarker_Beehive</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928129</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Don't worry about the piece you took; Bees rebuild and repopulate a beehive even after a piece is harvested. Each piece of the beehive is made up of small six-sided spaces in a [c][3eebff]honeycomb[/c][ffffff] structure. @@ This allows the structure of the beehive to remain even if some pieces are gone, and they can rebuild as much as three pounds of honeycomb in seven days. As long as the queen bee and a few males are safe, the hive will survive. @@ I'll take this friendly little Smokebreath back to his pack. Could you take the honeycomb to Phlegma so she can treat Snotlout before the swelling gets worse?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928130</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Oh, perfect! Now that I've scraped off Snotlout's stings, I just need to extract some honey from the honeycomb.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>13401</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fresh Honeycomb</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring Phlegma the piece of honeycomb</Text><ID>927334</ID></Title><Desc><Text>Bring Phlegma the piece of honeycomb.</Text><ID>928128</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13402 + + 1 + 5512 + 205014 + true + 1 + 1 + + 0 + +
+ false +
+ + 2547 + Edu116T10 + 46 +

2542

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give Snotlout the bottle of honey salve</Text><ID>927335</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2547 + 3888 + 0 + + + + 1 + 205015 + 0 + + 3888 + Edu116T10A + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSmokebreathNPC</Asset><Location>PfMarker_Beehive</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928133</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>There! Give him this bottle of honey salve and tell him to apply to the affected areas a few times. The swelling should go down in no time.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932789</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Thank-th! I'm already feeling better. I'll rope you in next time I plan a beehive raid. Th-notlout! Th-notlout! Oi! Oi! Oi!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932892</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Don't listen to him... but on a serious note, {{Name}}, I was impressed at how well you handled the bees. Why don't you take care of this beehive in your Farm? I'm sure you'll be a fine beekeeper in no time.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>13402</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bottle of Honey Salve</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Snotlout the bottle of honey salve</Text><ID>927335</ID></Title><Desc><Text>Give Snotlout the bottle of honey salve.</Text><ID>928132</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13348 + + 1 + 5513 + 205015 + true + 1 + 1 + + 0 + +
+ false +
+ + 3879 + Edu116T01 + <Data><Offer><Type>Popup</Type><ID>928138</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Did you see that, mate? I just spotted a very agitated Hookfang fly toward the Lookout -- without Snotlout. Could you check on him and see if everything is okay?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928139</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>{{Name}}! Thank Thor you're here.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AgitatedHookfang</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hookfang near the Greenhouse at Lookout</Text><ID>928136</ID></Title><Desc><Text>Find Hookfang near the Greenhouse at Lookout.</Text><ID>928137</ID></Desc></Data> + 0 + false + + + 3881 + Edu116T03 + <Data><Offer><Type>Popup</Type><ID>928142</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>"Help. Bees. Beach." It's in Snotlout's handwriting; no wonder Hookfang looks so worried! We need to find him right away. I'll send a Terror Mail for help while you go ahead and check the beach for him. Go!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928143</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hookfang found you! Thank goodne-th! My tongue i-th all th-wollen from bee th-tings th-o I can't th-peak very well.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnotloutBeach</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13399</ItemID><Quantity>1</Quantity></RemoveItem><Type>Visit</Type><Title><Text>Look for Snotlout on the beach</Text><ID>928140</ID></Title><Desc><Text>Look for Snotlout on the beach in the Lookout.</Text><ID>928141</ID></Desc></Data> + 0 + false + + + 3882 + Edu116T04 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_SnotloutBeach</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928146</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Luckily, Hookie th-aved me from the th-warm of bee-th in the cave up there... Can you {{input}} on me and make th-ure I don't fall and hurt my-th-elf on the way up to Phlegma?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932790</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>You look awful, Snotlout. What happened?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>932893</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I look ama-th-ing con-th-idering I was th-tung about three thousand times. All I wanted wa-th a little bit of honey! Plea-th-e tell me it'-th not permanent.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutUpset02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SnotloutBeach</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreenHouseExit</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>3</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Spline</Key><Value>SnotloutSpline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Snotlout and make sure he gets to Phlegma safely</Text><ID>928144</ID></Title><Desc><Text>{{Input}} on Snotlout and make sure he gets to Phlegma safely.</Text><ID>928145</ID></Desc><Reminder><Text>You're falling behind Snotlout!</Text><ID>936268</ID></Reminder><Failure><Text>You lost Snotlout! He wandered back to the beach.</Text><ID>936269</ID></Failure></Data> + 0 + false + + + 3883 + Edu116T05 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ValkaCave</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928151</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I can't say I'm surprised, Snotlout. Bees are fiercely protective of their home and their [c][3eebff]queen bee[/c][ffffff] (the mother of the bees in the hive). You were too close to both so the bees stung you. @@ A bee’s sting makes a small hole in the skin that allows the venom to get inside. Your body swells up to protect itself, which is why your tongue is too fat too talk well. @@ You'll be fine. I need to scrape out the stingers and apply a salve to stop the swelling. Funnily enough, [c][3eebff]honey[/c][ffffff] will do just the trick. Bees suck up nectar from plants and turn it into honey in their hives for food. It never spoils and has trace amounts of a few chemicals that help heal wounds and reduce swelling. @@ Don't worry, Snotlout. I won't send you back in your condition. {{Name}}, can you head up to the cave and tell Valka about our little situation?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928152</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I received Phlegma's Terror Mail and I came as fast as I could. I can't say I receive many 'bee emergencies.'</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Valka about Snotlout's bee problems</Text><ID>928149</ID></Title><Desc><Text>Tell Valka about Snotlout's bee problems.</Text><ID>928150</ID></Desc></Data> + 0 + false + + + 3884 + Edu116T06 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSmokebreathNPC</Asset><Location>PfMarker_Smokebreath</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GreenHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>928155</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>While I consider myself more of an expert on dragons, I do know that smoke will calm bees. It does two things. First, it makes them chow down on their food supply just in case they need to abandon the hive because of a fire. @@ Second, it masks the way guard bees warn other bees of an intruder. They use [c][3eebff]pheromones[/c][ffffff], chemical messages that hold messages, to talk amongst each other, and the smoke hides the scent. @@ Fortune favors us, my dear. I noticed a small pack of Smokebreaths drinking water from the waterfall as I was flying in. Could you lure one over here to help us? {{Input}} on the closest one and lead him here, please.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928156</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You've found quite a spirited one. He'll make a fine source of smoke.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSmokebreathNPC</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Beehive</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSmokebreathNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the closest Smokebreath and lead him to the beehive</Text><ID>928153</ID></Title><Desc><Text>{{Input}} on the closest Smokebreath and lead him to the beehive.</Text><ID>928154</ID></Desc><Reminder><Text>The Smokebreath can't keep up!</Text><ID>936270</ID></Reminder><Failure><Text>The Smokebreath returned to his pack!</Text><ID>936271</ID></Failure></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205012 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205012 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205012 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205012 + true + 350 + 350 + + 0 + +
+ false +
+ + 2548 + Pirate08 + 11 +

+ <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpPirate08T00.unity3d/PfGrpPirate08T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmith</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Is Harald Our Last Hope?</Text><ID>927442</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2538 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2548 + 3889 + 0 + + + 1 + 2548 + 3890 + 0 + + + 1 + 2548 + 3891 + 0 + + + 1 + 2548 + 3892 + 0 + + + 1 + 2548 + 3893 + 0 + + + 1 + 2548 + 3894 + 0 + + + 2 + 2548 + 2549 + 0 + + + 2 + 2548 + 2550 + 0 + + + 1 + 2548 + 3897 + 0 + + + 1 + 2548 + 3898 + 0 + + + 1 + 2548 + 3899 + 0 + + + 1 + 2548 + 3900 + 0 + + + 1 + 2548 + 3901 + 0 + + + 1 + 2548 + 3902 + 0 + + + 1 + 2548 + 3903 + 0 + + + 1 + 2548 + 3904 + 0 + + + + 1 + 205017 + 0 + + 2549 + Pirate08T07 + 11 +

2548

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Get the schematics from Hiccup</Text><ID>927440</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2549 + 3895 + 0 + + + + 1 + 205023 + 0 + + 3895 + Pirate08T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I need some materials to get things finished. Can you ask Hiccup for the blueprints to TT-04? He'll know what I'm talking about.</Text><ID>929269</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ugh. For the last time, we don't need a complicated system to categorize our inventions, and especially not something called a 'Dewey'! I need to have a talk with Gobber...</Text><ID>929270</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get the schematics and iron from Hiccup</Text><ID>929267</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7997 + + 1 + 5520 + 205023 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13410 + + 1 + 5519 + 205023 + true + 1 + 1 + + 0 + +
+ false + + + 2550 + Pirate08T08 + 11 +

2548

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Forge the Terrible Terror armor</Text><ID>927441</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2550 + 3896 + 0 + + + + 1 + 205028 + 0 + + 3896 + Pirate08T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpPirate08T08.unity3d/PfGrpPirate08T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You can take all these materials and make the armor pieces at Gobber's blacksmith stall. {{Input}} on his forge to put all the iron in and Gobber will help you put it all together!</Text><ID>929273</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>What a beauty! I'd be proud to see that on any Terrible Terror. Thor knows I want to throw Ruffnut and Tuffnut off a bridge from time to time, but that doesn't mean I adore Barf &amp; Belch any less, that annoying double-header!</Text><ID>929274</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfForge</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfForge</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13410</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>7997</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the forge to craft the armor</Text><ID>929271</ID></Title><Desc><Text>{{Input}} on the forge</Text><ID>935700</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13413 + + 1 + 5527 + 205028 + true + 1 + 1 + + 0 + +
+ false +
+ + 3889 + Pirate08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We don't know how Stormheart is getting the Grimora venom into the Triple Stryke without attaching the parasites. She must keep a stash of it somewhere away from her ship. We need to find it and destroy it. Do you think Hiccup could figure out how to find it?</Text><ID>929277</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Since Nikora's just arrived at the archipelago, we just don't know enough about her. There are a lot of islands out there, and she could be hiding the stash of venom anywhere. I don't know where to start. @@ Wait! We do know someone who understands her. + +Harald.</Text><ID>929278</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 3890 + Pirate08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I know, I know. It's Harald. But - he keeps telling us we should trust him and maybe we should. A part of me thinks that deep down he is a good person, and he'll make the right choice. I'm sure he sees that making dragons go berserk is not good for anyone! @@ He seems to have a good relationship with you. Can you go to Auction Island and look for people who could lead you to Harald? Be careful.</Text><ID>929281</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>Harald's been a busy man lately! Lots of action going on around him...</Text><ID>929282</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the shopkeeper at Auction Island</Text><ID>929279</ID></Title><Desc><Text>Talk to the shopkeeper at Auction Island</Text><ID>929279</ID></Desc></Data> + 0 + false + + + 3891 + Pirate08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>I saw him going to his boat on the other side of the island. I bet you'll find him in the forest if you hurry. +Now quit bothering me, kid! +</Text><ID>929285</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>What a nice surprise to see you here, {{Name}}. I hope my friends don't make you nervous; they're just here to make sure that I have a pleasant time here on Auction Island. </Text><ID>929286</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate08T03CS.unity3d/PfGrpPirate08T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Harald</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald at the Auction Island forest</Text><ID>929283</ID></Title><Desc><Text>Look for Harald at the Auction Island forest</Text><ID>929283</ID></Desc></Data> + 0 + false + + + 3892 + Pirate08T04 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpPirate08T04.unity3d/PfGrpPirate08T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>If you don't mind my saying, you have an air of desperation around you. Please, tell me. How can I help you?</Text><ID>929289</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>We both know that I am an honest and loyal man, so your insinuation that I'd switch allegiance is insulting. I am faithful to Stormheart as any Viking could be! +But. @@ I understand she needs a way to neutralize the strengths of her enemies, but I keep telling her there must be a better way than Grimora venom. I worry that my dear Leopold will cross her sights one day. He doesn't deserve that; he should be called an Adorable Terror, in my book.</Text><ID>929290</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizPirate08T04.unity3d/PfUiQuizPirate08T04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask for Harald's help</Text><ID>929287</ID></Title><Desc><Text>Talk to Harald</Text><ID>927532</ID></Desc></Data> + 0 + false + + + 3893 + Pirate08T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Speaking of Leopold: I worry that he's too small and defenseless. In these trying times, he needs to be protected against the dangers of this world. Wouldn't you agree? @@ Please, see if you can convince Berk to make Leopold some armor. I'd be so thankful... and then we can talk.</Text><ID>929293</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Harald won't help us out unless we help his Terrible Terror?</Text><ID>929294</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridReally</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at Berk about Terrible Terror armor</Text><ID>929291</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 3894 + Pirate08T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't like that he's extorting us but we really need his knowledge. Besides, I don't feel too bad about protecting his Terrible Terror; Leopold should be taken care of regardless of his slimy keeper. Can you talk to Gobber and see if this is something we can do?</Text><ID>929297</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Aye, I got just the thing for wee Leopold! Get ready for the latest 'Terror Mail'! Get it? Mail armor!</Text><ID>929298</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 3897 + Pirate08T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Don't worry about the state of the forge; ol' Gobber can clean it up. You need to focus on the important stuff and get that armor to Harald at Auction Island.</Text><ID>929301</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well! You delivered and how. I'm very impressed, {{Name}}. Leopold looks quite dashing in his new kit! I'm glad I chose you when Stormheart asked for an intermediary to Berk; I was right all along.</Text><ID>929302</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>ItemID</Key><Value>13413</Value></Pair><Pair><Key>ItemDescription</Key><Value>Leopold Armor</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the Terrible Terror armor to Harald</Text><ID>929299</ID></Title><Desc><Text>Bring the Terrible Terror armor to Harald</Text><ID>929299</ID></Desc></Data> + 0 + false + + + 3898 + Pirate08T10 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpPirate08T10.unity3d/PfGrpPirate08T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Surely you remember where I took you and Johann to meet her? She hid the venom in a cave on the ocean floor below the island. Don't worry: the cave is full of air! You'll need to figure out how to get there, but you're surely crafty enough for that tiny problem. Go now; she's off... 'negotiating'... with another village right now. @@ Yes, yes: you would have never learned this without me. You're welcome. Oh - and say hello to Skulder for me. My men tell me he's here on Auction Island, and I'm just devastated that we haven't had the chance to talk.</Text><ID>929305</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Harald said what? Ooh, that scoundrel knows exactly what I think of him. It's not something I feel comfortable repeating in front of others. @@ This must be a trap. According to him, the venom is right under Stormheart's nose! We'll arrive and be immediately taken by her ship, no doubt. She'll probably throw us into cages and leave us to rot!</Text><ID>929306</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist at the Auction Island docks</Text><ID>929303</ID></Title><Desc><Text>Talk to the Archaeologist at the Auction Island docks</Text><ID>929303</ID></Desc></Data> + 0 + false + + + 3899 + Pirate08T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Even if this were a trap, I will not abandon you to deal with it on your own. We shall sail into the teeth of danger together, my friend. I'll bring the boat with the diving bell to the secret location. I shall see you there!</Text><ID>929309</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hmm. For once, the dastardly Harald might have told the truth. The horizon is clear... It must be some sort of trap, but I can't see through it. What could he be up to? @@ Well! No matter. We have a short time window where we can look for the Grimora cache. We should get to it!</Text><ID>929310</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DivingBell</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet the Archaeologist at Stormheart's base</Text><ID>929307</ID></Title><Desc><Text>Meet the Archaeologist at Stormheart's base</Text><ID>929307</ID></Desc></Data> + 0 + false + + + 3900 + Pirate08T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Phlegma taught me how to operate this device. From what I understand, the diving bell will have breathable air trapped inside. When you are swimming, remember to come back to the bell to breathe! Good luck, my good and dear friend. {{Input}} on the diving bell when you are ready.</Text><ID>929313</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DivingBell</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDivingBell</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the diving bell.</Text><ID>929311</ID></Title><Desc><Text>{{Input}} on the diving bell</Text><ID>928577</ID></Desc></Data> + 0 + false + + + 3901 + Pirate08T13 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate08T14.unity3d/PfGrpPirate08T14</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Where could Stormheart be hiding her cache of Grimora venom? You should explore the ocean floor until you can find the cave Harald mentioned.</Text><ID>929316</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_VenomCache</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the cache of Grimora venom</Text><ID>929314</ID></Title><Desc><Text>Look for the cache of Grimora venom</Text><ID>929314</ID></Desc></Data> + 0 + false + + + 3902 + Pirate08T14 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate08T14.unity3d/PfGrpPirate08T14</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You must douse the Grimora venom with salt water to destroy it but it seems to be sealed tight. You should try to find a way to break it open over the sea water.</Text><ID>929319</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfGrimoraVenomCache</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfGrimoraVenomCache</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the venom cache</Text><ID>929317</ID></Title><Desc><Text>Chop the venom cache</Text><ID>929317</ID></Desc></Data> + 0 + false + + + 3903 + Pirate08T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Great! You should make your way back to the safety of the ocean surface. {{Input}} on the diving bell to make your way back up.</Text><ID>929322</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You did it? + +You did it! Amazing!</Text><ID>929323</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist on the surface</Text><ID>929320</ID></Title><Desc><Text>Talk to the Archaeologist on the surface</Text><ID>929320</ID></Desc></Data> + 0 + false + + + 3904 + Pirate08T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I am sure Hiccup would be very happy to hear the news. Would you please go back to Dragon's Edge and let him know? I'll be right behind you.</Text><ID>929326</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job! I don't know how she's extracting the venom from the Grimora, but I can't imagine that she can do it quickly. This means we have a window of time for us to make our move...</Text><ID>929327</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Title><Desc><Text>Talk to Hiccup at Dragon's Edge</Text><ID>928983</ID></Desc></Data> + 0 + false + + + 40 +

2

+ 0 + + 1 + 22 + 205017 + true + 40 + 40 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 205017 + true + 250 + 250 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205017 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205017 + true + 50 + 50 + + 0 + +
+ false +
+ + 2551 + Pirate09 + 4 +

+ <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate09T00.unity3d/PfGrpPirate09T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Taking the Offensive</Text><ID>927447</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2548 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2551 + 3905 + 0 + + + 1 + 2551 + 3906 + 0 + + + 2 + 2551 + 2555 + 0 + + + 1 + 2551 + 3908 + 0 + + + 2 + 2551 + 2552 + 0 + + + 1 + 2551 + 3910 + 0 + + + 1 + 2551 + 3911 + 0 + + + 1 + 2551 + 3912 + 0 + + + 1 + 2551 + 3913 + 0 + + + 1 + 2551 + 3914 + 0 + + + 2 + 2551 + 2553 + 0 + + + 1 + 2551 + 3916 + 0 + + + + 1 + 205018 + 0 + + 2552 + Pirate09T05 + 4 +

2551

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dragon Tactics</Text><ID>927443</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2552 + 3909 + 0 + + + + 1 + 205024 + 0 + + 3909 + Pirate09T05 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate09T05.unity3d/PfGrpPirate09T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What in Odin's name is that? It's huge... +Well, riders, we know what to do. Charge!</Text><ID>929330</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Amazing job everyone - wait, Dagur! Look out!</Text><ID>932823</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate09T05CS.unity3d/PfGrpPirate09T05CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Stormheart must have given the Triple Stryke too much Grimora venom. The dragon's gone crazy! +Wait! {{Name}}: take these.</Text><ID>933393</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STPirateBossMapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics battle on the ship</Text><ID>929328</ID></Title><Desc><Text>Defeat the Dragon Tactics battle on the ship</Text><ID>929328</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13409 + + 1 + 5522 + 205024 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13411 + + 1 + 5523 + 205024 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13412 + + 1 + 5521 + 205024 + true + 1 + 1 + + 0 + +
+ false + + + 2553 + Pirate09T11 + 4 +

2551

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Get the egg</Text><ID>927444</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2553 + 3915 + 0 + + + + 1 + 205027 + 0 + + 3915 + Pirate09T11 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate09T10.unity3d/PfGrpPirate09T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We thought about moving the Triple Stryke egg from the broken statue, but I didn't feel comfortable moving it in case she came back. Can you help her out by taking it out of the statue?</Text><ID>929335</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I knew that you were making a deep connection with the Triple Stryke. She's made a great choice in confiding in you and entrusting you with her egg. @@ Animals depend on the land to live and rely on their environment to survive. The animals also, in turn, change their environment over time by living on the land. If that environment is no longer habitable for the Triple Stryke, she'll need to find another habitat. It looks like she's trusting you to do it for her egg.</Text><ID>929336</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfPirateQueenGiftDestroyed</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPirateQueenGiftDestroyed</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Triple Stryke egg</Text><ID>929333</ID></Title><Desc><Text>{{Input}} on the Triple Stryke egg</Text><ID>929333</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13385 + + 1 + 5526 + 205027 + true + 1 + 1 + + 0 + +
+ false +
+ + 2555 + Pirate09T03 + 4 +

2551

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Well, it's too late to turn back now! Let's send her reeling with the first punch, then we can flatten her with the one-two. Destroy the crossbows on the ship, and avoid hitting the captive dragons!</Text><ID>927446</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate09T03CS.unity3d/PfGrpPirate09T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Destroy crossbows</Text><ID>927445</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2555 + 3907 + 0 + + + 1 + 2555 + 3922 + 0 + + + 1 + 2555 + 3923 + 0 + + + + 1 + 0 + 0 + + 3907 + Pirate09T03A + <Data><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Bow01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Bow01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy the crossbows on the ship</Text><ID>929339</ID></Title><Desc><Text>Destroy the crossbows on the ship</Text><ID>929339</ID></Desc></Data> + 0 + false + + + 3922 + Pirate09T03B + <Data><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Bow02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Bow02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy the crossbows on the ship</Text><ID>929339</ID></Title><Desc><Text>Destroy the crossbows on the ship</Text><ID>929339</ID></Desc></Data> + 0 + false + + + 3923 + Pirate09T03C + <Data><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Bow03</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Bow03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy the crossbows on the ship</Text><ID>929339</ID></Title><Desc><Text>Destroy the crossbows on the ship</Text><ID>929339</ID></Desc></Data> + 0 + false + + false +
+ + 3905 + Pirate09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>If we're lucky, Nikora won't have learned that we destroyed her venom cache yet. Then we could have a reasonable conversation before she gets angry. But we should be ready for anything. Can you talk to Dagur and make sure our preparations are ready?</Text><ID>929345</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestoffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Get ready for a scrap, {{Name}}. If I were her, I'd be sailing back to Dragon's Edge right about now. She's going to be steaming mad when we come to her doorstep and we can't afford to underestimate our enemies. I have too many scars as it is.</Text><ID>929346</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 3906 + Pirate09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Hiccup! To the edge of the world, brother; we'll take the fight to her together. To Stormheart's base!</Text><ID>929349</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Oh, she definitely knows we destroyed her stuff! We're going to be in for a good old-fashioned ruckus...</Text><ID>929350</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Stormheart's base</Text><ID>929347</ID></Title><Desc><Text>Go to Stormheart's base</Text><ID>929347</ID></Desc></Data> + 0 + false + + + 3908 + Pirate09T04 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>RS_DATA/PfGrpPirate09T04.unity3d/PfGrpPirate09T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We need to talk to Nikora and stop this chaos. Land on her ship, {{Name}}. Toothless and I will be right behind you!</Text><ID>929353</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>It's a pity it had to come down to this, {{Name}}. Hiccup. We could have been allies. But now... +Now I will leave you shattered like flotsam in my wake.</Text><ID>929354</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPirate09T04CS.unity3d/PfGrpPirate09T04CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Deck</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on Stormheart's ship</Text><ID>929351</ID></Title><Desc><Text>Land on Stormheart's ship</Text><ID>929351</ID></Desc></Data> + 0 + false + + + 3910 + Pirate09T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This might be the only way to stop the Triple Stryke without anyone getting hurt. You've been able to get closer to the Triple Stryke than any of us, so you should wield the Dragon Blade this time, not me. I know you can do it. @@ Now let's go - follow the Triple Stryke!</Text><ID>929357</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Don't worry about me, {{Name}}. Do what you need to do. I'm more than ready to die for the cause!</Text><ID>929358</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Stryke</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the Triple Stryke!</Text><ID>929355</ID></Title><Desc><Text>Follow the Triple Stryke!</Text><ID>929355</ID></Desc></Data> + 0 + false + + + 3911 + Pirate09T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>No one is dying today, Dagur! We just need to hold that dragon in place before it does something reckless. {{Name}}, get close to the Triple Stryke and fire up the Dragon Blade. We need that Flightmare gas right now!</Text><ID>929361</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Stryke</Value></Pair><Pair><Key>Name</Key><Value>WaveSword</Value></Pair><Pair><Key>ItemName</Key><Value>FlightmareSwordTrigger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Get close to the Triple Stryke and ignite the Dragon Blade</Text><ID>929359</ID></Title><Desc><Text>Get close to the Triple Stryke and ignite the Dragon Blade</Text><ID>929359</ID></Desc></Data> + 0 + false + + + 3912 + Pirate09T08 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>PfDWDagurDistressed</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It worked! We only have a few moments before she can start moving again. {{Input}} on her to inject her with the saline solution. That should get rid of the Grimora toxin in her system!</Text><ID>929364</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Thank you; my life was flashing before my eyes. There were a shocking amount of axes! +Seems to me that I've been doing things right.</Text><ID>929365</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Stryke</Value></Pair><Pair><Key>Name</Key><Value>Inject</Value></Pair><Pair><Key>ItemName</Key><Value>InjectionTrigger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13411</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the Triple Stryke to inject the syringe</Text><ID>929362</ID></Title><Desc><Text>{{Input}} on the Triple Stryke</Text><ID>928972</ID></Desc></Data> + 0 + false + + + 3913 + Pirate09T09 + <Data><Setup><Scene>PirateQueenShipDO</Scene><Asset>PfDWDagurDistressed</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's going to be okay, girl. Everything is going to be okay. {{Name}}, can you slowly reach your hand out and {{input}} on her head? Maybe that will calm her down.</Text><ID>929368</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good, good. You were just lashing out, huh girl? You just wanted to save your egg. That's all you wanted, even when your mind was being tainted by the Grimora venom.</Text><ID>929369</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>PirateQueenShipDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Stryke</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>ClickableTripleStryke</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Triple Stryke to calm her</Text><ID>929366</ID></Title><Desc><Text>{{Input}} on the Triple Stryke</Text><ID>928972</ID></Desc></Data> + 0 + false + + + 3914 + Pirate09T10 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate09T10.unity3d/PfGrpPirate09T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>PirateQueenShipDO</Scene><Asset>PfDWDagurDistressed</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, I promise you that you'll always have our support, old girl. Quick, everyone: back to Dragon's Edge! Let's reunite this dragon with her egg.</Text><ID>929372</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PirateQueenStatue</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the Triple Stryke's egg at Dragon's Edge</Text><ID>929370</ID></Title><Desc><Text>Return to the Triple Stryke's egg at Dragon's Edge</Text><ID>929370</ID></Desc></Data> + 0 + false + + + 3916 + Pirate09T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Wow. She offered you her own child? No one, Viking or dragon, could ever bestow a greater honor. I must speak to you in private, {{Name}}.</Text><ID>929375</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>You must prove yourself worthy of that Triple Stryke. Do you understand? You have a great burden on your shoulders, one that will rest heavily on you for the rest of this dragon's life. Don't worry: Berserkers never abandon our own. You'll have all the help you need.</Text><ID>929376</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13412</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13409</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 205018 + true + 350 + 350 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 205018 + true + 55 + 55 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205018 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205018 + true + 350 + 350 + + 0 + +
+ false +
+ + 2554 + Pirate10 + 53 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Heather</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Welcome Breather</Text><ID>927448</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2551 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2554 + 3917 + 0 + + + 1 + 2554 + 3918 + 0 + + + 1 + 2554 + 3919 + 0 + + + 1 + 2554 + 3920 + 0 + + + 1 + 2554 + 3921 + 0 + + + + 1 + 205025 + 0 + + 3917 + Pirate10T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>One thing's for sure, {{Name}}: there's no end to the adventures that seem to surround Berk and Dragon's Edge. I'll have to stick around and make sure you can conquer all who challenge you. After all, power will only attract more contenders to the throne... @@ and thanks to Hiccup, we've befriended the greatest power in the world. We'll need to be careful. +I'm sure Astrid is just itching for more of a chance to protect her land. Will you tell her I pledge my axe and my life to the cause?</Text><ID>929379</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, I hope it won't come to that! Dragon's Edge got attacked again, but it wasn't an accident that we made it through unscathed. You have an excellent head for strategy! If you keep at it, you might be able to take over the defenses of Berk. I'll just be sure to grill you ten times harder from now on, so get ready!</Text><ID>929380</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 3918 + Pirate10T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't think we could have ever gotten close to solving this mystery without figuring out that she was using Grimora venom on the Triple Stryke. Thank Odin for Heather and Hiccup's microscope, and for your quick thinking finding the dragon's saliva! @@ I'm sure that we'll be able to outwit Stormheart when she comes back (and of course she'll come back; Hiccup's foes have a tendency to stick around). Will you tell Heather that I think her genius saved us all today?</Text><ID>929383</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Isn't it exhilarating to think that the smallest toxin, smaller than we could even imagine seeing with our naked eye, could control us entirely? It's amazing! (It's also a little frightening.) The more we learn, the more we find out that everything is connected. @@ We'll explore this microscopic world together, you and I - one experiment at a time. Thanks, {{Name}}.</Text><ID>929384</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 3919 + Pirate10T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We never could have learned all this without Hiccup's help. Can you talk to him and tell him that I'm so pleased with all that we accomplished?</Text><ID>929387</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, Heather is being way too modest. Without you and Heather, we couldn't have made the microscope nor discovered the toxin. We're a team, you know? We work best when we're working together. @@ And {{Name}}: your bravery and skills never fail to impress me. There are so many things we haven't done yet... just you wait!</Text><ID>929388</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 3920 + Pirate10T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Still, I am a bit worried. I don't think we've seen the last of Stormheart. I saw the ambition and anger burning in her eyes when we were, err, attacking her ship. I'm sure she has something devious up her sleeves, so we'll have to be ready. @@ Oh! That reminds me. There's only one part that I don't understand. Why would Harald help us? He's clearly on Stormheart's side. I wish we could find him at Auction Island so that we could pick his brain...</Text><ID>929391</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Auction Island</Text><ID>931262</ID></Title><Desc><Text>Go to Auction Island</Text><ID>929389</ID></Desc></Data> + 0 + false + + + 3921 + Pirate10T05 + <Data><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfDWHarald.unity3d/PfDWHarald</Asset><Location>PfMarker_Harald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpPirate10T05.unity3d/PfGrpPirate10T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Harald's boat is docked here; he must be somewhere on the island. You should look for him.</Text><ID>929394</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Ha! Don't get used to it, {{Name}}. Harald only looks out for number one: Harald! And, well, Leopold, I guess. But that's it. It's the two of us against the world! @@ Next time Stormheart and I show up, you best not get in the way. I won't let my tender spot for you and Leopold slow me down. +Ta ta until then.</Text><ID>929395</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Look for Harald</Text><ID>929392</ID></Title><Desc><Text>Look for Harald</Text><ID>941796</ID></Desc></Data> + 0 + false + + + 400 +

1

+ 0 + + 1 + 418 + 205025 + true + 400 + 400 + + 0 + + + + 85 +

2

+ 0 + + 1 + 523 + 205025 + true + 85 + 85 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205025 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205025 + true + 350 + 350 + + 0 + +
+ false +
+ + 2556 + Pirate11 + 53 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Defenders of Berk</Text><ID>927449</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2554 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2556 + 3924 + 0 + + + 1 + 2556 + 3925 + 0 + + + 1 + 2556 + 3926 + 0 + + + 1 + 2556 + 3927 + 0 + + + 1 + 2556 + 3928 + 0 + + + 1 + 2556 + 3929 + 0 + + + 1 + 2556 + 3930 + 0 + + + 1 + 2556 + 3931 + 0 + + + + 1 + 205029 + 0 + + 3924 + Pirate11T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Hey! You have a good relationship with the Defenders of the Wing, right? I just spotted one of their ships sailing into Dragon's Edge. Can you talk to Mala and see why she's here? Let's face it: I'd make any diplomatic situation worse! Much worse.</Text><ID>929398</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It is good to see you again, {{Name}}. Once again: thank you for the help with the Winged Spear. It rests now in a place of honor near my throne and is a constant reminder of the strong ties between our people.</Text><ID>929399</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala at Dragon's Edge</Text><ID>929396</ID></Title><Desc><Text>Talk to Mala at Dragon's Edge</Text><ID>929396</ID></Desc></Data> + 0 + false + + + 3925 + Pirate11T02 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpPirate11T02.unity3d/PfGrpPirate11T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>I came to learn more about my allies! I have visited Hiccup on Dragon's Edge many times, but it occurs to me that I have never been to the heartland of dragon training. Will you please indulge my curiosity and help me navigate to the School of Dragons? Step onto my ship when you are ready.</Text><ID>929402</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CogShip</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Step onto Mala's ship</Text><ID>929400</ID></Title><Desc><Text>Step onto Mala's ship</Text><ID>929400</ID></Desc></Data> + 0 + false + + + 3926 + Pirate11T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpPirate11T03.unity3d/PfGrpPirate11T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHeadmaster</Asset><Location>PfMarker_HeadmasterLab</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>This caldera is breathtaking. The rising cliffs, the sound of dragons, and the rumbling of your inventions... I have never been anywhere like this! @@ Now that I am here I am eager to soak in the sights, but I do not know the way. Could you please {{input}} on me and lead me to one of your teachers or your Headmaster? I understand that Heather is the expert on science for the school and I would be ecstatic to see her office.</Text><ID>929405</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Mala! What a wonderful surprise. Would you like to see all the inventions I'm working on?</Text><ID>932824</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Welcome to the School of Dragons, Queen Mala! I am Heyral, Headmaster of the School of Dragons. Please know that you and your warriors are always welcome here. The world could always use more dragon riders, after all!</Text><ID>932928</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeyralDO.unity3d/DlgHeyralGreeting</Asset><NPC>PfDWHeadmaster</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Mala</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HodsLab</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Mala and lead her to Heather</Text><ID>929403</ID></Title><Desc><Text>{{Input}} on Mala and lead her to Heather</Text><ID>929403</ID></Desc><Reminder><Text>Don't leave Mala behind!</Text><ID>936330</ID></Reminder><Failure><Text>Oh no! You left Mala behind!</Text><ID>936329</ID></Failure></Data> + 0 + false + + + 3927 + Pirate11T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>My thanks to you, Heyral. We will take advantage of your gracious offer one day. We have no desire to lose our own customs, but it would be wonderful to see Defenders have your awe-inspiring abilities. +{{Name}}: tell me, can you show me where you train to fight?</Text><ID>929410</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Training Grounds</Text><ID>935805</ID></Title><Desc><Text>Go to the Training Grounds</Text><ID>929555</ID></Desc></Data> + 0 + false + + + 3928 + Pirate11T05 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>'The Training Grounds...' what an apt name. On our island, we have an obstacle course for warriors where they can hone their abilities in a controlled environment. Do you have a place like that here? {{Input}} on me and lead me there, please.</Text><ID>929411</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Mala! I didn't expect to see you here. +Come to check out my skills with Fireball Frenzy? Hookfang and I really light up the place, if you want to watch...</Text><ID>929412</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Mala</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ShooterExit</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Mala and lead her to Snotlout</Text><ID>931949</ID></Title><Desc><Text>{{Input}} on Mala and lead her to Snotlout</Text><ID>931949</ID></Desc><Reminder><Text>Don't leave Mala behind!</Text><ID>936330</ID></Reminder><Failure><Text>Oh no! You left Mala behind!</Text><ID>936329</ID></Failure></Data> + 0 + false + + + 3929 + Pirate11T06 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_MalaFF</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It's a shame that I do not have a dragon of my own as Fireball Frenzy looks very interesting! {{Name}}, would you and {{dragon name}} show me how it should be done?</Text><ID>929415</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Fascinating. I'm impressed with your skills, {{Name}}, and very impressed with Fireball Frenzy. It seems much more complicated than the setup we have on Defender of the Wing Island (and tests different skills, of course, since we have little need to train our warriors to shoot fireballs).</Text><ID>929416</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfTargetPracticePortal</Value></Pair><Pair><Key>Name</Key><Value>DOTargetPractice</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Complete Fireball Frenzy</Text><ID>929413</ID></Title><Desc><Text>Complete Fireball Frenzy</Text><ID>929413</ID></Desc></Data> + 0 + false + + + 3930 + Pirate11T07 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpPirate11T06.unity3d/PfGrpPirate11T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpPirate11T07.unity3d/PfGrpPirate11T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Thank you for showing me around your School and introducing me to your Headmaster. His proposal is very interesting, and I hope to send some of my Defenders here. Perhaps you can help them ease in to your culture!@@Well, that will have to wait. There was one more thing I wished to accomplish on my trip. Will you meet me at Impossible Island?</Text><ID>929419</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Impossible Island</Text><ID>929417</ID></Title><Desc><Text>Go to Impossible Island</Text><ID>929417</ID></Desc></Data> + 0 + false + + + 3931 + Pirate11T08 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpPirate11T07.unity3d/PfGrpPirate11T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>We have been returning to Impossible Island ever since you and I unlocked its secrets. It's still too dangerous to use as a training course, but it feels empowering to be in our ancient lands. Isn't it a glorious sight? Please, join me at the edge of the cenote.</Text><ID>929422</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It's amazing how large the leviathan has become! I've never seen a dragon grow at such a rapid pace, even our Great Protector. He seems to remember me; he is always happy to see me here. @@ One day, he will be big enough to protect himself and help us as our ally. Until then, it is your duty and mine to make sure it is safe here in its haven. I have no doubt that we can do it together, {{Name}}.</Text><ID>929423</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgeOfCenoteHiccup</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the edge of the cenote</Text><ID>929420</ID></Title><Desc><Text>Go to the edge of the cenote</Text><ID>941797</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 205029 + true + 250 + 250 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 205029 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 205029 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205029 + true + 50 + 50 + + 0 + +
+ false +
+ + 2557 + Edu117 + 16 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_RuffnutVisit</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu117T00.unity3d/PfGrpQEdu117T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_NPC05</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberTest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpQEdu117T05.unity3d/PfGrpQEdu117T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu117T04.unity3d/PfGrpQEdu117T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Gobber's Wheels of Misfortune</Text><ID>927339</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2542 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2557 + 3932 + 0 + + + 1 + 2557 + 3933 + 0 + + + 1 + 2557 + 3934 + 0 + + + 1 + 2557 + 3935 + 0 + + + 1 + 2557 + 3936 + 0 + + + 2 + 2557 + 2558 + 0 + + + 1 + 2557 + 3938 + 0 + + + 2 + 2557 + 2559 + 0 + + + 1 + 2557 + 3939 + 0 + + + + 1 + 205030 + 0 + + 2558 + Edu117T06 + 16 +

2557

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><RemoveItem><ItemID>13415</ItemID><Quantity>4</Quantity></RemoveItem><Title><Text>{{Input}} on the tray of wheels to apply the fluorescent dye</Text><ID>927337</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2558 + 3937 + 0 + + + + 1 + 205031 + 0 + + 3937 + Edu117T06A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Metal has a [c][3eebff]non-porous surface[/c][ffffff], which means that metal doesn't let liquid or air pass through it. When we pour the dye over the wheel, the liquid won't be able to seep into any of the metal. It can only sink into the cracks! {{Input}} on the tray to apply the fluorescent dye.</Text><ID>928159</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Nicely done! We'll need a moment so the dye can sink into the metal cracks. Liquids are so interesting, don't you think? The dye will look to flow into narrow spaces, like cracks, if they're surrounded by nonporous surfaces. The liquid molecules pull each other along, even going against gravity if they have nowhere else to go! This is called [c][3eebff]capillary action[/c][ffffff].</Text><ID>928160</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfRackOfWheels</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfRackOfWheels</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the tray of wheels</Text><ID>928157</ID></Title><Desc><Text>{{Input}} on the tray of wheels to apply the fluorescent dye.</Text><ID>931873</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13416 + + 1 + 5529 + 205031 + true + 1 + 1 + + 0 + +
+ false + + + 2559 + Edu117T08 + 16 +

2557

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on Windshear to shoot the torch near the wheels</Text><ID>927338</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2559 + 3940 + 0 + + + + 1 + 205032 + 0 + + 3940 + Edu117T08A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Good job! Now, this is where we get to look clever with our luminescent dye. Would you gently {{input}} on my girl Windshear to light up that torch?</Text><ID>928163</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah ha! The dye's shown all the cracks in the new wheels. So it's the new metal that was causing all the bother, eh? It shouldn't take long to track down and replace all those faulty pieces. What a relief!</Text><ID>928164</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestEnd03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRazorwhip</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRazorwhip</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Windshear to shoot the torch</Text><ID>928161</ID></Title><Desc><Text>{{Input}} on Windshear to shoot the torch near the wheels.</Text><ID>931874</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13417 + + 1 + 5531 + 205032 + true + 1 + 1 + + 0 + +
+ false +
+ + 3932 + Edu117T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken and I are very much hurt! We were parading through Berk to wave to Chicken's many fans when the wheel broke for no reason! Chicken even stubbed a claw. I take thee, {{Name}}, to be our Viking in shining armor. Can you find the wheel so I can get a refund?</Text><ID>928167</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Cracked, you say? I smell a plot to mess with Chicken's image!</Text><ID>928168</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWagonWheelBroken</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the remains of the broken wheel</Text><ID>928165</ID></Title><Desc><Text>Find the remains of the broken wheel in Berk.</Text><ID>931875</ID></Desc></Data> + 0 + false + + + 3933 + Edu117T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Or Gobber's wheel broke really easily. In either case, it is no longer worthy of carrying Chicken's delightful plumage. Return the wheel to Gobber and inform him that we need a replacement posthaste!</Text><ID>928171</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Great Thor, don't tell me another one broke! This is the third one today. Heather's knife snapped and Mulch's anchor broke apart too. This can't be a coincidence.</Text><ID>928172</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberHuh</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13414</Value></Pair><Pair><Key>ItemDescription</Key><Value>Broken Wheel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the broken wheel to Gobber</Text><ID>928169</ID></Title><Desc><Text>Give the broken wheel to Gobber.</Text><ID>932583</ID></Desc></Data> + 0 + false + + + 3934 + Edu117T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ol' Gobber tools are the best in the archipelago! I can't stand the thought that I'm doing shoddy work. You're a smart young {{greeting}}; can you talk to Heather and figure out what's going on? She's near the Great Hall.</Text><ID>928175</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I've been trying to solve the problem ever since my knife broke and I think that a [c][3eebff]dye penetration test[/c][ffffff] will do the job! We coat the metal with a bright dye and draw it to the surface, then see what shows up. That way we can check for cracks in the metal without breaking it, in a type of experiment known as [c][3eebff]non-destructive testing[/c][ffffff].</Text><ID>928176</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Heather about cracks in metal</Text><ID>928173</ID></Title><Desc><Text>Ask Heather about ways to find cracks in metal.</Text><ID>931877</ID></Desc></Data> + 0 + false + + + 3935 + Edu117T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need a dye that's easy to spot. A [c][3eebff]fluorescent[/c][ffffff] dye would be perfect; that way, we can flash a light at it and it'll shine like a Snoggletog tree. Valka has been tending to a Flightmare by her favorite food. The bioluminescent algae give off a glow that is just what we need! Could you gather four pieces of the fluorescent algae in the cave next to the waterfall?</Text><ID>928179</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Please be careful; this poor darling injured her wing and needs rest. May I ask what you're doing with the algae?</Text><ID>928180</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWGlowingAlgae</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get 4 pieces of fluorescent algae</Text><ID>928177</ID></Title><Desc><Text>Get 4 pieces of fluorescent algae from the Alcove.</Text><ID>931878</ID></Desc></Data> + 0 + false + + + 3936 + Edu117T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAlchemist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Dear Gobber hasn't changed a bit. His heart is as big as a Leviathan but he's just too hard on himself sometimes. I know you can solve this mystery. You should get back to the Great Hall and get on with your experiment!</Text><ID>928183</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great! That should be more than enough dye for our experiment. Gobber and I were busy while you were gone, too. This tray has Tuffnut's wheel, two other wheels from the same batch of metal, and an older wheel.</Text><ID>928184</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GobberTest</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Gobber in the Great Hall</Text><ID>928181</ID></Title><Desc><Text>Find Gobber in the Great Hall.</Text><ID>931879</ID></Desc></Data> + 0 + false + + + 3938 + Edu117T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now, this is a [c][3eebff]developer[/c][ffffff], a substance that will help us see where the dye has gone. It's a fine-grained white powder that's been mixed in water. It will draw our dye to the top of the cracks. Can you {{input}} on the tray of wheels to add it?</Text><ID>928187</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfRackOfWheels</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfRackOfWheels</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13416</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the tray of wheels to add the developer</Text><ID>928185</ID></Title><Desc><Text>{{Input}} on the tray of wheels to add the developer.</Text><ID>931880</ID></Desc></Data> + 0 + false + + + 3939 + Edu117T09 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAlchemist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If I know Tuffnut, he'll still be sulking that his precious chicken didn't get a full parade. Give him this wheel and tell him he can roll his animal to the Edge and back. Gobber's work is back to the highest of standards!</Text><ID>928190</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Fie! Chicken isn't beholden to a dirty old wheel but she is happy to have her wheelbarrow up and running again. Hence from this day on, she forgives Gobber for his transgression and dubs thee {{Name}} of the Coop's Guard. Arise, and go forth to your next adventure. </Text><ID>928191</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>13417</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sturdy Old Wheel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>13417</ItemID><Quantity>1</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Give the sturdy metal wheel to Tuffnut</Text><ID>928188</ID></Title><Desc><Text>Give the sturdy metal wheel to Tuffnut in Berk.</Text><ID>932584</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205030 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205030 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205030 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205030 + true + 350 + 350 + + 0 + +
+ false +
+ + 2562 + New Farming 211 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2562 + 3945 + 0 + + + + 1 + 205047 + 0 + + 3945 + 30 Tomatoes + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes</Text><ID>922253</ID></Title><Desc><Text>Fishlegs needs to add to his already impressive garden.</Text><ID>932605</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 205047 + true + 30 + 30 + + 0 + + + + 532 +

2

+ 0 + + 1 + 2355 + 205047 + true + 532 + 532 + + 0 + +
+ false +
+ + 2563 + New Farming 212 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,7 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2563 + 3946 + 0 + + + + 1 + 205048 + 0 + + 3946 + Tomatoes, Cabbage and Beets + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes, Cabbage &amp; Beets</Text><ID>932606</ID></Title><Desc><Text>Gothi could use a good stock of food for all her Terrible Terrors.</Text><ID>932607</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 205048 + true + 30 + 30 + + 0 + + + + 1436 +

2

+ 0 + + 1 + 5540 + 205048 + true + 1436 + 1436 + + 0 + +
+ false +
+ + 2564 + New Farming 213 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2564 + 3947 + 0 + + + + 1 + 205049 + 0 + + 3947 + 50 Tomatoes, 25 White Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes and White Wool</Text><ID>932608</ID></Title><Desc><Text>Vikings are splashing their gold on trendy red coats so Mulch is struggling to meet demand.</Text><ID>932609</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 205049 + true + 30 + 30 + + 0 + + + + 1610 +

2

+ 0 + + 1 + 2756 + 205049 + true + 1610 + 1610 + + 0 + +
+ false +
+ + 2565 + New Farming 214 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2565 + 3948 + 0 + + + + 1 + 205050 + 0 + + 3948 + 60 Tomatoes, 60 Dragon Nip + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>60</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>60</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes and Dragon Nip</Text><ID>932610</ID></Title><Desc><Text>Fishlegs has found a tasty combination to keep a flock of Night Terrors friendly.</Text><ID>932611</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 205050 + true + 30 + 30 + + 0 + + + + 1489 +

2

+ 0 + + 1 + 5541 + 205050 + true + 1489 + 1489 + + 0 + +
+ false +
+ + 2566 + New Farming 215 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2566 + 3949 + 0 + + + + 1 + 205051 + 0 + + 3949 + Tomatoes + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Tomatoes</Text><ID>922253</ID></Title><Desc><Text>Ruff and Tuff want to paint the town red. Literally!</Text><ID>932613</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 205051 + true + 30 + 30 + + 0 + + + + 1780 +

2

+ 0 + + 1 + 5542 + 205051 + true + 1780 + 1780 + + 0 + +
+ false +
+ + 2567 + New Farming 216 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2567 + 3950 + 0 + + + + 1 + 205052 + 0 + + 3950 + 30 Pumpkins + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins</Text><ID>922225</ID></Title><Desc><Text>Pumpkin Party at the Jorgenson Hut!</Text><ID>932615</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205052 + true + 40 + 40 + + 0 + + + + 645 +

2

+ 0 + + 1 + 5543 + 205052 + true + 645 + 645 + + 0 + +
+ false +
+ + 2568 + New Farming 217 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2568 + 3951 + 0 + + + + 1 + 205053 + 0 + + 3951 + 40 Pumpkins, 10 Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins and Yak Milk</Text><ID>932616</ID></Title><Desc><Text>Mulch's yaks are sick and his patches were torn up by rodents. Can you help?</Text><ID>932617</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 205053 + true + 72 + 72 + + 0 + + + + 2560 +

2

+ 0 + + 1 + 5544 + 205053 + true + 2560 + 2560 + + 0 + +
+ false +
+ + 2569 + New Farming 218 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2569 + 3952 + 0 + + + + 1 + 205054 + 0 + + 3952 + Pumpkins, Honey, Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins, Honey, Chicken Eggs</Text><ID>932618</ID></Title><Desc><Text>The annual pie baking contest needs supplies and the judges, Mulch and Bucket, are fond of pumpkin.</Text><ID>932913</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 205054 + true + 50 + 50 + + 0 + + + + 1777 +

2

+ 0 + + 1 + 5545 + 205054 + true + 1777 + 1777 + + 0 + +
+ false +
+ + 2571 + New Farming 220 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2571 + 3954 + 0 + + + + 1 + 205056 + 0 + + 3954 + 100 Pumpkins + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins</Text><ID>922225</ID></Title><Desc><Text>Berk is getting ready for Dreadfall and Vikings need decorations.</Text><ID>932623</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205056 + true + 40 + 40 + + 0 + + + + 2110 +

2

+ 0 + + 1 + 5547 + 205056 + true + 2110 + 2110 + + 0 + +
+ false +
+ + 2572 + DreadfallMaze 2017 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 09-26-2017 12:00:00,10-31-2017 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2572 + 3955 + 0 + + + + 1 + 205057 + 0 + + 3955 + DreadfallMaze2017 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Dreadfall Maze Chest</Text><ID>933186</ID></Title></Data> + 0 + false + + + 1 +

6

+ 13457 + + 1 + 5548 + 205057 + true + 1 + 1 + + 0 + + + false +
+ + 2573 + DreadfallMaze 2017 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 09-26-2017 12:00:00,10-31-2017 12:00:00 + 0 + false + + + 3 + 2572 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2573 + 3956 + 0 + + + + 1 + 205058 + 0 + + 3956 + DreadfallMaze2017 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Dreadfall Maze Chest</Text><ID>933186</ID></Title></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 205058 + true + 100 + 100 + + 0 + + + false +
+ + 2574 + Edu118 + 46 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpQEdu118T00.unity3d/PfGrpQEdu118T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpQEdu118T04.unity3d/PfGrpQEdu118T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_EretOnABoat01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Slick Solution</Text><ID>933213</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2557 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2574 + 3957 + 0 + + + 2 + 2574 + 2575 + 0 + + + 1 + 2574 + 3959 + 0 + + + 1 + 2574 + 3960 + 0 + + + 1 + 2574 + 3961 + 0 + + + 2 + 2574 + 2576 + 0 + + + 2 + 2574 + 2577 + 0 + + + + 1 + 205059 + 0 + + 2575 + Edu118T02 + 46 +

2574

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Tell Eret about the stranded Night Terror</Text><ID>933208</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2575 + 3958 + 0 + + + + 1 + 205060 + 0 + + 3958 + Edu118T02A + <Data><Offer><Type>Popup</Type><ID>933217</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Eret's boat should have arrived at the shore by now. You should tell him what you found.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933218</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I knew something was off. A fine seaman like myself can recognize the smell of [c][3eebff]pine tar[/c][ffffff] from a mile away. Many sailors use pine tar to help waterproof our ships. @@ Layers of pine tar can waterproof our ropes and masts, and thickened pine tar (called [c][3eebff]pitch[/c][ffffff]) makes the outside of sailing vessels watertight. It's not perfect. @@ Pine tar can wreak havoc on the wildlife if it spills. If we don't get him flying again that poor little stray is doomed. But! Have no fear. I think we can save this Night Terror with a little sailor's trick.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Eret about the stranded Night Terror</Text><ID>933208</ID></Title><Desc><Text>Tell Eret about the stranded Night Terror.</Text><ID>933216</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13468 + + 1 + 5549 + 205060 + true + 1 + 1 + + 0 + +
+ false + + + 2576 + Edu118T06 + 46 +

2574

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ask for Ruffnut's help to contain the spill</Text><ID>933209</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2576 + 3962 + 0 + + + + 1 + 205061 + 0 + + 3962 + Edu118T06A + <Data><Offer><Type>Popup</Type><ID>933221</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Avast, young Eret! Who else would be more suited to the task at hand? Talk to me on the shore, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933222</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Eret has got us into another fine mess, hasn't he?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>933223</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I think we can all agree that this is all Eret's fault, but it does give us a wonderful opportunity to start a really big fire. In other words: we burn the spill! Are you ready Barf and Belch?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>933224</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That's a fine idea bro-migo, but Hiccup gets his little metal leg all bent out of shape every time we set fire to an island. He'll pull out our freshly oiled hair if any dragons get hurt and that's just a waste of good oil. @@ Whoa! Hold onto your helmet. Tuff, do you still have the bags of hair from our annual haircuts?</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>933225</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I'm offended that you even have to ask. One moment...</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutCheer</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutPos02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutInsult01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask for Ruffnut's help to contain the spill</Text><ID>933209</ID></Title><Desc><Text>Ask for Ruffnut's help to contain the spill.</Text><ID>933220</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 13469 + + 1 + 5550 + 205061 + true + 3 + 3 + + 0 + +
+ false +
+ + 2577 + Edu118T07 + 46 +

2574

+ <Data><Offer><Type>Popup</Type><ID>933211</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Our haircuts are pretty epic. We cut off so much that we can make them into these mats. Thorston hair can hold a lot of tar oil, but it also does a good job of keeping water out. @@ If you look at my hair after it rains, you'll notice nothing is out of place! Each strand of our golden locks has scales, layers of small dead cells. They stick out and cover a lot of space on the hair so loads of oil gets stuck in the grooves. @@ Now's the time to put our hairy idea to test! {{Input}} on the three oil spills one by one to drop the hair mats.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_EretOnABoat02</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>933212</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ah! I can smell the fresh air of the open sea again. I'll stick around and fish out the mats once they've absorbed all the oil. @@ One rescued Night Terror and a saved archipelago are all in a day's adventure for heroes like us! Fine work.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>{{Input}} on the 3 oil spills in the ocean</Text><ID>933210</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2577 + 3963 + 0 + + + 1 + 2577 + 3964 + 0 + + + 1 + 2577 + 3965 + 0 + + + + 1 + 0 + 0 + + 3963 + Edu118T07A + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Don't be surprised if you find some of Snotlout's hair in there. We took off his sideburns while he was sleeping. Some would call that cruel but I say it was necessary.</Text><ID>933228</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd02</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfPrtPineTarOilSpill01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPrtPineTarOilSpill01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13469</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the oil spill in the ocean.</Text></Title><Desc><Text>{{Input}} on the oil spill in the ocean.</Text></Desc></Data> + 0 + false + + + 3964 + Edu118T07B + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You can always trust us to make every situation a whole lot hairier. Good job, {{Name}}.</Text><ID>933231</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfPrtPineTarOilSpill02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPrtPineTarOilSpill02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13469</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the oil spill in the ocean.</Text></Title><Desc><Text>{{Input}} on the oil spill in the ocean.</Text></Desc></Data> + 0 + false + + + 3965 + Edu118T07C + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Salt my shirt, it worked. The oil’s getting absorbed! Nicely done, mate.</Text><ID>933234</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfPrtPineTarOilSpill03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPrtPineTarOilSpill03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13469</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the oil spill in the ocean.</Text></Title><Desc><Text>{{Input}} on the oil spill in the ocean.</Text></Desc></Data> + 0 + false + + false +
+ + 3957 + Edu118T01 + <Data><Offer><Type>Popup</Type><ID>933237</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>It's great to see you, mate! My old crew sent me a Terror Mail about a pack of Night Terrors in distress on the coast of Scuttleclaw Island. Could you fly out there and find out what's going on? I'll sail out there as fast as I can.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933238</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This Night Terror seems to be struggling to fly! His wings are all gummed up with some strange black ooze...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StrandedNightTerror</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to Scuttleclaw Island and find the Night Terrors</Text><ID>933235</ID></Title><Desc><Text>Head to Scuttleclaw Island and find the Night Terrors.</Text><ID>933236</ID></Desc></Data> + 0 + false + + + 3959 + Edu118T03 + <Data><Offer><Type>Popup</Type><ID>933241</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Whenever I use pine tar, I make sure to have a few lemon oil rags handy. I squeeze lemon peels and get the oil on these rags, and they can wipe the pine gunk off anything. @@ It's time to get our new little friend back in the air, {{Name}}! {{Input}} on the Night Terror to wipe it clean.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933242</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>The little fellow made it back to his flock. Farewell, young dragon!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQEdu118T03CS.unity3d/PfGrpQEdu118T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfStrandedNightTerror</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfStrandedNightTerror</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13468</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the Night Terror to clean it</Text><ID>933239</ID></Title><Desc><Text>{{Input}} on the Night Terror to clean it.</Text><ID>933240</ID></Desc></Data> + 0 + false + + + 3960 + Edu118T04 + <Data><Offer><Type>Popup</Type><ID>933245</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Hmm... Why hasn't that smell gone away? How did so much tar end up on that Night Terror? After all, pitch is man-made, and that Night Terror couldn't have flown far once he got caught in it. Questions, questions... @@ There must be more out there. Can you follow the trail of pine tar and look for the source? I'll send a Terror Mail for backup, just in case...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_OilSpill</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the trail of pine tar</Text><ID>933243</ID></Title><Desc><Text>Follow the trail of pine tar to find the source of the pine tar oil.</Text><ID>933244</ID></Desc></Data> + 0 + false + + + 3961 + Edu118T05 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_RuffnutCoast</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_TuffnutCoast</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>933248</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This abandoned ship looks like it is spilling pine tar into the water. You should tell Eret immediately.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933249</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I knew it! Those grubby Dragon Hunters must've scuttled their ship without a care for the damage it would cause. Dragons, birds and animals could get stuck in the tar just like that Night Terror. @@ They'd be caught in the cold and could get sick from [c][3eebff]hypothermia[/c][ffffff], a horrible condition where you have abnormally low body temperature. @@ Even worse, the spill could reach the archipelago’s pristine beaches if the winds pick up. The tar would coat the rocks and soak through soil, damaging plant life and poisoning food sources. @@ We need to avert a potential ecological disaster here. Didn't anyone get my Terror Mail?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>933250</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Oh yeah, Twin-Troops to the rescue!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>933251</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Nuts of the Ruff and Tuff variety are at your service.</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>933252</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Oh Thor. Anyone else?</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutAttract01</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Eret about the Dragon Hunter shipwreck</Text><ID>933246</ID></Title><Desc><Text>Tell Eret about the Dragon Hunter shipwreck.</Text><ID>933247</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205059 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205059 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205059 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205059 + true + 350 + 350 + + 0 + +
+ false +
+ + 2578 + SnoggletogMaze 2017 T03 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 5 + 10-09-2017 12:00:00,03-31-2018 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2578 + 3967 + 0 + + + + 1 + 205063 + 0 + + 3967 + SnoggletogMaze 2017 T03 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>BonusSnoggletogReward</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Snoggletog hats</Text><ID>933263</ID></Title></Data> + 0 + false + + + 15 +

5

+ 0 + + 1 + 1420 + 205063 + true + 15 + 15 + + 0 + + + false +
+ + 2579 + New Farming 221 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2579 + 3968 + 0 + + + + 1 + 205073 + 0 + + 3968 + Truffle, Dragon Nip, Corn + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7145</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffle, Dragon Nip, Corn</Text><ID>933414</ID></Title><Desc><Text>It is a specially formulated treat to keep a dragon's wings healthy.</Text><ID>933415</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205073 + true + 56 + 56 + + 0 + + + + 552 +

2

+ 0 + + 1 + 5552 + 205073 + true + 552 + 552 + + 0 + +
+ false +
+ + 2580 + New Farming 222 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 1,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2580 + 3969 + 0 + + + + 1 + 205074 + 0 + + 3969 + Truffles, Yak Milk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles, Yak Milk</Text><ID>933416</ID></Title><Desc><Text>Mulch is giving his milk a little savory punch.</Text><ID>933417</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 205074 + true + 72 + 72 + + 0 + + + + 578 +

2

+ 0 + + 1 + 2016 + 205074 + true + 578 + 578 + + 0 + +
+ false +
+ + 2581 + New Farming 223 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2581 + 3970 + 0 + + + + 1 + 205075 + 0 + + 3970 + Truffles, Lavender, White Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles, Lavender, White Wool</Text><ID>933418</ID></Title><Desc><Text>Bucket is sprucing up his clothes, his smell, and his mustache.</Text><ID>933419</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 205075 + true + 72 + 72 + + 0 + + + + 1475 +

2

+ 0 + + 1 + 5553 + 205075 + true + 1475 + 1475 + + 0 + +
+ false +
+ + 2582 + New Farming 224 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2582 + 3971 + 0 + + + + 1 + 205076 + 0 + + 3971 + Truffles, Cabbages + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles, Cabbages</Text><ID>933420</ID></Title><Desc><Text>Gothi likes her soup simple and exotic.</Text><ID>933421</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205076 + true + 56 + 56 + + 0 + + + + 1289 +

2

+ 0 + + 1 + 5554 + 205076 + true + 1289 + 1289 + + 0 + +
+ false +
+ + 2583 + New Farming 225 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2583 + 3972 + 0 + + + + 1 + 205077 + 0 + + 3972 + Truffles, Carrots, Tomatoes + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles, Carrots, Tomatoes</Text><ID>933422</ID></Title><Desc><Text>Fishlegs is making a special soup for a very special girl!</Text><ID>933423</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205077 + true + 56 + 56 + + 0 + + + + 1761 +

2

+ 0 + + 1 + 5555 + 205077 + true + 1761 + 1761 + + 0 + +
+ false +
+ + 2584 + New Farming 226 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2584 + 3973 + 0 + + + + 1 + 205078 + 0 + + 3973 + Truffles + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles</Text><ID>933424</ID></Title><Desc><Text>Fishlegs wants to add a Fungi plot to his garden.</Text><ID>933425</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205078 + true + 56 + 56 + + 0 + + + + 1035 +

2

+ 0 + + 1 + 5556 + 205078 + true + 1035 + 1035 + + 0 + +
+ false +
+ + 2585 + New Farming 227 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2585 + 3974 + 0 + + + + 1 + 205079 + 0 + + 3974 + Truffles, Black Beans + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>21</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles, Black Beans</Text><ID>933426</ID></Title><Desc><Text>Snotlout is trying to smell rancid and the less said about it the better!</Text><ID>933427</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205079 + true + 56 + 56 + + 0 + + + + 3014 +

2

+ 0 + + 1 + 5557 + 205079 + true + 3014 + 3014 + + 0 + +
+ false +
+ + 2586 + New Farming 228 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,15 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2586 + 3975 + 0 + + + + 1 + 205080 + 0 + + 3975 + Truffles, Turtle Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>10819</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turtle Eggs</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles, Turtle Eggs</Text><ID>933428</ID></Title><Desc><Text>Some of the rarest ingredients are needed for some of the rarest dragons.</Text><ID>933429</ID></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 205080 + true + 96 + 96 + + 0 + + + + 3212 +

2

+ 0 + + 1 + 5558 + 205080 + true + 3212 + 3212 + + 0 + +
+ false +
+ + 2587 + New Farming 229 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2587 + 3976 + 0 + + + + 1 + 205081 + 0 + + 3976 + Truffles + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles</Text><ID>933424</ID></Title><Desc><Text>It's the annual truffle hunt and the twins need a good supply.</Text><ID>933431</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205081 + true + 56 + 56 + + 0 + + + + 3525 +

2

+ 0 + + 1 + 5559 + 205081 + true + 3525 + 3525 + + 0 + +
+ false +
+ + 2588 + New Farming 230 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2588 + 3977 + 0 + + + + 1 + 205082 + 0 + + 3977 + Truffles + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Truffles</Text><ID>933424</ID></Title><Desc><Text>Hiccup wants a special gift for the Defenders of the Wing.</Text><ID>933433</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205082 + true + 56 + 56 + + 0 + + + + 4614 +

2

+ 0 + + 1 + 5560 + 205082 + true + 4614 + 4614 + + 0 + +
+ false +
+ + 2589 + Vanaheim01 + 61 +

+ <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpVanaheim01T00.unity3d/PfGrpVanaheim01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Krayfin O'Clock</Text><ID>933439</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2589 + 3978 + 0 + + + 1 + 2589 + 3979 + 0 + + + 1 + 2589 + 3980 + 0 + + + 1 + 2589 + 3981 + 0 + + + 1 + 2589 + 3982 + 0 + + + + 1 + 205083 + 0 + + 3978 + Vanaheim01T01 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsCenote</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>When it comes to Dragons, Fishlegs knows just about everything.@@Recently, he has been researching the Luminous Krayfin at Impossible Island, however, it has been a while since he left.@@Please go find Fishlegs and make sure he is alright!</Text><ID>933549</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, this is [c][3eebff]amazing[/c][ffffff]! The Book of Dragons doesn't have anything on the Luminous Krayfin, so I've been recording everything I can. No Viking has ever seen a leviathan grow up from a baby to its full, incredible size! I hope we're there every step of the way.</Text><ID>933550</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Impossible Island to find Fishlegs</Text><ID>933547</ID></Title><Desc><Text>Go to Impossible Island to find Fishlegs</Text><ID>933547</ID></Desc></Data> + 0 + false + + + 3979 + Vanaheim01T02 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsCenote</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpVanaheim01T02.unity3d/PfGrpVanaheim01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sorry, I'm getting ahead of myself. I called you here because I wanted to show you something (more than just my enthusiasm). Here! {{Input}} on me and I'll lead you to the cute reveal.</Text><ID>933553</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ta-da! +Meatlug has bonded quite strongly with the Krayfin! They've been inseparable ever since we arrived on the island. I think he sees her as a mother he's never met. Isn't it adorable?</Text><ID>933554</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim01T02CS.unity3d/PfGrpVanaheim01T02CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsOcean</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Spline</Key><Value>FishlegsSpline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Fishlegs and follow him</Text><ID>933551</ID></Title><Desc><Text>{{Input}} on Fishlegs and follow him</Text><ID>933551</ID></Desc><Reminder><Text>You're falling behind Fishlegs!</Text><ID>936414</ID></Reminder><Failure><Text>Oh no! He left you behind</Text><ID>936415</ID></Failure></Data> + 0 + false + + + 3980 + Vanaheim01T03 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsOcean</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Most dragons have a simple life cycle. They hatch from an egg, grow to become adults, and live most of their lives in one environment. They are smaller versions of their parents. But! I've learned that the Krayfin's life cycle is closer to that of an amphibian.@@ They are terrestrial as babies and aquatic as they turn into adulthood. So, the baby Krayfin needs to go through a metamorphosis to be ready for aquatic life (just like frogs!). His body changed to swim better and float.@@That's just the tip of the iceberg! I'm eager to learn so much more about my new buddy and I hope you feel the same way. Will you indulge me and {{input}} on the Krayfin? </Text><ID>933557</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I knew it! The bond between you two is stronger than ever. I bet he trusts you most out of all the Vikings he's ever met... and with good reason.</Text><ID>933558</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Krayfin</Text><ID>933555</ID></Title><Desc><Text>{{Input}} on the Krayfin</Text><ID>933555</ID></Desc></Data> + 0 + false + + + 3981 + Vanaheim01T04 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsOcean</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>He's swimming away so quickly; I wonder -- oh, wait. He's waiting for you to follow him! Ooh, I wonder what he could be trying to show you. +Well, quick! Follow him, {{Name}}!</Text><ID>933561</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That's adorable, but more importantly, very informative! This shows us that Lumie has left the cenote many times, to have been able to make friends with this pod of narwhals. I wonder how far he's traveled from Impossible Island?@@Oh: don't you think that Lumie suits the big guy? Meatlug helped me narrow down all the choices, and I think it's the perfect name for him!</Text><ID>933562</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Whales</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the Krayfin to where he wants to go</Text><ID>933559</ID></Title><Desc><Text>Follow the Krayfin to where he wants to go</Text><ID>933559</ID></Desc></Data> + 0 + false + + + 3982 + Vanaheim01T05 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_CenoteOcean</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hm. Is that Snotlout? He doesn't like coming here--something about a misunderstanding between him and Lumie--so this must be important. Can you talk to him and find out what's up?</Text><ID>933565</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm going to have to cut your little picnic short. You're needed for a matter of Berkian security! I hope you sharpened your axe this morning.</Text><ID>933566</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205083 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205083 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205083 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205083 + true + 350 + 350 + + 0 + +
+ false +
+ + 2591 + Vanaheim03 + 10 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Guards of Vanaheim</Text><ID>933441</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2590 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2591 + 3996 + 0 + + + 1 + 2591 + 3997 + 0 + + + 1 + 2591 + 3998 + 0 + + + 1 + 2591 + 3999 + 0 + + + 1 + 2591 + 4000 + 0 + + + 1 + 2591 + 4001 + 0 + + + + 1 + 205084 + 0 + + 3996 + Vanaheim03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Something's wrong. I'd expect the protective Sentinel dragons to have sensed three dragon riders and a Krayfin by now, but it's as silent as a staff-less Gothi. We need to take a closer look. Could you check on the perches close to us and tell us what you see?</Text><ID>933619</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Is it just me... or do those Sentinels look hurt? +Odin help us. If they can't defend the island, this whole place could be in danger... </Text><ID>933620</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SentinelPerch</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the Sentinel perch</Text><ID>933618</ID></Title><Desc><Text>Check on the Sentinel perch</Text><ID>933618</ID></Desc></Data> + 0 + false + + + 3997 + Vanaheim03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm not sure if you're keeping up, Fishlegs, but Stormheart is obviously three steps ahead of us. Take a look at those broken sea stacks, {{Name}}. You'll see what I'm talking about.</Text><ID>933623</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Trust me: I'm a master of siege warfare and destruction. I'd bet you anything that the damage came from the weaponry on the Tempest.</Text><ID>933624</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't know, I think Astrid is more of an expert in that kind of thing. There's also Dagur, Ruffnut, Tuffnut...</Text><ID>933625</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Whatever, Fishface. You're missing the point. Stormheart already came through here and unleashed her ship's weapons against the Sentinels as they tried to defend their island. I almost feel sorry for these guys.</Text><ID>933626</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle05</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CliffWalls</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find evidence that Stormheart has attacked the island</Text><ID>933621</ID></Title><Desc><Text>Find evidence that Stormheart has attacked the island</Text><ID>933621</ID></Desc></Data> + 0 + false + + + 3998 + Vanaheim03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sentinels may be blind, but they're really strong fighters. They would have been a good match against Stormheart... unless she found a way to confound their senses! There are five senses: [c][3eebff]sight[/c][ffffff], [c][3eebff]hearing[/c][ffffff], [c][3eebff]taste[/c][ffffff], [c][3eebff]smell[/c][ffffff], and [c][3eebff]touch[/c][ffffff]. These senses help everyone interact with and understand the world around them.@@Each sense takes information from the outside world and sends a message to the brain so the dragon knows how to react. They all use a certain amount of brainpower. Since Sentinels are born blind, their brain can use that same power for their other senses.@@Even though the Sentinel can't see, he relies on his hearing and smell to 'see' everything. I have a theory that Stormheart somehow blocked the Sentinels' sense of smell, but I'd like to put it to the test. Could you move really, really close to that Sentinel without touching him?</Text><ID>933629</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsSilly02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh my goodness! I was afraid of this. On our last adventure here, the dragons couldn't detect us because we'd covered ourselves in their native fruit to mask our scent. This worked until Snotlout yelled like a spooked Thunderdrum; with their heightened senses, he might as well have painted himself purple and danced a jig.@@This dragon didn't react to your moving close, which probably means that he can't smell.</Text><ID>933630</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfWoundedSentinel</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get close to the wounded Sentinel</Text><ID>933627</ID></Title><Desc><Text>Get close to the wounded Sentinel</Text><ID>933627</ID></Desc></Data> + 0 + false + + + 3999 + Vanaheim03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yo. What's that strange gunk on his face? I don't remember these dragons having it the last time we were here. Wait, wait. I think I have my own scientific theory. I think this is how Stormheart attacked the dragons. Can you take a closer look at these other Sentinels? I'll be your brave lookout.</Text><ID>933633</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yuck! Yep, they all have it. I was right! I bet this goop is what blocked their sense of smell, letting Stormheart attack them. Give me a bit of time and I'll get all this stuff sorted out. I'm so good at this! I'm like Hiccup and Heather combined. I'm like...</Text><ID>933634</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SentinelDragons</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the other Sentinel dragons</Text><ID>933631</ID></Title><Desc><Text>Look for the other Sentinel dragons</Text><ID>933631</ID></Desc></Data> + 0 + false + + + 4000 + Vanaheim03T05 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Snotlout's 'colorful' descriptions don't seem very constructive... The Sentinel on the high perch somehow seems different than the others. Perhaps Snotlout would be happy talking to himself while you take a closer look at that Sentinel.</Text><ID>933637</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Not again! Haven't we been through this already? I don't want to hurt your dumb island and I'm not threatening you. Why are you trying to kill me? Hookfang, get me out of here!</Text><ID>933639</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim03T05CS.unity3d/PfGrpVanaheim03T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ElderSentinel</Value></Pair><Pair><Key>Range</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly close to the large Sentinel dragon</Text><ID>933635</ID></Title><Desc><Text>Fly close to the large Sentinel dragon</Text><ID>933635</ID></Desc></Data> + 0 + false + + + 4001 + Vanaheim03T06 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What are you doing, Snotlout? There are injured dragons here who need our help! Let's regroup and think of a plan. That Sentinel won't stray too far from his perch, so we'll be safe if we stay back and figure out what to do next. Can you come over here, {{Name}}?</Text><ID>933642</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I think I might know what that strange substance is. Heather once told me about a pepper gas that could really get into your eyes, nose, lungs, and mouth. Heather says it burns like crazy and leaves a residue just like the ones we found!@@Pepper gas could wound the Sentinels and disable their great sense of smell. With the dragons out of the way, Stormheart has a clear path to stomp her grimy feet all over this hallowed ground...</Text><ID>933643</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm okay too, muttonhead. Where's the appreciation for my brave leadership?</Text><ID>933644</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Moving on, I think I figured out who that dragon is. I've been reading through the notes of Heather's father Oswald from his time shipwrecked on Vanaheim. He wrote about a Sentinel with a strange bone structure on its head. This powerful dragon seemed to lead the other Sentinels in their duties.@@My friends... I think we've met the [c][3eebff]Elder Sentinel[/c][ffffff].</Text><ID>933645</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205084 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205084 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205084 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205084 + true + 350 + 350 + + 0 + +
+ false +
+ + 2592 + Vanaheim04 + 10 +

+ <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim04T00.unity3d/PfGrpVanaheim04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Elder Approval?</Text><ID>933442</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2591 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2592 + 4002 + 0 + + + 1 + 2592 + 4003 + 0 + + + 1 + 2592 + 4004 + 0 + + + 1 + 2592 + 4007 + 0 + + + 1 + 2592 + 4008 + 0 + + + 1 + 2592 + 4009 + 0 + + + 1 + 2592 + 4010 + 0 + + + 1 + 2592 + 4005 + 0 + + + 1 + 2592 + 4011 + 0 + + + 1 + 2592 + 4012 + 0 + + + 1 + 2592 + 4013 + 0 + + + 1 + 2592 + 4014 + 0 + + + 1 + 2592 + 4015 + 0 + + + + 1 + 205086 + 0 + + 4002 + Vanaheim04T01 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_Krayfin04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We need to get past the Elder Sentinel somehow, but the last thing we want to do is hurt him any more than Stormheart already has. Think, Fishlegs, think... +While I think of a plan, can you check up on Lumie? It's a long trek to Vanaheim and he had to carry Skulder all the way here.</Text><ID>933648</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>How wonderful! He looks like he's fitting right in. I'm really glad to see that. I was worried that he wouldn't feel natural with humans, since he's grown up by himself at Impossible Island.</Text><ID>933649</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Krayfin04</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check in with the Krayfin</Text><ID>933646</ID></Title><Desc><Text>Check in with the Krayfin</Text><ID>933646</ID></Desc></Data> + 0 + false + + + 4003 + Vanaheim04T02 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That's great, just great! Little Lumie is all happy about fellowship and dragonhood or something crazy like that while the giant angry Elder Sentinel won't even let us past so we can save his own sorry butt from Stormheart. Ugh!@@Just... can you talk to Fishlegs and figure out a way to get past that stupid dragon?</Text><ID>933652</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Elder Sentinel has never had sight, so his other senses are much stronger. Sight is one of the five senses that help us understand the world around us. Each sense has a dedicated area of the brain. When a sense is lost from birth, the brain is able to use that space for the other senses.@@Since the Sentinels can't see, their brain has to rely more on the other senses to get around!@@If we fool the Elder Sentinel's hearing, Snotlout and I can buy you some time to get past him. We just have to work together. What do you think, Snotlout?</Text><ID>933653</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4004 + Vanaheim04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm not fond of any plan where you're hanging Snotlout out there like bait on a hook, but I'm not one to back down from a challenge. Let's go, Fishface! {{Name}}, you better find something good for us to use!</Text><ID>933656</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim04T03CS.unity3d/PfGrpVanaheim04T03CS</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It's working; time to hurry!</Text><ID>934041</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPlayAgain02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_OswaldsHouse</Value></Pair><Pair><Key>Range</Key><Value>200</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly past the Elder Sentinel</Text><ID>933654</ID></Title><Desc><Text>Fly past the Elder Sentinel</Text><ID>933654</ID></Desc></Data> + 0 + false + + + 4005 + Vanaheim04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What is this strange building on the hill?</Text><ID>933659</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_OswaldsHouse</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Stop by the suspicious building</Text><ID>933657</ID></Title><Desc><Text>Look for Oswald's house at the top of the hill</Text><ID>941993</ID></Desc></Data> + 0 + false + + + 4007 + Vanaheim04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Fishlegs talked about the fact that they used 'red fruit' to fool the Sentinels last time. Maybe you could do the same thing if you could find the same fruit!</Text><ID>933673</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FruitTree</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the tree with the 'red fruit'</Text><ID>933671</ID></Title><Desc><Text>Look for the tree with the 'red fruit'</Text><ID>933671</ID></Desc></Data> + 0 + false + + + 4008 + Vanaheim04T07 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim04T07.unity3d/PfGrpVanaheim04T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should {{input}} on the branch to knock some of the red fruit down from the tree.</Text><ID>933676</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim04T07CS.unity3d/PfGrpVanaheim04T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfBranch</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBranch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the branch</Text><ID>933674</ID></Title><Desc><Text>{{Input}} on the branch</Text><ID>933674</ID></Desc></Data> + 0 + false + + + 4009 + Vanaheim04T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Since the Sentinels eat so much of the red fruit themselves, the dragon riders were able to smear the red fruit on themselves and trick the Sentinels' sense of smell. That might be the way to go here! You can chop the red fruit and smear it on yourself.</Text><ID>933679</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>FruitChop</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>FruitChop</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Smear the red fruit on yourself by the tree</Text><ID>933677</ID></Title><Desc><Text>Smear the red fruit on yourself by the tree</Text><ID>933677</ID></Desc></Data> + 0 + false + + + 4010 + Vanaheim04T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What a sticky mess! It might actually work, though, so you should find all the red fruit that you can. After all, Fishlegs and the others deserve to share in the mess -- that is, share in the victory.</Text><ID>933682</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FruitTree</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRedFruit</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find more red fruit</Text><ID>933680</ID></Title><Desc><Text>Find more red fruit</Text><ID>933680</ID></Desc></Data> + 0 + false + + + 4011 + Vanaheim04T10 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_KrayfinArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Oh! This is a house made from a scuttled Berserker boat. This must be the last resting place of Oswald, the late father of Dagur. +This won't help now; you should hurry back to Fishlegs with the red fruit.</Text><ID>933665</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank Odin you're back! I don't think we could distract the Elder Sentinel much longer. What did you find?@@Hmm. I'm not really sure the red fruit might fool them again. The Sentinels are really clever; they caught up to the ruse of the red fruit when we tried it the second time. They might be on to us this time. +(You look a lovely shade of red, though!)@@Wait! Do you hear something?</Text><ID>933666</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Fly back to Fishlegs</Text><ID>933663</ID></Title><Desc><Text>Fly back to Fishlegs</Text><ID>933663</ID></Desc></Data> + 0 + false + + + 4012 + Vanaheim04T11 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_KrayfinArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no... The Sentinels are under attack! Quick, {{Name}}: we need to help them!</Text><ID>933669</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I knew it. These Grim Gnashers are annoying little dragons that attack anything they come across. The Sentinels may be jerks, but Stormheart left them defenseless. Even they don't deserve to get attacked in that state!</Text><ID>933670</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim04T10CS.unity3d/PfGrpVanaheim04T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GrimGnashers</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the injured Sentinels</Text><ID>933667</ID></Title><Desc><Text>Look for the injured Sentinels</Text><ID>933667</ID></Desc></Data> + 0 + false + + + 4013 + Vanaheim04T12 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim04T12.unity3d/PfGrpVanaheim04T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_KrayfinArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Those annoying dragons won't stop attacking those Sentinels unless we give them a reason to. It's all up to Snotlout and {{Name}}, as it should be. The Grim Gnashers won't know what hit them. Let's go!</Text><ID>933685</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Great fight. You just became my favorite warrior to watch my back! I'll look for you next time we rush into battle.</Text><ID>933686</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim04T12CS.unity3d/PfGrpVanaheim04T12CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GrimGnashers</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim04MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Fight off the Grim Gnashers in Dragon Tactics</Text><ID>933683</ID></Title><Desc><Text>Fight off the Grim Gnashers in Dragon Tactics</Text><ID>941994</ID></Desc></Data> + 0 + false + + + 4014 + Vanaheim04T13 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfElderSentinel</Asset><Location>PfMarker_ElderSentinel02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_Snotlout_04CS</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Guys, guys: I think you really impressed the leader. You helped protect his flock! Will you come over here and {{input}} on the Elder Sentinel?</Text><ID>933689</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim04T13CS.unity3d/PfGrpVanaheim04T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfElderSentinel</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfElderSentinel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Elder Sentinel</Text><ID>934382</ID></Title><Desc><Text>{{Input}} on the Elder Sentinel</Text><ID>934382</ID></Desc></Data> + 0 + false + + + 4015 + Vanaheim04T14 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_Snotlout_04CS</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_KrayfinArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wonderful! Excellent! Fantastic! +This is great news. Now we can discuss our approach for Vanaheim. Come here, my friend, and let's chart our exciting next steps!</Text><ID>933692</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I knew all along that you, above all else, could gain the trust of the Elder Sentinel. That gives us all the authority to venture into the island. That is, of course, we will treat the island with due respect. I'm so excited I'm shaking!</Text><ID>933693</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205086 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205086 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205086 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205086 + true + 350 + 350 + + 0 + +
+ false +
+ + 2593 + Vanaheim05 + 25 +

+ <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim05T00.unity3d/PfGrpVanaheim05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Hallowed Ground</Text><ID>933443</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2592 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2593 + 4016 + 0 + + + 1 + 2593 + 4017 + 0 + + + 1 + 2593 + 4155 + 0 + + + 1 + 2593 + 4018 + 0 + + + 1 + 2593 + 4019 + 0 + + + 1 + 2593 + 4020 + 0 + + + 1 + 2593 + 4021 + 0 + + + 1 + 2593 + 4022 + 0 + + + 1 + 2593 + 4023 + 0 + + + 2 + 2593 + 2612 + 0 + + + 1 + 2593 + 4025 + 0 + + + + 1 + 205087 + 0 + + 2612 + Vanaheim05T09 + 25 +

2593

+ <Data><Offer><Type>Popup</Type><ID>934139</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What a mess... why would she mix these bones together? I wonder if she was searching through the piles for something specific. She might have just left the mess when she didn't find what she was looking for.@@We must set these bones to rights. Can you help me put these bones back where they must go?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Sort the bones</Text><ID>934138</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2612 + 4024 + 0 + + + 1 + 2612 + 4124 + 0 + + + 1 + 2612 + 4125 + 0 + + + 1 + 2612 + 4126 + 0 + + + 1 + 2612 + 4127 + 0 + + + 1 + 2612 + 4166 + 0 + + + 1 + 2612 + 4167 + 0 + + + 1 + 2612 + 4168 + 0 + + + 1 + 2612 + 4169 + 0 + + + 1 + 2612 + 4170 + 0 + + + + 1 + 0 + 0 + + 4024 + Vanaheim05T09A + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Sesamoid bones[/c][ffffff] like these are embedded in tendons. They are small, round bones that protect tendons from stress and wear. An example in humans is the patella, also known as the kneecap.</Text><ID>934192</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortPatella2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the patella bones into the basket</Text><ID>934490</ID></Title><Desc><Text>Sort the patella bones into the basket</Text><ID>934490</ID></Desc></Data> + 0 + false + + + 4124 + Vanaheim05T09B + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Long bones[/c][ffffff] are just what they sound like: bones that are longer than they are wide! They support the weight of the body and help the body move. Examples in humans include the femur, tibia, phalanges, and metacarpals.</Text><ID>934195</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortFemur2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the femur bones into the basket</Text><ID>934492</ID></Title><Desc><Text>Sort the femur bones into the basket</Text><ID>934492</ID></Desc></Data> + 0 + false + + + 4125 + Vanaheim05T09C + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Flat bones[/c][ffffff] provide protection to internal organs, just like a shield! These flattened bones cover organs like the heart or brain. Human examples are the skull, ribs, and pelvis.</Text><ID>934198</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortSternum2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the sternum bones into the basket</Text><ID>934494</ID></Title><Desc><Text>Sort the sternum bones into the basket</Text><ID>934494</ID></Desc></Data> + 0 + false + + + 4126 + Vanaheim05T09D + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Irregular bones[/c][ffffff] like these vary in shape and size, which is why they don't fit into other categories. They usually have a complex shape and are used to protect internal organs. An example in humans is the vertebrae.</Text><ID>934201</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortVertebrae2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the vertebrae into the basket</Text><ID>934496</ID></Title><Desc><Text>Sort the vertebrae into the basket</Text><ID>934496</ID></Desc></Data> + 0 + false + + + 4127 + Vanaheim05T09E + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Short bones[/c][ffffff] are about as long as they are wide and provide stability. For example, in humans the carpals support the wrist and the tarsals support the ankle!</Text><ID>934204</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortSmall2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the short bones into the basket</Text><ID>934498</ID></Title><Desc><Text>Sort the short bones into the basket</Text><ID>934498</ID></Desc></Data> + 0 + false + + + 4166 + Vanaheim05T09A1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortPatella1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the patella bones into the basket</Text><ID>934490</ID></Title><Desc><Text>Sort the patella bones into the basket</Text><ID>934490</ID></Desc></Data> + 0 + false + + + 4167 + Vanaheim05T09B1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortFemur1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the femur bones into the basket</Text><ID>934492</ID></Title><Desc><Text>Sort the femur bones into the basket</Text><ID>934492</ID></Desc></Data> + 0 + false + + + 4168 + Vanaheim05T09C1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortSternum1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the sternum bones into the basket</Text><ID>934494</ID></Title><Desc><Text>Sort the sternum bones into the basket</Text><ID>934494</ID></Desc></Data> + 0 + false + + + 4169 + Vanaheim05T09D1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortVertebrae1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the vertebrae into the basket</Text><ID>934496</ID></Title><Desc><Text>Sort the vertebrae into the basket</Text><ID>934496</ID></Desc></Data> + 0 + false + + + 4170 + Vanaheim05T09E1 + <Data><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Name</Key><Value>SortSmall1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Sort the short bones into the basket</Text><ID>934498</ID></Title><Desc><Text>Sort the short bones into the basket</Text><ID>934498</ID></Desc></Data> + 0 + false + + false + + + 4016 + Vanaheim05T01 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>How do we do this? We have no idea where Stormheart might have gone, and more importantly, there are just too many things for us to discover on this island. Fishlegs has been here before, correct? Do you think he could point us in the right direction?</Text><ID>933696</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>As long as you treat the island with respect, you won't do wrong. You're experts, after all!</Text><ID>933697</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4017 + Vanaheim05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm so pleased that Lumie is being so comfortable with all of us here. He was a little skittish when I introduced myself to him, but look at him now! He let Skulder ride his back all the way here and he looks so happy to be surrounded by friends. Can you fly down around him and show him that you're still there for him?</Text><ID>933700</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>He's so absolutely cute and a breath of fresh air! There just aren't that many healthy young dragons here on Vanaheim. It can get to be a bit of a somber place (for good reason).</Text><ID>933701</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KrayfinArch</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly around Lumie</Text><ID>933698</ID></Title><Desc><Text>Fly around Lumie</Text><ID>933698</ID></Desc></Data> + 0 + false + + + 4018 + Vanaheim05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'll stay with Lumie and keep him company with Meatlug. I want to keep a close watch on our big guy as we explore this place further. I have full faith in you, so don't worry! +I think Snotlout and Skulder went on ahead; you should catch up!</Text><ID>933704</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm speechless. +This is hallowed ground, my friend, a place I've dreamt of every night since Fishlegs first gave me his journal of this mythical place. @@ I'd only ever dreamed of ever visiting this place ever since Fishlegs gave me his impressions of this mythical place. I'm speechless... I'm hopping excited, just like a Mudraker in a lukewarm swamp.</Text><ID>933705</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Graves</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on Vanaheim</Text><ID>933702</ID></Title><Desc><Text>Land on Vanaheim</Text><ID>933702</ID></Desc></Data> + 0 + false + + + 4019 + Vanaheim05T04 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Graves</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There's so much for us to do and see and only so many hours before sundown. Let's get to it, {{Name}}. {{Input}} on me and we'll explore this land together.</Text><ID>933708</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These mounds seem to be here on purpose. This must be where the dragon bones rest. Snotlout?</Text><ID>933709</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Mounds</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>SkulderExplore</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Desc><Reminder><Text>Stay close to the Archaeologist!</Text><ID>936312</ID></Reminder><Failure><Text>Oh no! Skulder left you behind!</Text><ID>936417</ID></Failure></Data> + 0 + false + + + 4020 + Vanaheim05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yep, you're in the right place. A few steps into these little hills and you'll be transported to a spooky place with dragon bones galore. +Right behind you, {{Name}}.</Text><ID>933712</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That's--wait. @@ This burial site isn't quite what I expected. Fishlegs described a majestic pile of bones which was, more importantly for our current discussion, much larger than this. He's usually incredibly precise when we're talking about dragons. Are we in the right place?</Text><ID>933713</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GiantMound</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look inside the giant mound</Text><ID>933710</ID></Title><Desc><Text>Look inside the giant mound</Text><ID>933710</ID></Desc></Data> + 0 + false + + + 4021 + Vanaheim05T06 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GravesSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Snotlout, is this the right place? What's going on?</Text><ID>933716</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yeah, Fishlegs really nerded out over these mounds. This place had Monstrous Nightmare bones piled all the way to the ceiling. It's kind of weird that they'd just up and disappear... I bet a rogue Boneknapper came here, saw all the bones, and had a field day.</Text><ID>933717</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4022 + Vanaheim05T07 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Mounds</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_GravesSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That's an... 'interesting'... theory, Snotlout. Let's explore other options, just in case. {{Name}}, can you search the other mound next to us? It should be the final resting place of Deadly Nadders.</Text><ID>933720</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There are only remnants left in the third mound as well.</Text><ID>933721</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NadderMound</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look inside the other mound</Text><ID>933718</ID></Title><Desc><Text>Look inside the other mound</Text><ID>933718</ID></Desc></Data> + 0 + false + + + 4023 + Vanaheim05T08 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Mounds</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Stormheart... couldn't have... stolen them all, right? I mean, these bones are sacred remnants to be revered and left alone, but I can't imagine she could find any functional use out of them. And no one could be so cruel to destroy these bones for no reason. Right?@@They have to be somewhere around here!</Text><ID>933724</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Whoa! I didn't do it.</Text><ID>933725</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Snotlout, no one is blaming you.</Text><ID>933726</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Sorry. Reflex.</Text><ID>933727</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Sorting</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the bones</Text><ID>933722</ID></Title><Desc><Text>Look for the bones</Text><ID>933722</ID></Desc></Data> + 0 + false + + + 4025 + Vanaheim05T10 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Mounds</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Voila! Now they're all in the right piles. 'All's well that ends well' is what my da always said.@@We need to catch up to Stormheart and stop her from defiling this place further. Fishlegs and I will make sure these bones go back to their rightful place. Can you ask if Snotlout is ready to move on?</Text><ID>933733</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yeah, those bone piles look right as rain and I'm glad you guys got it back right, blah blah blah. We have to talk about the [c][3eebff]real[/c][ffffff] threat that's looming over our horizon: Stormheart.@@She's here, she's ahead of us, and it should be just as apparent to you as it is to a genius like me that she's here with a purpose. If we don't stop her... who knows, maybe she'll bring about [c][3eebff]The End of the World[/c][ffffff]. +(Or something bad, at least.)</Text><ID>933734</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4155 + Vanaheim05T02A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oof. Sorry I didn't mention this before; you must have been so uncomfortable covered in that sticky fruit juice! Let's clear it off you. Go to the ocean!</Text><ID>934214</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You know, I was so worried about the Sentinels before we came to the island, but we're past that now. Having the Elder Sentinel on our side will really help us out as we look for Stormheart.</Text><ID>934215</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ocean</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Wash the gunk off yourself in the ocean</Text><ID>934212</ID></Title><Desc><Text>Visit the ocean</Text><ID>941995</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205087 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205087 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205087 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205087 + true + 350 + 350 + + 0 + +
+ false +
+ + 2594 + Vanaheim06 + 12 +

+ <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim06T00.unity3d/PfGrpVanaheim06T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_FishlegsStop04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Stormheart Rising</Text><ID>933445</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2593 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2594 + 2595 + 0 + + + 1 + 2594 + 4026 + 0 + + + 1 + 2594 + 4028 + 0 + + + 1 + 2594 + 4029 + 0 + + + 1 + 2594 + 4030 + 0 + + + 1 + 2594 + 4031 + 0 + + + 1 + 2594 + 4032 + 0 + + + 1 + 2594 + 4033 + 0 + + + 1 + 2594 + 4034 + 0 + + + 1 + 2594 + 4035 + 0 + + + + 1 + 205088 + 0 + + 2595 + Vanaheim06T01 + 12 +

2594

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2595 + 4027 + 0 + + + + 1 + 205089 + 0 + + 4027 + Vanaheim06T01A + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Mounds</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Or maybe not. +There's got to be a better way for us to get one step ahead of Stormheart. Believe me, I want to get the drop on her and pay her back. We're never going to catch up if we're just chasing her footsteps!@@I asked Skulder if he remembered anything more from when Stormheart kidnapped him. Can you ask him if he has anything that we can use?</Text><ID>933737</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPlayAgain02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Indeed! Snotlout asked in his own… inimitable… way to jog my memory. It all happened so quickly that I don't remember much. Thankfully, we have been on several adventures now, {{Name}}, and your wit and courage seem to be rubbing off on me! I scribbled down some of the symbols I spotted on her map.</Text><ID>933738</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13492 + + 1 + 5562 + 205089 + true + 1 + 1 + + 0 + +
+ false + + + 4026 + Vanaheim06T02 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Let's look at it together, shall we? I hope you can make heads or tails of it. Open your Backpack and {{input}} on my doodle, please.</Text><ID>933741</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Have you ever seen these symbols before? They seem familiar to me but I can't pinpoint why.</Text><ID>933742</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>13492</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Look at Skulder's scribbles in your Backpack</Text><ID>933739</ID></Title><Desc><Text>Look at Skulder's scribbles in your Backpack</Text><ID>933739</ID></Desc></Data> + 0 + false + + + 4028 + Vanaheim06T03 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_KrayfinHover</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_KrayfinArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Perhaps we should seek another opinion. Snotlout may not be of... much value... to us in this regard, but another of our party will be extremely helpful! Fishlegs and I share all of our knowledge amongst each other and there is no one I trust more. Can you find him and ask what he thinks?</Text><ID>933745</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I can't get over how interesting it has been to watch this young leviathan on Vanaheim, decades earlier than the trip he'll make at the end of his life. +Oops! Um, sorry... shouldn't mention the E-N-D in front of Lumie. How rude of me!</Text><ID>933746</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet with Fishlegs over the water</Text><ID>933743</ID></Title><Desc><Text>Meet with Fishlegs over the water</Text><ID>933743</ID></Desc></Data> + 0 + false + + + 4029 + Vanaheim06T04 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>All organisms in an ecosystem connect to each other. All matter moves from the environment into living organisms and back into the environment through producers, consumers, and decomposers.@@Matter from the air and the environment are taken in by plants to help them grow, like the red fruit tree here on Vanaheim. Then, organisms like dragons consume the fruit and then eventually eliminate waste or die. @@Bacteria break down this matter into various forms such as soil, which is used by plants to grow again. In this way, matter is used over and over again and is never destroyed. So the dragons that come to this island at the end of their life help maintain the ecosystem here.@@Here I go on and on when you're on a schedule! Give me Skulder's scroll and I'll see if I recognize anything.</Text><ID>933749</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! Oh! I know where I've seen this before! Do you remember the labyrinth on Impossible Island? The Dragon Bloom room was covered with decorations for the Luminous Krayfin. The scrolls along the walls looked a little bit like this.</Text><ID>933750</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>13492</Value></Pair><Pair><Key>ItemDescription</Key><Value>Skulder's Scribbles</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Skulder's scribbles to Fishlegs</Text><ID>933747</ID></Title><Desc><Text>Give Skulder's scribbles to Fishlegs</Text><ID>933747</ID></Desc></Data> + 0 + false + + + 4030 + Vanaheim06T05 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>But what could Stormheart possibly know about the Luminous Krayfin? Lumie is the only one in the archipelago. She definitely won't find another; believe me, Hiccup and I searched far and wide for any trace of Lumie's kind. No luck.@@Well... I guess the only thing to do is to continue onwards, right? Can you meet up with Snotlout and the Archaeologist on the mainland? I think they continued without us.</Text><ID>933753</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Stormheart better have another think coming if she thinks she can steal [c][3eebff]our[/c][ffffff] Lumie!</Text><ID>933754</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet up with Snotlout</Text><ID>933751</ID></Title><Desc><Text>Meet up with Snotlout</Text><ID>933751</ID></Desc></Data> + 0 + false + + + 4031 + Vanaheim06T06 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_GravesHookfang</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Okay, here's what's going to happen. Hookfang and I are the most strategic in all of Berk, and we have the keenest eyes too. We'll go on ahead without you guys and scout for signs of any danger. You guys come up at a slower pace behind me, okay?@@Just talk to Skulder; I'm sure you guys can figure out how to get further without me!</Text><ID>933757</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well. I don't wish to be unkind, but I am beginning to wonder why we even brought our braggart friend. How you and Hiccup put up with his antics, I'll never know. +Wait – is that - </Text><ID>933758</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim06T06CS.unity3d/PfGrpVanaheim06T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4032 + Vanaheim06T07 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWElderSentinel</Asset><Location>PfMarker_ElderMount</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It [c][3eebff]is[/c][ffffff] Stormheart! +Thankfully, it looks like the Elder Sentinel is looking forward to Round Two against her. Do you think he'll agree to fight by your side? You are the more skilled dragon trainer between the pair of us; do you want to try extending your hand and {{input}}ing on the Elder Sentinel?</Text><ID>933761</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Amazing. +Just amazing. +You never cease to surprise me.</Text><ID>933762</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWElderSentinel</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWElderSentinelMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Elder Sentinel and mount him</Text><ID>933759</ID></Title><Desc><Text>{{Input}} on the Elder Sentinel and mount him</Text><ID>933759</ID></Desc></Data> + 0 + false + + + 4033 + Vanaheim06T08 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWElderSentinel</Asset><Location>PfMarker_ElderMount</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Stormheart must be trying to gain a better position for the coming battle. Shall we charge forward and take the fight to her? Take care to avoid any traps; I am certain she is planning something horrid.</Text><ID>933765</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim06T08CS.unity3d/PfGrpVanaheim06T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Spikes</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the sea stacks towards the Tempest</Text><ID>933763</ID></Title><Desc><Text>Fly to the sea stacks towards the Tempest</Text><ID>933763</ID></Desc></Data> + 0 + false + + + 4034 + Vanaheim06T09 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim06T09.unity3d/PfGrpVanaheim06T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWElderSentinel</Asset><Location>PfMarker_ElderMount</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Horrifying. Horrifying! Will she force the Elder Sentinel to fight against his own kin? Does she have no morals? I have several syringes of the saline treatment ready to go, but I need a distraction. There is only one thing to be done, my brave {{Name}}: defend this land!</Text><ID>933768</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Graves</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim06MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics battle</Text><ID>935882</ID></Title><Desc><Text>Defeat the Dragon Tactics battle</Text><ID>933766</ID></Desc></Data> + 0 + false + + + 4035 + Vanaheim06T10 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_BonepileSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_BonepileFishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_BonepileArchaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWElderSentinel</Asset><Location>PfMarker_ElderMount</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWKrayfinTeen</Asset><Location>PfMarker_BonepileKrayfin</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well done! We three are quite a team. The Sentinels will recover, I think, but I hate to see the anguish in the Elder Sentinel's noble visage. +Stormheart cannot be shown any mercy. +Ah! Snotlout is back. Perhaps we can see what he discovered?</Text><ID>933771</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Look out! Stormheart is doubling back to attack you! + +Oh. +Well, I'm glad you were able to limp through without me.</Text><ID>933772</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout at the beach</Text><ID>933769</ID></Title><Desc><Text>Talk to Snotlout at the beach</Text><ID>933769</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205088 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205088 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205088 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205088 + true + 350 + 350 + + 0 + +
+ false +
+ + 2596 + Vanaheim07 + 12 +

+ <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_BonepileArchaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWGronckle_Meatlug</Asset><Location>PfMarker_BonepileFishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_BonepileSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim07T00.unity3d/PfGrpVanaheim07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>UnderwaterVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim07T04.unity3d/PfGrpVanaheim07T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Trouble With Lumie</Text><ID>933446</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2594 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2596 + 4036 + 0 + + + 1 + 2596 + 4037 + 0 + + + 1 + 2596 + 4038 + 0 + + + 1 + 2596 + 4039 + 0 + + + 1 + 2596 + 4040 + 0 + + + 1 + 2596 + 4041 + 0 + + + 1 + 2596 + 4042 + 0 + + + 1 + 2596 + 4043 + 0 + + + 1 + 2596 + 4044 + 0 + + + 1 + 2596 + 4045 + 0 + + + + 1 + 205091 + 0 + + 4036 + Vanaheim07T01 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim07T01.unity3d/PfGrpVanaheim07T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You might have bloodied Stormheart's nose, but you won't keep her down with a little victory. I'll fly back out there and try to catch a better glimpse of her. You need to get things moving to find Stormheart's goal first! Talk to Fishlegs while I head out, will you?</Text><ID>933775</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't have the faintest idea what Stormheart could be looking for. Is she looking for the Dragon Bloom? Remnants of old Luminous Krayfins? Or, Odin forbid, Lumie himself? Ooh, I hate making guesses without enough knowledge! +Speaking of Lumie, what is he doing?</Text><ID>933776</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim07T01CS.unity3d/PfGrpVanaheim07T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4037 + Vanaheim07T02 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim07T01.unity3d/PfGrpVanaheim07T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, I've been [c][3eebff]such[/c][ffffff] a fool! I think Lumie has been trying to tell us there's something we need to see underwater. He's such an intelligent dragon.@@We need to follow him down and examine what he wants to show us. You'd be our best candidate between you, me, and the Archaeologist, don't you think? Skulder is a little bit timid, bless him, and I'm naturally buoyant. I know you can do it! Can you talk to Skulder and see if he agrees?</Text><ID>933779</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word. Yes, I think a jaunt underwater would be outside my comfort zone. I hope that our lovely Luminous Krayfin would be able to find you some methods of getting oxygen! He's a Tidal Class dragon so he might not need to worry, but well, we Vikings are a different lot.@@I haven't the faintest idea what he could be trying to show us but I'm confident you'll get to the bottom of it.</Text><ID>933780</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4038 + Vanaheim07T03 + <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim07T01.unity3d/PfGrpVanaheim07T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There's so much to see underwater that I'm not sure how best to prep you! Make sure to hang on to the Krayfin's shell as you head down!@@There are three main types of shells. Bony, or exoskeleton shells, are external skeletons that support and protect an animal's body. (Turtles and Krayfin both have these types of shells.) Mollusks like clams and oysters use calcium carbonate to construct a skeleton-like casing that is shells.@@The last type of shell is the chitinous shell; crabs, lobsters, and shrimp have a rigid skeleton on the outside of the body made of chitin. The chitin protects the delicate tissues and is watertight.@@Good luck, my dear friend! {{Input}} on the Luminous Krayfin to see where he'll take you.</Text><ID>933783</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim07T03CS.unity3d/PfGrpVanaheim07T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Lumie</Text><ID>933854</ID></Title><Desc><Text>{{Input}} on Lumie</Text><ID>933801</ID></Desc></Data> + 0 + false + + + 4039 + Vanaheim07T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should follow Lumie's lead, getting air from the shells when you can.</Text><ID>933786</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TunnelEntrance</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Lumie through the water</Text><ID>933784</ID></Title><Desc><Text>Follow Lumie through the water</Text><ID>933784</ID></Desc></Data> + 0 + false + + + 4040 + Vanaheim07T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Lumie seems intent on something past the underwater cave. You should follow him through to the other side.</Text><ID>933789</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TunnelExit</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Lumie through the underwater cave</Text><ID>933787</ID></Title><Desc><Text>Follow Lumie through the underwater cave</Text><ID>933787</ID></Desc></Data> + 0 + false + + + 4041 + Vanaheim07T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Are those... Luminous Krayfin shells?</Text><ID>933792</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Shell01</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Lumie</Text><ID>933793</ID></Title><Desc><Text>Follow Lumie</Text><ID>933793</ID></Desc></Data> + 0 + false + + + 4042 + Vanaheim07T07 + <Data><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Shell02</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Lumie</Text><ID>933793</ID></Title><Desc><Text>Follow Lumie</Text><ID>933793</ID></Desc></Data> + 0 + false + + + 4043 + Vanaheim07T08 + <Data><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Shell03</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Lumie</Text><ID>933793</ID></Title><Desc><Text>Follow Lumie</Text><ID>933793</ID></Desc></Data> + 0 + false + + + 4044 + Vanaheim07T09 + <Data><Setup><Scene>UnderwaterVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim07T09.unity3d/PfGrpVanaheim07T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That symbol looks similar to Stormheart's infamous insignia. You should pick it up.</Text><ID>933800</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectStormheartHeirloom</Value></Pair><Pair><Key>Name</Key><Value>PfCollectStormheartHeirloom</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the strange heirloom</Text><ID>933798</ID></Title><Desc><Text>Pick up the strange heirloom</Text><ID>933798</ID></Desc></Data> + 0 + false + + + 4045 + Vanaheim07T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Lumie looks like he's had his fill of the Krayfin graveyard. You should {{input}} on him to hitch a ride back to the surface of the ocean.</Text><ID>933803</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>{{Name}}. + +We have much to discuss.</Text><ID>933804</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim07T10CS.unity3d/PfGrpVanaheim07T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>UnderwaterVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Lumie</Text><ID>933854</ID></Title><Desc><Text>{{Input}} on Lumie</Text><ID>933801</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205091 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205091 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205091 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205091 + true + 350 + 350 + + 0 + +
+ false +
+ + 2597 + Vanaheim08 + 54 +

+ <Data><Setup><Scene>HubVanaheimDO</Scene><Asset>PfDWNightmare_Hookfang</Asset><Location>PfMarker_SnotloutElder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim08T00.unity3d/PfGrpVanaheim08T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ultimatum</Text><ID>933447</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2596 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2597 + 4046 + 0 + + + 1 + 2597 + 4047 + 0 + + + 1 + 2597 + 4048 + 0 + + + 1 + 2597 + 4049 + 0 + + + 1 + 2597 + 4050 + 0 + + + 1 + 2597 + 4051 + 0 + + + 1 + 2597 + 4052 + 0 + + + 1 + 2597 + 4053 + 0 + + + 1 + 2597 + 4054 + 0 + + + 1 + 2597 + 4055 + 0 + + + 1 + 2597 + 4056 + 0 + + + 1 + 2597 + 4057 + 0 + + + 1 + 2597 + 4059 + 0 + + + 1 + 2597 + 4060 + 0 + + + + 1 + 205090 + 0 + + 4046 + Vanaheim08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I have taken your Archaeologist and Fishlegs captive aboard my ship, the Tempest. They are safe. +You have something that belongs to me. The heirloom is a symbol of my people. It means nothing to you and everything to me.@@Meet me on the Tempest where we can have a safe exchange. Give me my heirloom and your friends will be released. +Do you understand me?</Text><ID>933807</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>When last we spoke, I warned you not to cross me. It is a shame that you did not heed it. Do not test me again, or your friends will suffer.</Text><ID>933808</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title><Desc><Text>Talk to Stormheart</Text><ID>935743</ID></Desc></Data> + 0 + false + + + 4047 + Vanaheim08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You might need an ally to help you through this tense time. You should find the Elder Sentinel.</Text><ID>933811</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>{{Name}}! What happened, for Thor's sake?</Text><ID>933812</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ElderSentinel</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Elder Sentinel</Text><ID>933809</ID></Title><Desc><Text>Look for the Elder Sentinel</Text><ID>933809</ID></Desc></Data> + 0 + false + + + 4048 + Vanaheim08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I was watching over Stormheart's ship and looking for any sign that she would attack you again... when Stormheart suddenly arrived, racing back to the ship! Somehow I must have missed her leaving the ship the first time. Is everyone okay?</Text><ID>933815</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh no... +All's not lost, thanks to you. I'm glad you found her heirloom with Lumie. Because of that, we have what she wants. That means we have the upper hand.</Text><ID>933816</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4049 + Vanaheim08T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wait, did you actually believe her when she said our friends would be unharmed? Come on, {{Name}}. This is Villain 101, from Alvin to... Stormheart, I guess?@@The moment we give her the heirloom, we lose any leverage we have and Fishlegs and Skulder are kaput. No. If we want to see Fishlegs alive and happy again, we'll have to sneak on board and rescue them ourselves.@@Luckily, you're talking to a sneaky Viking who saw where Stormheart was going. Follow me!</Text><ID>933819</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutSilly05</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Good; we've caught up. +Don't worry, {{Name}}. It's do or die time... and Snotlout never dies.</Text><ID>933820</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos05</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Snotlout to Stormheart's ship</Text><ID>933817</ID></Title><Desc><Text>Follow Snotlout to Stormheart's ship</Text><ID>933817</ID></Desc></Data> + 0 + false + + + 4050 + Vanaheim08T05 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>All right; we need to be smart about this. Those crossbows will tear us apart if we land on the deck. We'll need to fly low close to the water, and then land below deck. It's not going to be easy but we can do it. Let's go!</Text><ID>933823</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Infiltration: check. Part one success!</Text><ID>933824</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SecretEntrance</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on the lower decks with Snotlout without being seen</Text><ID>933821</ID></Title><Desc><Text>Land on the lower decks with Snotlout without being seen</Text><ID>933821</ID></Desc></Data> + 0 + false + + + 4051 + Vanaheim08T06 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_SecretEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wait. What are all these dragons doing here? Is this how this giant ship is able to travel so fast? +That's despicable. {{Name}}, let's free them. {{Input}} on the dragon and break those chains free!</Text><ID>933827</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I don't understand... why would the dragon want to stay in this dump of a situation? </Text><ID>933828</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Moldruffle</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMoldruffle_02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the dragon by the furnace</Text><ID>933825</ID></Title><Desc><Text>{{Input}} on the dragon by the furnace</Text><ID>933825</ID></Desc></Data> + 0 + false + + + 4052 + Vanaheim08T07 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_SecretEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Ugh! There's no time to figure it out now. We need to find Skulder and Fishlegs, so let's spread out and look for them.</Text><ID>933831</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I knew I could rely on you, {{Name}}! Oh - and Snotlout is here to save us as well? I'm very impressed.</Text><ID>933832</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Archaeologist</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Archaeologist or Fishlegs below deck</Text><ID>933829</ID></Title><Desc><Text>Look for the Archaeologist or Fishlegs below deck</Text><ID>933829</ID></Desc></Data> + 0 + false + + + 4053 + Vanaheim08T08 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_SecretEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Cute. +Hurry up and {{input}} on the cage door to open it, {{Name}}. I'm keeping an eye out but I don't know when Stormheart will find us...</Text><ID>933835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>One would think I'd be used to this situation by now...</Text><ID>933836</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the cage door and open it</Text><ID>933833</ID></Title><Desc><Text>{{Input}} on the cage door and open it</Text><ID>933833</ID></Desc></Data> + 0 + false + + + 4054 + Vanaheim08T09 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Archaeologist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim08T09.unity3d/PfGrpVanaheim08T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_SecretEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fishlegs and I didn't see Stormheart or her men until it was much too late! They surrounded us from all sides, entangled us in nets, and imprisoned us in separate cages. Meatlug managed to barely evade the trap.@@I'll help you find Fishlegs, but can we please move together? I don't think my sensibilities can handle being captured again. {{Input}} on me and I'll take point.</Text><ID>933839</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim08T09CS.unity3d/PfGrpVanaheim08T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StormheartAmbush</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>4</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>SkulderEscapeSpline</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Title><Desc><Text>{{Input}} on the Archaeologist and follow him</Text><ID>933837</ID></Desc><Reminder><Text>You're falling behind the Archaeologist...</Text><ID>936418</ID></Reminder><Failure><Text>You've lost the Archaeologist!</Text><ID>936419</ID></Failure></Data> + 0 + false + + + 4055 + Vanaheim08T10 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistAmbush</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_Stormheart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We need to spread out and look for Fishlegs! I'll check the rest of this place; can you please search the deck of the Tempest?</Text><ID>933843</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>If we stop here, we might never find Fishlegs. +I got this! You two rescue Fishlegs as soon as you can!</Text><ID>934248</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutSilly03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>You disappoint me.</Text><ID>933844</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsHanging</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Fishlegs above deck</Text><ID>933841</ID></Title><Desc><Text>Look for Fishlegs above deck</Text><ID>933841</ID></Desc></Data> + 0 + false + + + 4056 + Vanaheim08T11 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistAmbush</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_Stormheart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>You have no options here. You cannot act before I send Fishlegs plummeting to his doom, and I will shoot your dragon down with all my might should you try to help him. Do not be a fool; give me the heirloom and I will release Fishlegs.</Text><ID>933847</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>All of this heartache could have been avoided if you had not tried to cross me. As it is...</Text><ID>933848</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim08T11CS.unity3d/PfGrpVanaheim08T11CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>ItemID</Key><Value>13493</Value></Pair><Pair><Key>ItemDescription</Key><Value>Stormheart's Heirloom</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the heirloom to Stormheart</Text><ID>933845</ID></Title><Desc><Text>Give the heirloom to Stormheart</Text><ID>933845</ID></Desc></Data> + 0 + false + + + 4057 + Vanaheim08T12 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistAmbush</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim08T12.unity3d/PfGrpVanaheim08T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_Stormheart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>There! I have released him. +You might want to hurry and {{input}} on his last, gasping breaths before time runs out...</Text><ID>933851</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim08T12CS.unity3d/PfGrpVanaheim08T12CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>120</Value></Pair><Pair><Key>StartObject</Key><Value>PfBubbles</Value></Pair><Pair><Key>ResetMarker</Key><Value>PfMarker_Death</Value></Pair><Pair><Key>Level</Key><Value>Vanaheim08T12</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the bubbles and save Fishlegs!</Text><ID>933849</ID></Title><Desc><Text>{{Input}} on the bubbles and save Fishlegs!</Text><ID>933849</ID></Desc><Reminder><Text>You're running out of time!</Text><ID>936420</ID></Reminder><Failure><Text>Oh no! You ran out of time! Try again.</Text><ID>936421</ID></Failure></Data> + 0 + false + + + 4059 + Vanaheim08T13 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistAmbush</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim08T13.unity3d/PfGrpVanaheim08T13</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_StormheartClap</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Run! Skulder and I will find our way back, so just {{input}} on Lumie to get out of there with Fishlegs!</Text><ID>933856</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim08T13CS_FAO.unity3d/PfGrpVanaheim08T13CS_FAO</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinTeen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Lumie</Text><ID>933854</ID></Title><Desc><Text>{{Input}} on Lumie</Text><ID>933801</ID></Desc></Data> + 0 + false + + + 4060 + Vanaheim08T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank you so much for saving my life, {{Name}}. I saw my life flash before my eyes, and there just weren't enough dragons in it!@@Gosh, I need to catch my breath and get Lumie back home. Can you tell Hiccup everything that has happened to us? We'll need to mobilize as soon as we can.</Text><ID>933859</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh no!</Text><ID>933860</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup back at the Edge</Text><ID>933857</ID></Title><Desc><Text>Talk to Hiccup back at the Edge</Text><ID>933857</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205090 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205090 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205090 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205090 + true + 350 + 350 + + 0 + +
+ false +
+ + 2598 + Vanaheim09 + 4 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T03.unity3d/PfGrpVanaheim09T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T06.unity3d/PfGrpVanaheim09T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T09.unity3d/PfGrpVanaheim09T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T12.unity3d/PfGrpVanaheim09T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Pirates</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Scourge of Stormheart!</Text><ID>933460</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2597 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2598 + 4061 + 0 + + + 1 + 2598 + 4062 + 0 + + + 1 + 2598 + 4063 + 0 + + + 1 + 2598 + 4064 + 0 + + + 1 + 2598 + 4065 + 0 + + + 2 + 2598 + 2615 + 0 + + + 1 + 2598 + 4066 + 0 + + + 1 + 2598 + 4067 + 0 + + + 1 + 2598 + 4068 + 0 + + + 2 + 2598 + 2618 + 0 + + + 1 + 2598 + 4069 + 0 + + + 1 + 2598 + 4070 + 0 + + + 2 + 2598 + 2599 + 0 + + + 1 + 2598 + 4073 + 0 + + + 2 + 2598 + 2617 + 0 + + + 1 + 2598 + 4074 + 0 + + + 1 + 2598 + 4075 + 0 + + + 2 + 2598 + 2600 + 0 + + + 1 + 2598 + 4077 + 0 + + + 2 + 2598 + 2619 + 0 + + + 1 + 2598 + 4078 + 0 + + + 1 + 2598 + 4079 + 0 + + + 2 + 2598 + 2621 + 0 + + + 2 + 2598 + 2601 + 0 + + + 2 + 2598 + 2602 + 0 + + + 1 + 2598 + 4087 + 0 + + + 1 + 2598 + 4088 + 0 + + + 1 + 2598 + 4089 + 0 + + + 1 + 2598 + 4090 + 0 + + + 1 + 2598 + 4091 + 0 + + + 1 + 2598 + 4092 + 0 + + + 1 + 2598 + 4093 + 0 + + + + 1 + 205092 + 0 + + 2599 + Vanaheim09T10 + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This is {{Name}} and you'll treat this Viking with respect. You'll never meet a braver or smarter dragon rider anywhere, you repugnant verruca!</Text><ID>933449</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunterPirate04</NPC><Text>I don't know what that means, but I'll have your hands for saying it!</Text><ID>933450</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Get them, {{Name}}. Shoot their toes and they'll run away like the abhorrent cowards they are.</Text><ID>933451</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Muddie and I owe you our lives. Things were about to get much uglier without you here.</Text><ID>933452</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot at the 2 pirates' feet</Text><ID>933448</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2599 + 4071 + 0 + + + 1 + 2599 + 4072 + 0 + + + + 1 + 0 + 0 + + 4071 + Vanaheim09T10A + <Data><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfPirateFeet01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfPirateFeet01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot at the 2 pirates' feet</Text><ID>933448</ID></Title><Desc><Text>Shoot at the 2 pirates' feet</Text><ID>933862</ID></Desc></Data> + 0 + false + + + 4072 + Vanaheim09T10B + <Data><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfPirateFeet02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfPirateFeet02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot at the 2 pirates' feet</Text><ID>933448</ID></Title><Desc><Text>Shoot at the 2 pirates' feet</Text><ID>933862</ID></Desc></Data> + 0 + false + + false + + + 2600 + Vanaheim09T14 + 4 +

2598

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Take down Stormheart's forces with Hiccup!</Text><ID>933453</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2600 + 4076 + 0 + + + + 1 + 205093 + 0 + + 4076 + Vanaheim09T14A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>But this ends right here. Now that there are two of us I think we'll make quick work of these guys. Let's go!</Text><ID>933867</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job, but our work here isn't done quite yet!</Text><ID>933868</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DT</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim09_3MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Take down Stormheart's forces with Hiccup!</Text><ID>933453</ID></Title><Desc><Text>Take down Stormheart's forces with Hiccup!</Text><ID>933453</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13494 + + 1 + 5564 + 205093 + true + 1 + 1 + + 0 + +
+ false +
+ + 2601 + Vanaheim09T19 + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Over here, mate! Those creepy wooden warriors have been rolling around all over the place and I can't seem to get a good shot at them. Can you do me a favor and shoot them out of commission?</Text><ID>933455</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Boom! These amateur buccaneers should know that it takes more than a few wind-up dolls to take down the finest dragon wrangler!</Text><ID>933456</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933454</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2601 + 4081 + 0 + + + 1 + 2601 + 4082 + 0 + + + 1 + 2601 + 4083 + 0 + + + + 1 + 0 + 0 + + 4081 + Vanaheim09T19A + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T19.unity3d/PfGrpVanaheim09T19</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Take that, wood-face!</Text><ID>933871</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfRobot01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRobot01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933454</ID></Title><Desc><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933872</ID></Desc></Data> + 0 + false + + + 4082 + Vanaheim09T19B + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T19B.unity3d/PfGrpVanaheim09T19B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's the power of a true dragon rider!</Text><ID>933874</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfRobot02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRobot02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933454</ID></Title><Desc><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933872</ID></Desc></Data> + 0 + false + + + 4083 + Vanaheim09T19C + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T19C.unity3d/PfGrpVanaheim09T19C</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>How does it feel, you tin toy?</Text><ID>933877</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfRobot03</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRobot03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933454</ID></Title><Desc><Text>Shoot Stormheart's 3 automatons on the shore</Text><ID>933872</ID></Desc></Data> + 0 + false + + false +
+ + 2602 + Vanaheim09T20 + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>If it's not one thing, it's another... Stormheart's men are setting up dragon traps on the beach. Not if we can help it! Help me chop these dragons free, please.</Text><ID>933458</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T20.unity3d/PfGrpVanaheim09T20</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You're free now! +You have to admire the audacity of Stormheart to try to capture dragons on Berk itself. She's not scared of going for the jugular, is she?</Text><ID>933459</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2602 + 4084 + 0 + + + 1 + 2602 + 4085 + 0 + + + 1 + 2602 + 4086 + 0 + + + + 1 + 0 + 0 + + 4084 + Vanaheim09T20A + <Data><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfTrap01</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrap01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Title><Desc><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Desc></Data> + 0 + false + + + 4085 + Vanaheim09T20B + <Data><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfTrap02</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrap02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Title><Desc><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Desc></Data> + 0 + false + + + 4086 + Vanaheim09T20C + <Data><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfTrap03</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfTrap03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Title><Desc><Text>Chop the metal traps to free the 3 dragons</Text><ID>933457</ID></Desc></Data> + 0 + false + + false +
+ + 2615 + Vanaheim09T05A + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We can't let Stormheart's banner fly free here. Shoot them down!</Text><ID>934140</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great work!</Text><ID>934141</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2615 + 4146 + 0 + + + 1 + 2615 + 4147 + 0 + + + 1 + 2615 + 4148 + 0 + + + + 1 + 0 + 0 + + 4146 + Vanaheim09T05B + <Data><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + + 4147 + Vanaheim09T05C + <Data><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + + 4148 + Vanaheim09T05D + <Data><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag03</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + false +
+ + 2617 + Vanaheim09T11C + 4 +

2598

+ <Data><Offer><Type>Popup</Type><ID>934142</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These pirates also put up these awful Stormheart banners around the island. Can you get rid of them, please?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>934143</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That's much better!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2617 + 4149 + 0 + + + 1 + 2617 + 4150 + 0 + + + + 1 + 0 + 0 + + 4149 + Vanaheim09T11B + <Data><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + + 4150 + Vanaheim09T11C + <Data><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + false +
+ + 2618 + Vanaheim09T08A + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Let's get rid of all these ugly banners all over this island!</Text><ID>934144</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>They look so much better when burned and crispy, don't you think?</Text><ID>934145</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2618 + 4151 + 0 + + + 1 + 2618 + 4152 + 0 + + + + 1 + 0 + 0 + + 4151 + Vanaheim09T08B + <Data><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + + 4152 + Vanaheim09T08C + <Data><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Flag02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + false +
+ + 2619 + Vanaheim09T15A + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's get rid of all these Stormheart banners, yeah?</Text><ID>934146</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job! Toothless and I both appreciate it.</Text><ID>934147</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2619 + 4154 + 0 + + + 1 + 2619 + 4153 + 0 + + + + 1 + 0 + 0 + + 4153 + Vanaheim09T15B + <Data><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key><Value>Flag01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + + 4154 + Vanaheim09T15C + <Data><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key><Value>Flag02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Title><Desc><Text>Destroy Stormheart's banners</Text><ID>934256</ID></Desc></Data> + 0 + false + + false +
+ + 2621 + Vanaheim09T18 + 4 +

2598

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We are with you, Eret. Keep the ground safe from those attackers! {{Name}}, this powerful Sentinel has arrived to help fight off the attack. With his power at your side, we must destroy these warships!</Text><ID>934392</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T18.unity3d/PfGrpVanaheim09T18</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Destroy the two pirate ships</Text><ID>934391</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2621 + 4080 + 0 + + + 1 + 2621 + 4157 + 0 + + + + 1 + 0 + 0 + + 4080 + Vanaheim09T18A + <Data><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Name</Key><Value>PfBattleBoatMission01</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Destroy the two pirate ships</Text><ID>934391</ID></Title><Desc><Text>Destroy the two pirate ships</Text><ID>934391</ID></Desc></Data> + 0 + false + + + 4157 + Vanaheim09T18B + <Data><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Name</Key><Value>PfBattleBoatMissionVariant02</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Destroy the two ships</Text><ID>934445</ID></Title><Desc><Text>Destroy the two ships</Text><ID>934445</ID></Desc></Data> + 0 + false + + false +
+ + 4061 + Vanaheim09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We're going to need a plan for a counterstrike when Stormheart inevitably attacks us. Since we don't know where she might attack, we need to get our allies ready for battle. Can you talk to Dagur and make sure he's ready to join us in this defense?</Text><ID>933889</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ha-ha! Thank Hiccup for his concern, but that's a ludicrous question. A Berserker is always ready to cause maximum mayhem at the drop of a helmet! After what Stormheart did to my wife, I'm ready to double that. You can tell my brother that I'm ready for war.</Text><ID>933890</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur and get Berserker support</Text><ID>933887</ID></Title><Desc><Text>Talk to Dagur and get Berserker support</Text><ID>933887</ID></Desc></Data> + 0 + false + + + 4062 + Vanaheim09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Well, you should share that with Astrid too. Hiccup may be the chieftain, but Astrid would be the natural general, don't you think?</Text><ID>933893</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm way ahead of you. I've been trying to get in Stormheart's evil head and anticipate where she might attack first.</Text><ID>933894</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Astrid if she's ready for the counterstrike</Text><ID>933891</ID></Title><Desc><Text>Ask Astrid if she's ready for the counterstrike</Text><ID>933891</ID></Desc></Data> + 0 + false + + + 4063 + Vanaheim09T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I think we may have a chance of finding Stormheart. While he was captured, Skulder said he heard the pirates talking about Scuttleclaw Island. It's a long shot, but we might be able to catch her off guard if we catch her there without her entire army.@@Will you and {{dragon name}} go with me to Scuttleclaw Island?</Text><ID>933897</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>What in Thor's name is going on?</Text><ID>933898</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWhoa</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head for Scuttleclaw Island</Text><ID>933895</ID></Title><Desc><Text>Head for Scuttleclaw Island</Text><ID>933895</ID></Desc></Data> + 0 + false + + + 4064 + Vanaheim09T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It looks like we have company. You're on my wing, {{Name}}! +Land on Stormheart's ship next to me and we'll take care these intruders.</Text><ID>933901</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This warship was anchored not too far from the coast, and Stormheart's forces were crawling all over the island. The only one who was holding them off was this strange looking Sentinel. Do you two know each other?</Text><ID>933902</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_STPortal02Exit</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on the warship next to Astrid</Text><ID>933899</ID></Title><Desc><Text>Land on the warship next to Astrid</Text><ID>933899</ID></Desc></Data> + 0 + false + + + 4065 + Vanaheim09T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I should've guessed you two were comrades in arms. You have the look of a pair who's come out of a fight, closer than ever. I should know... right, Stormfly? Let's show Stormheart's men what it means to mess with us. Stormfly, {{Name}}, attack the ship!</Text><ID>933905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Yeah, that's right! Run, you cowards!</Text><ID>933906</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DT</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim09_1MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat Stormheart's forces on the ship!</Text><ID>933903</ID></Title><Desc><Text>Defeat Stormheart's forces on the ship!</Text><ID>933903</ID></Desc></Data> + 0 + false + + + 4066 + Vanaheim09T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll stick around and make sure they don't come back. This attack on Scuttleclaw Island really makes me worry. This wasn't anywhere near Stormheart's full might; she might be attacking elsewhere. Can you meet up with Snotlout at Armorwing Island and give him some backup?</Text><ID>933909</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I hope Astrid didn't expect me to fight off this army all by myself!</Text><ID>933910</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHello01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to Armorwing Island</Text><ID>933907</ID></Title><Desc><Text>Fly to Armorwing Island</Text><ID>933907</ID></Desc></Data> + 0 + false + + + 4067 + Vanaheim09T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Get over here quick and I'll give you an update.</Text><ID>933913</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Stormheart has been playing us all for chumps! She didn't give two wooden coins about us. She was trying to keep us distracted so she could conquer all these islands. The whole gang is flying all over the archipelago and fighting off fires and pirates like it's the start of Ragnarok!</Text><ID>933914</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Snotlout</Text><ID>933911</ID></Title><Desc><Text>Speak with Snotlout</Text><ID>933911</ID></Desc></Data> + 0 + false + + + 4068 + Vanaheim09T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Stay cool, stay cool Snotlout. A Jorgenson is a winner, and you're the best of the bunch. Hookie and I are totally ready for this fight so let's go!</Text><ID>933917</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You know what? I am shockingly handsome in battle. You looked pretty awesome at my side too.</Text><ID>933918</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DT</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim09_2MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Help Snotlout defeat Stormheart's forces before he hurts himself</Text><ID>933915</ID></Title><Desc><Text>Help Snotlout defeat Stormheart's forces before he hurts himself</Text><ID>933915</ID></Desc></Data> + 0 + false + + + 4069 + Vanaheim09T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Now that we've kicked their butts, they won't be coming around here again. You need to go to Mudraker Island and make sure Skulder is safe. We both know that skinny Viking isn't really the fighting type.</Text><ID>933921</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Mudraker Island</Text><ID>930368</ID></Title><Desc><Text>Go to Mudraker Island</Text><ID>930368</ID></Desc></Data> + 0 + false + + + 4070 + Vanaheim09T09A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Get away from me, you vile men! I sincerely need some assistance over here!</Text><ID>933925</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Thank all the gods you've arrived. These vicious vagrants are trying to extort Muddie and me on behalf of Stormheart!</Text><ID>933926</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunterPirate04</NPC><Text>Hello-hello! Who's this then? Another pathetic excuse for a Viking, I'll bet.</Text><ID>933927</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Pirates</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find out what's wrong with the Archaeologist</Text><ID>933923</ID></Title><Desc><Text>Find out what's wrong with the Archaeologist</Text><ID>933923</ID></Desc></Data> + 0 + false + + + 4073 + Vanaheim09T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh dear. Muddie, are you okay? Please, {{input}} on my Muddie and make sure she has no injuries.</Text><ID>933930</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh! What a relief.</Text><ID>933931</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMuddie</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMuddie</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Muddie and check for injuries</Text><ID>933928</ID></Title><Desc><Text>{{Input}} on Muddie and check for injuries</Text><ID>933928</ID></Desc></Data> + 0 + false + + + 4074 + Vanaheim09T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'm afraid the battle doesn't end here. I was traveling with Hiccup and Toothless, but they were forced to change course for Dark Deep. I'm sure your crucial skills will be most helpful to them if you join them!</Text><ID>933934</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find out what's happening at Dark Deep</Text><ID>933932</ID></Title><Desc><Text>Find out what's happening at Dark Deep</Text><ID>933932</ID></Desc></Data> + 0 + false + + + 4075 + Vanaheim09T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I don't know how you found us, but boy am I glad you did. Come over here and I'll bring you up to speed!</Text><ID>933938</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Stormheart is really ramping up her response this time, huh? Now we'll have to face the consequences. Toothless and I were able to spook one of her battleships that was on the way here, but by the time we arrived, the Catastrophic Quaken had already taken a really bad hit. The Prickleboggle isn't doing well either.</Text><ID>933939</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 4077 + Vanaheim09T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>One of Stormheart's poisons is coursing through the Quaken and we don't have the time to get the antidote. I think the Prickleboggle can cure him, but he needs to recover from his exhaustion. Can you {{input}} on the Prickleboggle and give him the fish?</Text><ID>933942</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whew. All's well that ends well, right?</Text><ID>933943</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWPrickleboggle</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWPrickleboggle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13494</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>Feed the Prickleboggle to restore its strength</Text><ID>933940</ID></Title><Desc><Text>Feed the Prickleboggle to restore its strength</Text><ID>933940</ID></Desc></Data> + 0 + false + + + 4078 + Vanaheim09T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What is Stormheart's goal here? Why is she attacking all these islands? We love these dragons so we protect them, but these islands aren't exactly brimming with precious resources. +Wait. Unless...@@Oh no. What if Stormheart is just trying to keep us busy while she goes for the [c][3eebff]real[/c][ffffff] target? +I need you to warn Valka that the Tempest might be headed for Berk at some point. Fly as fast as you can!</Text><ID>933946</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer11</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Hiccup had good intuition to send you here to help the defense... His timing, of course, could be better; the fight has already found us. Stormheart's battleship is already here, {{Name}}.</Text><ID>933947</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Warn Valka of the imminent attack on Berk</Text><ID>933944</ID></Title><Desc><Text>Warn Valka of the imminent attack on Berk</Text><ID>933944</ID></Desc></Data> + 0 + false + + + 4079 + Vanaheim09T17 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T18.unity3d/PfGrpVanaheim09T18</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It will be up to you, me and Eret to fight Stormheart while the others make sure that the rest of Berk is safe. Join me on the battlefield at the docks and we will achieve victory!</Text><ID>933950</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Hullo, you two! Nice of you to drop by!</Text><ID>933951</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim09T17CS.unity3d/PfGrpVanaheim09T17CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Join Valka at Berk Docks</Text><ID>933948</ID></Title><Desc><Text>Join Valka at Berk Docks</Text><ID>933948</ID></Desc></Data> + 0 + false + + + 4087 + Vanaheim09T21 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T21.unity3d/PfGrpVanaheim09T21</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Excellent work on the ground, {{Name}}! Now we must turn our attention to the seas. The Tempest is about to launch her Grimora gas launchers. We need to stop them before they can drive innocent dragons into a frenzy! Shoot the gas launchers before they activate!</Text><ID>933958</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfGasDevice</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfGasDevice</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Grimora gas spewing device</Text><ID>933956</ID></Title><Desc><Text>Shoot the Grimora gas spewing device</Text><ID>933956</ID></Desc></Data> + 0 + false + + + 4088 + Vanaheim09T22 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Excellent! Their defenses are wide open. Can you land on the ship and free the poor Sentinel? Cloudjumper and I will try to distract them!</Text><ID>933962</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Wonderful!</Text><ID>933963</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>DoorCageOpenScripts</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DoorCageOpenScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Rescue the Sentinel trapped on the deck of the Tempest</Text><ID>933960</ID></Title><Desc><Text>Rescue the Sentinel trapped on the deck of the Tempest</Text><ID>933960</ID></Desc></Data> + 0 + false + + + 4089 + Vanaheim09T23 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Sentinels are incredibly powerful, selfless and loyal dragons, and this one is no different! It looks like she wants to fight by our side. It's time for us to take the fight to Stormheart herself! I'll clear the way while you head to the bridge. Go!</Text><ID>933966</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim09T23CS.unity3d/PfGrpVanaheim09T23CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Bridge</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the captain at the bridge of the Tempest</Text><ID>933964</ID></Title><Desc><Text>Find the captain at the bridge of the Tempest</Text><ID>933964</ID></Desc></Data> + 0 + false + + + 4090 + Vanaheim09T24 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T24.unity3d/PfGrpVanaheim09T24</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T17.unity3d/PfGrpVanaheim09T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well, well, well. It's come to this... +I guess it was inevitable, really. After all the good times, the kidnappings, and the scams, I feel like we've become close friends. I play a great pirate and you play a great sucker. Let's have a clean duel, shall we?</Text><ID>933969</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Flee from this place, you savages, and tell Stormheart what happened today! </Text><ID>933971</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim09T24CS.unity3d/PfGrpVanaheim09T24CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim09_4MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat Harald!</Text><ID>935318</ID></Title><Desc><Text>Defeat Harald!</Text><ID>935318</ID></Desc></Data> + 0 + false + + + 4091 + Vanaheim09T25 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ValkaBeach</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpVanaheim09T25.unity3d/PfGrpVanaheim09T25</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You fought hard and you fought well, dear one. Come, talk to me so I can tend to your wounds.</Text><ID>933974</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You have a few minor scuffs and bruises, but you'll be okay. If only Stoick could see you and {{dragon name}} now. He'd be as proud as any chief could be.</Text><ID>933975</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Valka so she can see that you're okay</Text><ID>933972</ID></Title><Desc><Text>{{Input}} on Valka so she can see that you're okay</Text><ID>933972</ID></Desc></Data> + 0 + false + + + 4092 + Vanaheim09T26 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I fear that all the damage Stormheart has inflicted across the archipelago may have harmed the delicate balance between Viking and dragon... I hope we can repair it.@@Eret and I will take care of the cleanup here on Berk; can you go to Dragon's Edge and update them on the situation here?</Text><ID>933978</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, you're safe!</Text><ID>933979</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>930720</ID></Title><Desc><Text>Go to Dragon's Edge</Text><ID>929044</ID></Desc></Data> + 0 + false + + + 4093 + Vanaheim09T27 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All of us made it back relatively unharmed. There were just so many of them... and the news gets even worse from there. Let me update you from all that we've seen.</Text><ID>933982</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless and I had a hunch: what if Stormheart had something even more nefarious in mind. We scouted the seas until we spotted a ship with her banner. What we found was something absolutely chilling: Auction Island has been completely taken over by Stormheart! </Text><ID>933983</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Hiccup to find out what happened</Text><ID>933980</ID></Title><Desc><Text>{{Input}} on Hiccup to find out what happened</Text><ID>933980</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205092 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205092 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205092 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205092 + true + 350 + 350 + + 0 + +
+ false +
+ + 2603 + 2017 Snoggletog01 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmith</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>That Time of Year - Pt I [2017]</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 20895 + 1 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2603 + 4094 + 0 + + + 1 + 2603 + 4095 + 0 + + + 1 + 2603 + 4096 + 0 + + + 1 + 2603 + 4097 + 0 + + + 1 + 2603 + 4098 + 0 + + + 1 + 2603 + 4099 + 0 + + + 1 + 2603 + 4100 + 0 + + + + 1 + 205094 + 0 + + 4094 + 2017Snoggletog01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Is it just me or has everything felt a little... drab, lately?@@Don't get me wrong. I love Dreadfall as much as the next Viking, but I think a splash of fun and unity could do us a whole lot of good.@@Can you ask Hiccup if he has anything planned for the upcoming holidays?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsHello02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm glad you brought it up. With everything that has happened to Berk recently, it's been hard to really get the time to get in a celebrating mood.@@There are always a hundred new problems popping up at any time that need the chieftain's attention.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text></Desc></Data> + 0 + false + + + 4095 + 2017Snoggletog01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That won't stop us from having a good time this Snoggletog. My father definitely drilled into me the importance of delegating, and I know you can get this done!@@Can you talk to Gobber and ask him about the state of our Snoggletog celebrations?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ha! We're miles ahead of Hiccup. Did you really think Astrid would have slacked off?@@I swear that girl lives for Snoggletog.@@She started talking to me about it months ago. In fact, I had to help her set up her stall all morning!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAllRight</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text></Desc></Data> + 0 + false + + + 4096 + 2017Snoggletog01T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Why are you wincing?@@Ah, I see you've had Astrid's infamous yaknog before; is the... 'unique'... taste coming back to your mouth? You don't have to worry, {{greeting}}.@@Why don't you hear the plan directly from the Nadder's mouth? She's somewhere around here on Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There you are, {{Name}}! I've been looking all over for you.</Text><ID>933472</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 4097 + 2017Snoggletog01T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQ2017Snoggletog01T04.unity3d/PfGrpQ2017Snoggletog01T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I have something really special lined up for all of our dragon trainers.@@I'm so happy to be celebrating Snoggletog together with all the dragon trainers. Let me show you! {{Input}} on me and don't fall behind. The fight starts now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ta-da! Gobber and I set up a new training area.@@Just because it's Snoggletog doesn't mean that we have any time to slack off, right?@@We need all the practice we can get if we want to defeat Stormheart the next time she comes to our doorstep.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Spline</Key><Value>Spline_Move</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Astrid and follow her</Text><ID>933473</ID></Title><Desc><Text>{{Input}} on Astrid and follow her.</Text><ID>934078</ID></Desc><Reminder><Text>Don't fall behind!</Text><ID>936412</ID></Reminder><Failure><Text>Oh no! Astrid left you behind!</Text><ID>936201</ID></Failure></Data> + 0 + false + + + 4098 + 2017Snoggletog01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Besides, our training dummies are in the proper spirit of things!@@Stormfly and I will join you in battle when you're ready.@@Come on, let's go!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I got to admit, you're pretty amazing.</Text><ID>933480</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridPos03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snoggletog01</Value></Pair><Pair><Key>Name</Key><Value>STSnoggletog1MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Conquer the Dragon Tactics battle</Text><ID>933477</ID></Title><Desc><Text>Conquer the Dragon Tactics battle.</Text><ID>935181</ID></Desc></Data> + 0 + false + + + 4099 + 2017Snoggletog01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thanks for being the first one to survive Snoggletog Training. I appreciate your support!@@Okay! We need to get everyone else through the course.@@Can you help me spread the word? Please let Fishlegs know what we have planned.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow! I really appreciate that Astrid took the effort.@@She's completely right about getting ready for Stormhearts and the Dragos of the world, who are always looking to pervert the power of dragons. But...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsIdle01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 4100 + 2017Snoggletog01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I just wish that we could spend a breather to enjoy the spirit of Snoggletog, you know?@@We don't always have to be thinking about fighting with dragons and defending Berk and all that. I'd like a moment where we can just sit together with Meatlug and share a meal.@@Ah, what am I saying? Sorry, sorry. Don't worry about it. I'll tell Astrid that I'll be right by the training area once I'm ready. You can pass the message along to the others! Can you tell Ruffnut that it's her turn?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Oh sure, I'll run a course of Astrid's new death test. (What do you mean it's not a death test? Why would we even fight if it weren't a death test?)@@Anyway. I'll run it but only if you first do something for me. Tit for tat, my friend. Tit for tat.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut.</Text><ID>929872</ID></Desc></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 205094 + true + 35 + 35 + + 0 + + + + 350 +

1

+ 0 + + 1 + 368 + 205094 + true + 350 + 350 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205094 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205094 + true + 50 + 50 + + 0 + +
+ false +
+ + 2604 + 2017 Snoggletog02 + 13 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>That Time of Year - Part II [2017]</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2603 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2604 + 4101 + 0 + + + 1 + 2604 + 4102 + 0 + + + 1 + 2604 + 4103 + 0 + + + 1 + 2604 + 4104 + 0 + + + 1 + 2604 + 4105 + 0 + + + 1 + 2604 + 4106 + 0 + + + 1 + 2604 + 4107 + 0 + + + + 1 + 205096 + 0 + + 4101 + 2017Snoggletog02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I look around the town and I see that there's something clearly missing: the blessings of Loki!@@Lucky for everyone, Ruffnut is on the case. I'll be ready to unveil my latest creation once you're back from running my errand.@@Can you find Eret at the Training Grounds and tell him to get his cute biceps over here?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>The excitement over Snoggletog is starting to build around here and let me tell you mate, it's infectious!@@I've spent most of my Snoggletogs on the deck of one ship or another, and there are too many chores at sea to properly get in the proper spirit of things.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at the Training Grounds</Text><ID>905099</ID></Title><Desc><Text>Talk to Eret at the Training Grounds</Text></Desc></Data> + 0 + false + + + 4102 + 2017Snoggletog02T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_DockRespawn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I'd been wondering how the Berkians prepare for this warming holiday. Thank you for the invitation, {{Name}}.@@I will gladly accept and meet you at Berk.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I see the decorations have already begun. This is fascinating!</Text><ID>933496</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DockRespawn</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Eret at Berk</Text><ID>933493</ID></Title><Desc><Text>Find Eret at Berk</Text></Desc></Data> + 0 + false + + + 4103 + 2017Snoggletog02T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_DockRespawn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_SnoggletogRuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ah! You had something to show me. Will you {{input}} on me and lead me to the destination before I get too distracted?@@I'm sure Ruffnut has something very important to show us.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That's right: it's Loki's Maze of Cheer! You can get a double dose of trickery and all the Snoggletog you could ever want, right here in one place. And I won't even charge.</Text><ID>933512</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogRuffnut</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Eret and lead him to Ruffnut</Text><ID>933509</ID></Title><Desc><Text>{{Input}} on Eret and lead him to Ruffnut</Text></Desc><Reminder><Text>Don't leave Eret behind!</Text><ID>936202</ID></Reminder><Failure><Text>Oh no! You left Eret behind!</Text><ID>936203</ID></Failure></Data> + 0 + false + + + 4104 + 2017Snoggletog02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I've heard so much about your mazes, Ruffnut, but I've never had the chance to see them. There's no time like the present!@@I hope this one gives me all the Snoggletog spirit I've missed over the years.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Whoo-hoo! Mama's going to follow Eret son of Eret down into the maze, my friend, and watch him brave the challenges of Loki.@@You can go off and... I don't know, talk to Hiccup or something.</Text><ID>933516</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutSilly04</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Sometimes I worry about those two.</Text><ID>933517</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text></Desc></Data> + 0 + false + + + 4105 + 2017Snoggletog02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, I've only heard good things about Astrid's new training regime. I think Toothless and I can spare a few moments from chieftain duty to have a little fun.@@I'll meet you in the training area, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoo! What a rush. Astrid, you've outdone yourself. This training course is one of the best we've ever had on Berk, and very merry to boot. We loved it!</Text><ID>933500</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STSnoggletog2MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Conquer the Dragon Tactics battle</Text><ID>933477</ID></Title><Desc><Text>Conquer the Dragon Tactics battle</Text></Desc></Data> + 0 + false + + + 4106 + 2017Snoggletog02T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_FlightReturn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This isn't very much like you, chief. When did you become a smooth talker? I could get used to this...@@{{Name}}, it looks like Dagur just arrived at Berk. Can you ask him if he wants a go? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I came as fast as I heard! On Berserker Island we have a similar tradition for Snoggletog, so I definitely wanted to try Astrid's take.@@Fighting is the only thing that can make a holiday merrier, and all Dagur wants is the merriest Snoggletog ever.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur at Berk</Text><ID>933501</ID></Title><Desc><Text>Talk to Dagur at Berk</Text></Desc></Data> + 0 + false + + + 4107 + 2017Snoggletog02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Training dummies? Pshaw. Pshaw, I say! I issue a challenge to Astrid and Stormfly: face me and Sleuther in the sacred fields of combat.@@And since she didn't expect us to issue such an important battle before afternoon tea, I'll allow you to join in the fray. What do you think?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh? Well, there's only one possible response to that.@@Bring. It. On.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridIdle04</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text></Desc></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 205096 + true + 35 + 35 + + 0 + + + + 350 +

1

+ 0 + + 1 + 368 + 205096 + true + 350 + 350 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205096 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205096 + true + 50 + 50 + + 0 + +
+ false +
+ + 2605 + 2017Snoggletog03 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>That Time of Year - Part III [2017]</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2604 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2605 + 4108 + 0 + + + 1 + 2605 + 4109 + 0 + + + 1 + 2605 + 4110 + 0 + + + 1 + 2605 + 4111 + 0 + + + 1 + 2605 + 4112 + 0 + + + 1 + 2605 + 4113 + 0 + + + + 1 + 205097 + 0 + + 4108 + 2017Snoggletog03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I shouldn't be surprised that Dagur would offer such uneven odds to me. He's one of the most arrogant Vikings I've ever met, other than Snotlout of course.@@What do you say: why don't we teach him a lesson? Let's show him what Vikings of Berk are all about.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Arg!@@I bit off a little bit more than I could chew, don't you think? My mistake. Are you ready for another go at it, Astrid?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STSnoggletog3MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat Dagur in the Dragon Tactics battle</Text><ID>933518</ID></Title><Desc><Text>Defeat Dagur in the Dragon Tactics battle</Text></Desc></Data> + 0 + false + + + 4109 + 2017Snoggletog03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm game for a rematch anytime, Dagur, but it looks like Hiccup is trying to catch our attention.@@Let's take a breather! {{Name}}, can you talk to Hiccup and see what's on his mind?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestEnd02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let me get this out of the way first: amazing victory! I was on the edge of my seat all the way through.</Text><ID>933525</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text></Desc></Data> + 0 + false + + + 4110 + 2017Snoggletog03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's slow down before the fighting spirit overtakes us all. It's all in good fun, of course, and I'm so pleased with all the hard work that Astrid put into making the training Snoggletog-themed.@@Still, we can't forget that there's more to this season than just decorations. Can you talk to my mother and tell her to get ready for the surprise?</Text><ID>933534</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I regret only a few things about my decision to live amongst the dragons, and missing Snoggletog was one of them.@@I detested how Berk treated dragons before Hiccup and Toothless, but Snoggletog was different. Snoggletog was about the warmth of survival, of our entire village coming together as one family.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text></Desc></Data> + 0 + false + + + 4111 + 2017Snoggletog03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You can tell Hiccup that I'll be there. More importantly, I noticed a glum little Viking in the middle of Berk. Can you check up on Fishlegs and make sure he makes it to the celebration?</Text><ID>933538</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I appreciate you coming by to try to raise my spirits, {{Name}}, I really do. But it's okay! I'm just being a little bit stubborn right now. A few hours cuddling with Meatlug and I'll be right as rain.</Text><ID>933539</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text></Desc></Data> + 0 + false + + + 4112 + 2017Snoggletog03T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQ2017Snoggletog03T05.unity3d/PfGrpQ2017Snoggletog03T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_SnoggletogValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_SnoggletogDagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, I haven't heard about any event being held on the outskirts of town [i](other than Astrid's little training session, of course).[/i] Is it by the training area? I'll meet you there!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This training course was Astrid's way of showing us that she cares for us. Thanks to her, we'll be ready... together, as we should be during Snoggletog.</Text><ID>933543</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogAstrid</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the others</Text><ID>933540</ID></Title><Desc><Text>Find the others</Text></Desc></Data> + 0 + false + + + 4113 + 2017Snoggletog03T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_SnoggletogFishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ah! This is exactly what I've wanted. Thank you Hiccup. </Text><ID>933528</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're all family to me. I know we can get past whatever stands in our way as long as we work together.@@Okay! Enough of that. Let's get back to some serious training! {{Name}} can go on your team this time to switch things up.</Text><ID>933529</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I thought you'd never ask.</Text><ID>933530</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridEncourage01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I knew the flash of blades and glints of axes could bring victory to our side. Well, I suppose it has a lot more to do with the teamwork and great tactics, but to me, it's all the same.@@Happy Snoggletog, you crazy Viking!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STSnoggletog4MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat Astrid in the Dragon Tactics battle</Text><ID>933526</ID></Title><Desc><Text>Defeat Astrid in the Dragon Tactics battle</Text></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 205097 + true + 350 + 350 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 205097 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 205097 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205097 + true + 50 + 50 + + 0 + +
+ false +
+ + 2606 + SnoggletogMaze 2017 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Snoggletog Maze 2017 T01</Text><ID>933437</ID></Title></Data> + false + 0 + + + 5 + 11-6-2017,3-1-2018 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2606 + 4114 + 0 + + + + 1 + 205095 + 0 + + 4114 + SnoggletogMaze 2017 T01 + <Data><Setup><Scene>SnoggletogMazeDO</Scene><Asset>PfSnoggletogHelmetChest</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title></Data> + 0 + false + + + 1 +

6

+ 13490 + + 1 + 5566 + 205095 + true + 1 + 1 + + 0 + + + false +
+ + 2607 + SnoggletogMaze 2017 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Snoggletog Maze 2017 T02</Text><ID>933438</ID></Title></Data> + false + 0 + + + 3 + 2606 + 0 + false + + + 5 + 11-6-2017,3-1-2018 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2607 + 4115 + 0 + + + + 1 + 205098 + 0 + + 4115 + SnoggletogMaze 2017 T02 + <Data><Setup><Scene>SnoggletogMazeDO</Scene><Asset>PfSnoggletogHelmetChest</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 205098 + true + 100 + 100 + + 0 + + + false +
+ + 2608 + Edu119 + 45 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu119T00.unity3d/PfGrpQEdu119T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu119T04.unity3d/PfGrpQEdu119T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsCrash</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmith</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWGobber</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Back in the Saddle Again: Part 1</Text><ID>933990</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2574 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2608 + 4116 + 0 + + + 1 + 2608 + 4117 + 0 + + + 1 + 2608 + 4118 + 0 + + + 1 + 2608 + 4119 + 0 + + + 2 + 2608 + 2609 + 0 + + + 2 + 2608 + 2610 + 0 + + + 2 + 2608 + 2611 + 0 + + + 1 + 2608 + 4123 + 0 + + + + 1 + 205099 + 0 + + 2609 + Edu119T05 + 45 +

2608

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Have {{dragon name}} shoot the zinc bath to light the fire</Text><ID>933984</ID></Title><Desc><Text>Have {{dragon name}} shoot the zinc bath to light the fire.</Text><ID>933985</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2609 + 4120 + 0 + + + + 1 + 205100 + 0 + + 4120 + Edu119T05A + <Data><Offer><Type>Popup</Type><ID>933995</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Rust is the sworn enemy of all blacksmiths but fear not, {{Name}}. The brown and flaky demon won't defeat us this time. I reckon that [c][3eebff]galvanization[/c][ffffff] is the perfect way to keep the metal from rusting. @@ We'll give the iron a protective layer of zinc so that the air and moisture can't get to it. There won't be any sneaky chemical reactions after I'm done with it. @@ I use this on Bucket's metal fishing buckets and the metallic frames that make up the roofs of our huts. Let's get started. If {{dragon name}} would be so kind as to light us a good fire, we can get this zinc bubbling. Thor knows Grump won't be lightning any forges... he's been sleeping for three days straight!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>933996</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Great work. It takes a brave Viking to try his hand at blacksmithing. I should know, since I'm always one hand short! You seem to have the keen eye of a shield polisher and the elbow grease of an axe grinder.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberPos04</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfStonePotWithZinc</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfStonePotWithZinc</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Have {{dragon name}} shoot the zinc bath to light the fire</Text><ID>933984</ID></Title><Desc><Text>Have {{dragon name}} shoot the zinc bath to light the fire.</Text><ID>933985</ID></Desc></Data> + 0 + false + + + 6 +

6

+ 13496 + + 1 + 5567 + 205100 + true + 6 + 6 + + 0 + +
+ false + + + 2610 + Edu119T06 + 45 +

2608

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><RemoveItem><ItemID>13496</ItemID><Quantity>6</Quantity></RemoveItem><Title><Text>{{Input}} on the zinc bath to clean and galvanize the iron rings</Text><ID>933986</ID></Title><Desc><Text>{{Input}} on the zinc bath to clean and galvanize the iron rings.</Text><ID>933987</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2610 + 4121 + 0 + + + + 1 + 205101 + 0 + + 4121 + Edu119T06A + <Data><Offer><Type>Popup</Type><ID>933999</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>In my shop, I galvanize in two steps. We'll get going with the [c][3eebff]surface preparation[/c][ffffff] to clean off all that dirt, grease and oil. Next, we melt the solid zinc and dip the clean iron into the molten zinc bath. The zinc coats the metal surface evenly and keeps the iron away from all that air and moisture. @@ We'll get this tarnish off the rings before you can yell 'Hairy Hooligans!' {{Input}} on the molten zinc bath to clean up the rings and coat them with the protective layer.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934000</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>That's excellent. You have a way with your hands, {{greeting}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberGenPraise03</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfPrtCauldronBrewing</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPrtCauldronBrewing</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the zinc bath to clean and galvanize the iron rings</Text><ID>933986</ID></Title><Desc><Text>{{Input}} on the zinc bath to clean and galvanize the iron rings.</Text><ID>933987</ID></Desc></Data> + 0 + false + + + 6 +

6

+ 13497 + + 1 + 5568 + 205101 + true + 6 + 6 + + 0 + +
+ false +
+ + 2611 + Edu119T07 + 45 +

2608

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the galvanized rings to Fishlegs</Text><ID>933988</ID></Title><Desc><Text>Give the galvanized rings to Fishlegs.</Text><ID>933989</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2611 + 4122 + 0 + + + + 1 + 205102 + 0 + + 4122 + Edu119T07A + <Data><Offer><Type>Popup</Type><ID>934003</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>All it took was a wee bit of cleaning and a tough metal coating to make the rings as tough as a Rumblehorn's nose. You can take them back to Fishlegs; I'm sure they'll do a fine job at holding the straps together.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberEncourage01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934004</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You fixed them! The extra layer of metal makes me feel safer already. I'm sure Meatlug will be relieved that we can get back in the air.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>13497</Value></Pair><Pair><Key>ItemDescription</Key><Value>Galvanized Saddle Ring</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the galvanized rings to Fishlegs in the Wilderness</Text><ID>934001</ID></Title><Desc><Text>Give the galvanized rings to Fishlegs in the Wilderness.</Text><ID>934002</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13498 + + 1 + 5569 + 205102 + true + 1 + 1 + + 0 + +
+ false +
+ + 4116 + Edu119T01 + <Data><Offer><Type>Popup</Type><ID>934007</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Thank heavens you're here, {{Name}}. I thought I saw Fishlegs and Meatlug flying rather shakily and losing altitude. I would have followed them but there are some hatching Terrible Terror eggs that need my urgent attention. If you thought their rooftop singing was bad, wait until you hear a newborn Terror crying! @@ I fear those two may have crashed somewhere in the Wilderness. Will you go check on them and make sure they landed safely?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934008</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug, are you okay? That was quite a tumble. @@ Perhaps we were both in too much of a rush. You see, Heather found a cranky Gronckle that wouldn't let her get close enough to find out what was wrong with him. She knew that the old dragon was close friends with Meatlug so she sent us a Terror Mail right away.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsCrash</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to the Wilderness to check on Fishlegs and Meatlug</Text><ID>934005</ID></Title><Desc><Text>Head to the Wilderness to check on Fishlegs and Meatlug.</Text><ID>934006</ID></Desc></Data> + 0 + false + + + 4117 + Edu119T02 + <Data><Offer><Type>Popup</Type><ID>934011</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Are you feeling okay, my bright-eyed little princess? You've never been so uncomfortable in your saddle before. I'm worried about your Gronckle friend too, but I don't want you to get hurt. @@ Maybe it's the saddle. When we crashed I could feel the saddle straps coming apart and the six metal rings that held them together snapping. Can you pick them up while I see what's bothering my girl?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRustedSaddleRing</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the 6 metal rings</Text><ID>934009</ID></Title><Desc><Text>Pick up the 6 metal rings.</Text><ID>934010</ID></Desc></Data> + 0 + false + + + 4118 + Edu119T03 + <Data><Offer><Type>Popup</Type><ID>934014</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank goodness! I don't think she suffered any permanent damage. Can you please show me the rings?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934015</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>No wonder the saddle came off. The rings are completely covered with rust. They were ready to break at the slightest tug, and our crash was a lot more than that! @@ [c][3eebff]Rust[/c][ffffff] is a reddish-brown compound called [c][3eebff]iron oxide[/c][ffffff]. We call it a compound because it's made up of two or more separate elements like 'iron' and 'oxygen'. @@ Rust forms on iron when the metal is exposed to oxygen and water for a long period of time. The iron goes through a slow [c][3eebff]chemical reaction[/c][ffffff] and becomes iron oxide, which is a lot weaker than the strong metal.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Fishlegs to show him the rings</Text><ID>934012</ID></Title><Desc><Text>{{Input}} on Fishlegs to show him the rings.</Text><ID>934013</ID></Desc></Data> + 0 + false + + + 4119 + Edu119T04 + <Data><Offer><Type>Popup</Type><ID>934018</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug must've brought us down because she felt the saddle straps breaking apart. That's why she made sure we ended up on a grassy patch. Great quick thinking, girl! @@ However, the only way we'll both feel safe is to make sure the metal in our saddle is completely rust-proof. As our resident blacksmith, Gobber would be the best Viking to talk to about this (once he stops complaining about how much work he's gotta do). Would you give him the rings at his shop on Berk?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934019</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Great Odin! This metal is as crumbly as stale bread. Back in my day, I saw many a rusty bolt make quick work of our finest battleships. They sank to the depths along with all my fine axes and swords.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract02</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13495</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rusted Saddle Ring</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the broken rings to Gobber in Berk</Text><ID>934016</ID></Title><Desc><Text>Give the broken rings to Gobber in Berk.</Text><ID>934017</ID></Desc></Data> + 0 + false + + + 4123 + Edu119T08 + <Data><Offer><Type>Popup</Type><ID>934022</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Once we get up in the air again, we can finally get back to our Gronckle Rescue Mission. Would you gently {{input}} on Meatlug to saddle her?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsEncourage02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934023</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I've never been much of a metalworker so thank you for helping out, {{Name}}. @@ Oh dear! Meatlug still doesn't look comfortable in that saddle, does she? I had a nasty feeling that the rust wasn't the only reason that she didn't want to wear it. There must be a bigger problem that we can't see. What do we do now?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGronckle</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGronckle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13498</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on Meatlug to saddle her up</Text><ID>934020</ID></Title><Desc><Text>{{Input}} on Meatlug to saddle her up.</Text><ID>934021</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205099 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205099 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205099 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205099 + true + 350 + 350 + + 0 + +
+ false +
+ + 2613 + Vanaheim10 + 4 +

+ <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim10T00.unity3d/PfGrpVanaheim10T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpVanaheim10T01.unity3d/PfGrpVanaheim10T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_QueenEntrance01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The New Auction Island</Text><ID>934148</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2598 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2613 + 2620 + 0 + + + 1 + 2613 + 4128 + 0 + + + 1 + 2613 + 4129 + 0 + + + 1 + 2613 + 4130 + 0 + + + 1 + 2613 + 4131 + 0 + + + 1 + 2613 + 4132 + 0 + + + 1 + 2613 + 4133 + 0 + + + 1 + 2613 + 4134 + 0 + + + + 1 + 205108 + 0 + + 2620 + Vanaheim10T01 + 4 +

2613

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>{{Input}} on the Elder Sentinel</Text><ID>934382</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2620 + 4156 + 0 + + + + 1 + 205116 + 0 + + 4156 + Vanaheim10T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's just a rumor, of course, but I believe it. If it's true, we're going to have to figure something out soon. +First, that Elder Sentinel is still here! I think he feels a deep connection with you. Will you reach out your hand and {{input}} on him?</Text><ID>934385</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSentinelElder</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSentinelElder</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Elder Sentinel</Text><ID>934382</ID></Title><Desc><Text>{{Input}} on the Elder Sentinel</Text><ID>934382</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13626 + + 1 + 5581 + 205116 + true + 1 + 1 + + 0 + +
+ false + + + 4128 + Vanaheim10T01A + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wonderful, {{Name}}! +I'm so happy for you. @@In worse news, Stormheart has only been in the archipelago for a few months. If we let her flourish in a new home, we might be in for countless more fights in the future. +Can you tell Eret that we should get ready to see for ourselves?</Text><ID>934294</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupAttract03</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>The news around the trade lanes is that Auction Island bent the knee to Stormheart. They gave her the place, lock stock and barrel, just because she arrived with some ancient symbol! Mad, isn't it?</Text><ID>934295</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at Dragon's Edge</Text><ID>934292</ID></Title><Desc><Text>Talk to Eret at Dragon's Edge</Text><ID>934292</ID></Desc></Data> + 0 + false + + + 4129 + Vanaheim10T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>We'll meet you in Auction Island. +Watch your step, {{Name}}. We are headed into the heart of enemy territory.</Text><ID>934298</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow. This is... wow. + +Stormheart moved fast.</Text><ID>934299</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridWow</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Auction Island</Text><ID>931262</ID></Title><Desc><Text>Go to Auction Island</Text><ID>929389</ID></Desc></Data> + 0 + false + + + 4130 + Vanaheim10T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>They must have been expecting us. Look: there's that snake Harald, taunting us with his new victory! I'd like to send him slithering for a hole to hide in, just like we did at Berk. @@ Um, maybe you should talk to him and not me. If I go up there to talk, I don't think I'd be able to hold myself back! I'm not saying I couldn't handle myself, but Hiccup's trying to get me turn over a new leaf.</Text><ID>934302</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Welcome to the new Auction Island, {{Name}}!@@Stormheart has assumed her rightful place as ruler. You see, her ancestors once ruled here centuries ago. When Stormheart returned with the ancestral symbol, all of Auction Island bowed to her as the leader. I'm sure many more islands in the archipelago will see the light soon enough. @@ Oh - Stormheart tells me you were instrumental in getting her artifact back. Our eternal thanks for your help.</Text><ID>934303</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title><Desc><Text>Talk to Harald</Text><ID>927532</ID></Desc></Data> + 0 + false + + + 4131 + Vanaheim10T04 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_QueenEntrance02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_QueenEntrance03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_QueenEntrance04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_QueenEntrance05</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_QueenEntrance06</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>There are no hard feelings about our fight at Berk, I hope? I was only distracting you while Stormheart made her move here. She has no ill will towards you or Hiccup. You may visit the island as you wish, as long as you abide by the rules of her reign. @@ I see you brought the Berserker chief with you! Good. That will save us a trip. We crossed each other recently over a miscommunication; Stormheart believed that his wife held the secret route to Vanaheim. We found our own way, of course. Please let him know that we are sorry for putting him through such an inconvenience.</Text><ID>934306</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ha! We had a 'miscommunication,' is it? I'm exactly the type to hold grudges. (You can ask Hiccup all about it.) Just you wait, Stormheart. @@ With that said, just look at this place! She certainly knows how to put her stamp on things, doesn't she? I like it. (It's a leadership thing.)</Text><ID>934307</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 4132 + Vanaheim10T05 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_QueenEntrance02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_QueenEntrance03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_QueenEntrance04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWDagur</Asset><Location>PfMarker_QueenEntrance05</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_QueenEntrance06</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Well, that's enough professional courtesy in her direction. @@ Stormheart attacked my wife. She attacked a Berserker ship. She's going to keep attacking us for as long as she breathes. So, I'll just have to make sure she has incentive to stop. Tell Snotlout to get ready to go on my signal, yeah?</Text><ID>934310</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>If Dagur's ready, Snotlout's good to go! As long as Stormheart is here, we'll need to fight it out. There's no time like the present! Right here, right now.</Text><ID>934311</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutYeah</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4133 + Vanaheim10T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait, wait. If the people of Auction Island wanted this, we can't stop them from choosing Stormheart. The people want her as their leader, and it sounds like a peaceful transition of power. Who are we to stick our noses into things? @@ We need to retreat and regroup back at Dragon's Edge. When we're home, we can figure out how we can handle this. This is a big power shift in the archipelago... but there's nothing more we can do right now.</Text><ID>934286</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is bad. This is really bad.</Text><ID>934287</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract01</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Dragon's Edge</Text><ID>930315</ID></Title><Desc><Text>Go back to Dragon's Edge</Text><ID>930315</ID></Desc></Data> + 0 + false + + + 4134 + Vanaheim10T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Stormheart is setting up a base of operations to prepare to grab for more power. This headache won't go away on its own. We're going to have to figure out how we can stand up to Stormheart. @@ Oh; I've seen that look on Hiccup's face before. He's worried about this situation as much as I am. Maybe he will open up to you if you try to talk to him, {{Name}}.</Text><ID>934290</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridQuestOffer02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm not worried. No, really. I'm not! @@ Listen. Stormheart threw everything she had at us this time and we still stopped her. We stopped her from ruining Vanaheim. We protected the islands around Dragon's Edge. We defended Berk. I'll admit that she won a small victory by taking Auction Island, but we'll make sure she won't get another foothold into the archipelago. @@ Stormheart will strike again... but we'll stop her. Together.</Text><ID>934291</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 205108 + true + 100 + 100 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205108 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205108 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205108 + true + 350 + 350 + + 0 + +
+ false +
+ + 2614 + Vanaheim11 + 15 +

+ <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim11T00.unity3d/PfGrpVanaheim11T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>An Old Friend</Text><ID>934152</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2613 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2614 + 4135 + 0 + + + 1 + 2614 + 4136 + 0 + + + 1 + 2614 + 4137 + 0 + + + 1 + 2614 + 4138 + 0 + + + 1 + 2614 + 4139 + 0 + + + 1 + 2614 + 4140 + 0 + + + 1 + 2614 + 4141 + 0 + + + 2 + 2614 + 2616 + 0 + + + 1 + 2614 + 4145 + 0 + + + + 1 + 205109 + 0 + + 2616 + Vanaheim11T08 + 15 +

2614

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe you could do more to stop this operation before they smuggle more dragons. The only way to end this is to chop the three weak points on the boat.</Text><ID>934151</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Title><Desc><Text>Chop 3 weak points on the boat.</Text><ID>934150</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2616 + 4144 + 0 + + + 1 + 2616 + 4142 + 0 + + + 1 + 2616 + 4143 + 0 + + + + 1 + 0 + 0 + + 4142 + Vanaheim11T08A + <Data><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>BoatWeakPoint01</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>BoatWeakPoint01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Title><Desc><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Desc></Data> + 0 + false + + + 4143 + Vanaheim11T08B + <Data><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>BoatWeakPoint02</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>BoatWeakPoint02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Title><Desc><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Desc></Data> + 0 + false + + + 4144 + Vanaheim11T08C + <Data><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>BoatWeakPoint03</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>BoatWeakPoint03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Title><Desc><Text>Chop 3 weak points on the boat</Text><ID>934149</ID></Desc></Data> + 0 + false + + false + + + 4135 + Vanaheim11T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need a closer look at Auction Island now that Stormheart has taken over. It's time for us to go undercover and do a little digging. Between my disguises and your experience dealing with scoundrels, we might discover something useful. Will you join me on Auction Island?</Text><ID>934320</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherAttract03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need to be careful, {{Name}}. Stormheart's men are everywhere and I'm sure they'd like nothing more than to capture a dragon rider.</Text><ID>934321</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherEncourage01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHeatherTeen</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Heather at Auction Island</Text><ID>934318</ID></Title><Desc><Text>Find Heather at Auction Island</Text><ID>934318</ID></Desc></Data> + 0 + false + + + 4136 + Vanaheim11T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>This island is just like a Changewing: it might have changed its skin, but it's still the same treacherous town. Still, I doubt all the dragon hunters will be happy with the new leadership, and that's exactly who we should talk to for the latest news. I'll stay here and keep an eye and an ear out for any pirate conversations. @@ There's a good example! Don't you think that storekeeper over there looks resentful? I bet you could get him talking!</Text><ID>934324</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonTrader</NPC><Text>You know, I'm not much of a complainer but a man has limits. Of course Stormheart belongs here, but the swine she brought with her? They have no respect to the rules of this island! I can't sell anything under those conditions. @@ Take that smuggler over there. He says he caught a Triple Stryke that Stormheart herself used to attack Dragon's Edge. Right! I reckon he just nabbed some stray while it was sleeping, dirty cheater that he is. He nicked my best dragon cages and I never saw a single coin for it.</Text><ID>934325</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonTrader</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get the Shifty Storekeeper talking</Text><ID>934322</ID></Title><Desc><Text>Get the Shifty Storekeeper talking</Text><ID>934322</ID></Desc></Data> + 0 + false + + + 4137 + Vanaheim11T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Could the storekeeper be talking about the same Triple Stryke that you saved from the Grimora? You should find the smuggler and discover any information that he might let slip.</Text><ID>934328</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunterPirate04</NPC><Text>Hey! You're rude, crass, and materialistic... +Lucky for you, I like that.@@Would you be interested in joining my crew for the next shipment? It may not be the biggest vessel, which means I can hide it outside the port and no one's tempted to steal my cargo. Think about the offer, mate. You won't regret signing on board.</Text><ID>934329</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Type</Key><Value>Quiz</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonHunterPirate04</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiQuizVanaheim11T03.unity3d/PfUiQuizVanaheim11T03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Get information from the pirate smuggler</Text><ID>934326</ID></Title><Desc><Text>Get information from the pirate smuggler</Text><ID>934326</ID></Desc></Data> + 0 + false + + + 4138 + Vanaheim11T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should get Heather's help before the pirate smuggler realizes he's said too much.</Text><ID>934332</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You were amazing, {{Name}}! If his boat isn't in port, then that really narrows it down. There's only one safe place on this island where you can anchor a boat without getting spotted by passing ships.</Text><ID>934333</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHeatherTeen</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Heather about the pirate smuggler</Text><ID>934330</ID></Title><Desc><Text>Tell Heather about the pirate smuggler</Text><ID>934330</ID></Desc></Data> + 0 + false + + + 4139 + Vanaheim11T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I overheard a few conversations from passing sailors who mentioned that three dragons were going to ship out any minute now. We won't let that happen. @@ Let's free these dragons before the boat is lost forever!</Text><ID>934336</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonCage01</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Rescue the baby Changewing</Text><ID>934334</ID></Title><Desc><Text>Rescue the baby Changewing</Text><ID>934334</ID></Desc></Data> + 0 + false + + + 4140 + Vanaheim11T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There are still two more dragons trapped on this boat. You should {{input}} on the Thunderpede cage and free the trapped dragon.</Text><ID>934339</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonCage02</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Rescue the Thunderpede</Text><ID>934337</ID></Title><Desc><Text>Rescue the Thunderpede</Text><ID>934337</ID></Desc></Data> + 0 + false + + + 4141 + Vanaheim11T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's only one dragon cage left. {{Input}} on the Triple Stryke's cage and free her.</Text><ID>934342</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDragonCage03</Value></Pair><Pair><Key>Name</Key><Value>Cryptex</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Rescue the Triple Stryke</Text><ID>934340</ID></Title><Desc><Text>Rescue the Triple Stryke</Text><ID>934340</ID></Desc></Data> + 0 + false + + + 4145 + Vanaheim11T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It worked! You should tell Heather what happened and ease her mind.</Text><ID>934345</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thank Thor for that. This smuggling ring is over for now, and it'll be a long time before they get another boat. @@ I'm so happy that we were able to free that Triple Stryke. She deserves to be free. She must have been truly happy that she chose you to care for her baby, {{Name}}. You've certainly proved you can bear that responsibility.</Text><ID>934346</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHeatherTeen</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Heather</Text><ID>934343</ID></Title><Desc><Text>Speak with Heather</Text><ID>934343</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205109 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205109 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205109 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205109 + true + 350 + 350 + + 0 + +
+ false +
+ + 2622 + Edu120 + 3 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu120T00.unity3d/PfGrpQEdu120T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQEdu120T01.unity3d/PfGrpQEdu120T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsCrash</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_ValkaSingetail</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_HiccupHiding</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Back in the Saddle Again: Part 2</Text><ID>934390</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2608 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2622 + 4158 + 0 + + + 2 + 2622 + 2623 + 0 + + + 1 + 2622 + 4159 + 0 + + + 2 + 2622 + 2624 + 0 + + + 2 + 2622 + 2625 + 0 + + + 1 + 2622 + 4163 + 0 + + + 1 + 2622 + 4164 + 0 + + + 1 + 2622 + 4165 + 0 + + + + 1 + 205131 + 0 + + 2623 + Edu120T02 + 3 +

2622

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>See if Phlegma has more sap for Heather</Text><ID>934387</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2623 + 4160 + 0 + + + + 1 + 205132 + 0 + + 4160 + Edu120T02A + <Data><Offer><Type>Popup</Type><ID>934396</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We're interested in the sap that we draw fresh from the rubber tree. It's sticky when liquid, but breaks easily when solid and dry. The trees grow in warmer climes far away from our shores so it's quite hard to get enough to work with. Only Phlegma knows the Vikings that travel to these exotic places so she'd be our best chance at finding some. @@ Right now, she's here in Dragon's Edge trying to restock some of her local supplies. Can you see if she has some more sap for me? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934397</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Greetings, young Viking! My supplier is a tropical tradesman who tells me that getting rubber sap straight from the tree is very smelly work. Count Thor's blessing that you can take this solid lump and keep your nose safe.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>See if Phlegma has more sap for Heather</Text><ID>934387</ID></Title><Desc><Text>See if Phlegma has more sap for Heather.</Text><ID>934395</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13633 + + 1 + 5583 + 205132 + true + 1 + 1 + + 0 + +
+ false + + + 2624 + Edu120T04 + 3 +

2622

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the morning glory vines to Heather</Text><ID>934388</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2624 + 4161 + 0 + + + + 1 + 205133 + 0 + + 4161 + Edu120T04A + <Data><Offer><Type>Popup</Type><ID>934400</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Superb! These vines can be quite difficult to reach. @@ We'll need to work quickly so we can get Fishlegs and Meatlug back in the air as soon as we can. Bring Heather the morning glory vines and show her the rubber sap. Good luck! I hope nothing explodes.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934401</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great timing, {{Name}}! Our cauldron is nice and hot thanks to Windshear so we're ready to burn rubber. Vine juice contains a chemical called [c][3eebff]sulfur[/c][ffffff], which is key to giving us the qualities we'll need. The amount of sulfur in the mixture will determine if the product is elastic or bouncy. We could make a stretchy strap or a bouncy ball if we needed to, just by adding more or less sulfur. @@ Meatlug will need the saddle pad to be soft for her sores, and Fishlegs could use some elastic for a nice cushion. I think this'll work just fine.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>13630</Value></Pair><Pair><Key>ItemDescription</Key><Value>Morning Glory Vine</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the morning glory vines to Heather</Text><ID>934388</ID></Title><Desc><Text>Give the morning glory vines to Heather.</Text><ID>934399</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13631 + + 1 + 5584 + 205133 + true + 1 + 1 + + 0 + +
+ false +
+ + 2625 + Edu120T05 + 3 +

2622

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the heated cauldron to drop in the sap and juice</Text><ID>934389</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2625 + 4162 + 0 + + + + 1 + 205134 + 0 + + 4162 + Edu120T05A + <Data><Offer><Type>Popup</Type><ID>934404</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You'll need to {{input}} on the heated cauldron carefully to drop in the sap and the juice. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer08</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934405</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Now that the heat has melted our little mixture, some steady stirring will get the chemical magic going. The rubber looks like it's shaping up well. It has the right consistency to mold the saddle pad into shape before it cools down. I can't wait to see what Meatlug will think of it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfFarmCauldronDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13631</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13633</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the heated cauldron to drop in the sap and juice</Text><ID>934389</ID></Title><Desc><Text>{{Input}} on the heated cauldron to drop in the sap and juice.</Text><ID>934403</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13632 + + 1 + 5585 + 205134 + true + 1 + 1 + + 0 + +
+ false +
+ + 4158 + Edu120T01 + <Data><Offer><Type>Popup</Type><ID>934408</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I heard Meatlug and Fishlegs were grounded in the Wilderness on their way to the old Gronckle. After giving Grump a thorough scrub on his back, something came to mind. For months now, I've seen many dragons and their riders struggle with saddles sores. @@ It'll happen after months of bouncing around on a saddle and I'd bet my good arm that Meatlug has them too. A sensitive saddle pad usually deals with the problem but I'm fresh out. Find Heather at Dragon's Edge and save my peg leg some wear and tear, will you? +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934409</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>A saddle pad's a great idea! Flexible and soft pads will stop the sores from getting worse, and make flying a lot more comfortable for Meatlug. I’m preparing for some experiments with a new material that could be perfect for this. @@ I've been trying my hand at making some natural [c][3eebff]rubber[/c][ffffff] that comes from a few colorful and strange ingredients. When we apply heat to the ingredients, the substances change and gain useful traits. We'll be making an [c][3eebff]elastomer[/c][ffffff], which is a material that can stretch itself out and return to its original shape.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherPos01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Heather about saddle pads in Dragon's Edge</Text><ID>934406</ID></Title><Desc><Text>Ask Heather about saddle pads in Dragon's Edge.</Text><ID>934407</ID></Desc></Data> + 0 + false + + + 4159 + Edu120T03 + <Data><Offer><Type>Popup</Type><ID>934412</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Rubber sap alone won't be enough for the job. Heather is going to need a special kind of flower juice to make the saddle-pad soft enough for sores. @@ I've tracked down morning glory vines that will do just that. The vine has a thin stem that has trouble supporting itself, so it winds itself around trees for support. It 'climbs' the tree so that its leaves can get sunlight, so we call these types of plants [c][3eebff]climbers[/c][ffffff]. Could you reach up there and gather three of the pink flowered vines by the wooden bridge?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWMorningGloryVines</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather three vines of the morning glory</Text><ID>934410</ID></Title><Desc><Text>Gather three vines of the morning glory.</Text><ID>934411</ID></Desc></Data> + 0 + false + + + 4163 + Edu120T06 + <Data><Offer><Type>Popup</Type><ID>934415</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm sure Fishlegs will be relieved that this thick cushion will get them back up in the air. Please, get this to Fishlegs in Wilderness as fast as you can.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer04</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934416</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I can't thank you enough for bringing the saddle pad over so quickly. My darling Meatlug, I'm so sorry I missed your saddle sores! You're such a brave dragon to get this far and you impress me every day with what you'll do for friendship. To the cave, Meatlug!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQEdu120T06CS.unity3d/PfGrpQEdu120T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>13632</Value></Pair><Pair><Key>ItemDescription</Key><Value>Saddle Pad</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Fishlegs the saddle pad in the Wilderness</Text><ID>934413</ID></Title><Desc><Text>Give Fishlegs the saddle pad in the Wilderness.</Text><ID>934414</ID></Desc></Data> + 0 + false + + + 4164 + Edu120T07 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsCave</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>934419</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! It looks like the old Gronckle is stuck underneath these rocks and can't break free. The poor boulder class dragon must be injured for him to be trapped under the rocks. {{Name}}, I could use your help over here, right away!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934420</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Meatlug, you've got this. If you can keep your old friend calm and reassured, I'm sure {{Name}} will get him out in no time.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsCave</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to the cave to help the Gronckle</Text><ID>934417</ID></Title><Desc><Text>Head to the cave to help the Gronckle.</Text><ID>934418</ID></Desc></Data> + 0 + false + + + 4165 + Edu120T08 + <Data><Offer><Type>Popup</Type><ID>934423</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>One good shot should do the trick! Make sure it's a precise hit on the boulder or the Gronckle might panic. Could you have {{dragon name}} shoot the boulder away?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>934424</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Excellent shot! The Gronckle looks a little shaken but he doesn't seem badly hurt. I'll stick around with Meatlug for a little while and make sure there's been no permanent damage. Thank you so much for helping out!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfRockShardA</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockShardA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Have {{dragon name}} shoot the rocks</Text><ID>934421</ID></Title><Desc><Text>Have {{dragon name}} shoot the rocks.</Text><ID>934422</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205131 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205131 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205131 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205131 + true + 350 + 350 + + 0 + +
+ false +
+ + 2631 + New Farming 231 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 231</Text><ID>935053</ID></Title></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2631 + 4181 + 0 + + + + 1 + 205139 + 0 + + 4181 + Ostrich Eggs, Strawberry, Cabbage + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13102</Value></Pair><Pair><Key>ItemDescription</Key><Value>Strawberry</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8213</Value></Pair><Pair><Key>ItemDescription</Key><Value>Cabbage</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Strawberries, Cabbage</Text><ID>935095</ID></Title><Desc><Text>Mulch's livestock are giving birth and he needs emergency supplies to feed them all.</Text><ID>935096</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205139 + true + 40 + 40 + + 0 + + + + 139 +

2

+ 0 + + 1 + 5604 + 205139 + true + 139 + 139 + + 0 + +
+ false +
+ + 2632 + New Farming 232 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 232</Text><ID>935054</ID></Title></Data> + false + 0 + + + 4 + 1,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2632 + 4182 + 0 + + + + 1 + 205140 + 0 + + 4182 + Ostrich Eggs, Mushrooms + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Mushrooms</Text><ID>935097</ID></Title><Desc><Text>Fishlegs asked for a big omelette after a long journey.</Text><ID>935098</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205140 + true + 40 + 40 + + 0 + + + + 363 +

2

+ 0 + + 1 + 2445 + 205140 + true + 363 + 363 + + 0 + +
+ false +
+ + 2633 + New Farming 233 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 233</Text><ID>935055</ID></Title></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2633 + 4183 + 0 + + + + 1 + 205141 + 0 + + 4183 + Ostrich Eggs, Yak Milk, Squash + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Yak's Milk, Squash</Text><ID>935099</ID></Title><Desc><Text>A strange dessert for Astrid's next meal. Let's hope Hiccup doesn't have to eat all of it.</Text><ID>935100</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 205141 + true + 72 + 72 + + 0 + + + + 699 +

2

+ 0 + + 1 + 2003 + 205141 + true + 699 + 699 + + 0 + +
+ false +
+ + 2634 + New Farming 234 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 234</Text><ID>935056</ID></Title></Data> + false + 0 + + + 4 + 9,11 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2634 + 4184 + 0 + + + + 1 + 205142 + 0 + + 4184 + Ostrich Eggs, Truffles, Dragon Nip + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13484</Value></Pair><Pair><Key>ItemDescription</Key><Value>Truffle</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Truffles, Dragon Nip</Text><ID>935101</ID></Title><Desc><Text>Valka wants to try a new mixture to cheer up Cloudjumper.</Text><ID>935102</ID></Desc></Data> + 0 + false + + + 56 +

9

+ 0 + + 1 + 1998 + 205142 + true + 56 + 56 + + 0 + + + + 756 +

2

+ 0 + + 1 + 2097 + 205142 + true + 756 + 756 + + 0 + +
+ false +
+ + 2635 + New Farming 235 + 17 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 235</Text><ID>935057</ID></Title></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2635 + 4185 + 0 + + + + 1 + 205143 + 0 + + 4185 + Ostrich Eggs, Elderberries + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Elderberries</Text><ID>935103</ID></Title><Desc><Text>The twins have a new art project. Here's hoping it won't smell too bad after a week.</Text><ID>935104</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205143 + true + 40 + 40 + + 0 + + + + 332 +

2

+ 0 + + 1 + 2072 + 205143 + true + 332 + 332 + + 0 + +
+ false +
+ + 2636 + New Farming 236 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 236</Text><ID>935058</ID></Title></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2636 + 4186 + 0 + + + + 1 + 205144 + 0 + + 4186 + Ostrich Eggs, Honey + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>21</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13351</Value></Pair><Pair><Key>ItemDescription</Key><Value>Honey</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Honey</Text><ID>935105</ID></Title><Desc><Text>Astrid wants to give Stormfly a new burst of speed and plenty of protein for a tough obstacle course.</Text><ID>935106</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 205144 + true + 50 + 50 + + 0 + + + + 976 +

2

+ 0 + + 1 + 2154 + 205144 + true + 976 + 976 + + 0 + +
+ false +
+ + 2637 + New Farming 237 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 237</Text><ID>935059</ID></Title></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2637 + 4187 + 0 + + + + 1 + 205145 + 0 + + 4187 + Ostrich Eggs, Beets + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13085</Value></Pair><Pair><Key>ItemDescription</Key><Value>Beet</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs, Beets</Text><ID>935107</ID></Title><Desc><Text>Bucket needs thicker paint for the tough Viking walls.</Text><ID>935108</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205145 + true + 40 + 40 + + 0 + + + + 843 +

2

+ 0 + + 1 + 5605 + 205145 + true + 843 + 843 + + 0 + +
+ false +
+ + 2638 + New Farming 238 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 238</Text><ID>935060</ID></Title></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2638 + 4188 + 0 + + + + 1 + 205146 + 0 + + 4188 + Ostrich Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs</Text><ID>935111</ID></Title><Desc><Text>Phlegma needs large egg shells for effective fertilizer.</Text><ID>935110</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205146 + true + 40 + 40 + + 0 + + + + 385 +

2

+ 0 + + 1 + 861 + 205146 + true + 385 + 385 + + 0 + +
+ false +
+ + 2639 + New Farming 239 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 239</Text><ID>935061</ID></Title></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2639 + 4189 + 0 + + + + 1 + 205147 + 0 + + 4189 + Ostrich Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs</Text><ID>935111</ID></Title><Desc><Text>Snotlout and Gobber need ammunition for a new kind of catapult.</Text><ID>935112</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205147 + true + 40 + 40 + + 0 + + + + 523 +

2

+ 0 + + 1 + 5606 + 205147 + true + 523 + 523 + + 0 + +
+ false +
+ + 2640 + New Farming 240 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 240</Text><ID>935062</ID></Title></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2640 + 4190 + 0 + + + + 1 + 205148 + 0 + + 4190 + Ostrich Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13654</Value></Pair><Pair><Key>ItemDescription</Key><Value>Ostrich Egg</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Ostrich Eggs</Text><ID>935111</ID></Title><Desc><Text>A whole flock of Night Terrors are hungry and cranky. They need feeding!</Text><ID>935114</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205148 + true + 40 + 40 + + 0 + + + + 662 +

2

+ 0 + + 1 + 5607 + 205148 + true + 662 + 662 + + 0 + +
+ false +
+ + 2641 + Edu122 + 13 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu122T00.unity3d/PfGrpQEdu122T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsFloraCensus</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Going Berserker!</Text><ID>935122</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2626 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2641 + 4191 + 0 + + + 1 + 2641 + 4192 + 0 + + + 1 + 2641 + 4193 + 0 + + + 2 + 2641 + 2642 + 0 + + + 1 + 2641 + 4195 + 0 + + + 1 + 2641 + 4196 + 0 + + + 1 + 2641 + 4197 + 0 + + + + 1 + 205153 + 0 + + 2642 + Edu122T04 + 13 +

2641

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the 3 milk thistle flowers to Phlegma</Text><ID>935121</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2642 + 4194 + 0 + + + + 1 + 205154 + 0 + + 4194 + Edu122T04 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_PhlegmaFloraCensus</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>{{Name}}, can you hear me? I rushed back to base camp as soon as I heard about poor Snotlout. Hurry back down and bring me the milk thistle flowers.</Text><ID>935126</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Milk thistle seeds can stay [c][3eebff]dormant[/c][ffffff] for a long time, which means that they're alive but not growing. To help their seeds, the parent plants protect the core (or [c][3eebff]kernel[/c][ffffff]) with a protective cover called a [c][3eebff]seed coat[/c][ffffff].</Text><ID>935127</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>ItemID</Key><Value>13696</Value></Pair><Pair><Key>ItemDescription</Key><Value>Milk Thistle Flower</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the 3 milk thistle flowers to Phlegma</Text><ID>935121</ID></Title><Desc><Text>Give the 3 milk thistle flowers to Phlegma.</Text><ID>935154</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13697 + + 1 + 5613 + 205154 + true + 1 + 1 + + 0 + +
+ false + + + 4191 + Edu122T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Great news, {{Name}}! Once Dagur declared himself the baddest, craziest Viking in and outside the archipelago it was easy as pie to prank old Snotty. That was some mushroom I must admit; one bite and he went a nice shade of vomit green. @@ You don't want to miss this! Snotlout should still be at the mushroom patch by the trees in the Wilderness. Why don't you sneak over and take a peek?</Text><ID>935130</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>What in Thor's name took you so long? I ate one small stupid mushroom and now I feel like a pair of pants after a weeklong dragon flight. @@ The twins told me that these mushrooms would make me stronger than the Berserkers of yore, if I was strong enough to take it. Of course I'm strong enough, but something went wrong! I can't imagine what those pea-brains were thinking. My tombstone's going to read: 'Here lies the archipelago's most handsome dragon rider. Loved by all, poisoned by two stupid Nuts.'</Text><ID>935131</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SickRespawn</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to the mushroom patch in the Wilderness and check on Snotlout</Text><ID>935128</ID></Title><Desc><Text>Head to the mushroom patch in the Wilderness and check on Snotlout.</Text><ID>935155</ID></Desc></Data> + 0 + false + + + 4192 + Edu122T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Stop that, Snotlout! You're a Jorgenson and a Jorgenson never quits even if death is staring him in his well-chiseled face. Fishlegs and Phlegma are around here somewhere for some kind of plant census thing. Tell old Fishy I need one of his remedies right now and I don't care if he has to boil every prized leaf he's been hoarding.</Text><ID>935134</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, this is terrible even by the twins' standards! Certain mushrooms like the 'death cap' and 'destroying angel' are [c][3eebff]toxic[/c][ffffff], which means that they contain poisonous natural chemicals. They look exactly like some edible non-poisonous mushrooms, so people often get poisoned by accident! Anyone who eats a poisonous mushroom needs immediate attention to reverse the effects.</Text><ID>935135</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Fishlegs about Snotlout getting poisoned</Text><ID>935132</ID></Title><Desc><Text>Tell Fishlegs about Snotlout getting poisoned.</Text><ID>935156</ID></Desc></Data> + 0 + false + + + 4193 + Edu122T03 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu122T03.unity3d/PfGrpQEdu122T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Fortunately, Phlegma and I are elbows deep in our flora census so we can prepare an antidote. We'll need the seeds of milk thistles, a thorny purple-flowered plant that grows in sunny spots high up on the cliffs. Could you gather three flowers while I track down Phlegma?</Text><ID>935138</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWMilkThistleFlower</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get 3 milk thistle flowers</Text><ID>935136</ID></Title><Desc><Text>Get 3 milk thistle flowers on top of the cliffs.</Text><ID>935157</ID></Desc></Data> + 0 + false + + + 4195 + Edu122T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>There's not a moment to lose! We just need the seeds for our antidote, and we can separate them from their coat with the pestle. {{Input}} on the mortar and pestle to crush the seed coat.</Text><ID>935141</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Good work.</Text><ID>935142</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfLabPestle</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfLabPestle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13697</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the mortar and pestle to drop in the seeds and crush them</Text><ID>935139</ID></Title><Desc><Text>{{Input}} on the mortar and pestle to drop in the seeds and crush them.</Text><ID>935158</ID></Desc></Data> + 0 + false + + + 4196 + Edu122T06 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SickSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I'll need you to bring Snotlout here while I finish up the antidote. By now, poor Snotlout might be showing signs of mushroom poisoning like nausea, giddiness, sweating or problems with vision. Make sure you avoid things that'll hurt his sensitive stomach. @@ So, {{input}} on Snotlout and lead him here. May the gods help you if the diarrhea has already started!</Text><ID>935145</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Your quick thinking might save his life, young Viking.</Text><ID>935146</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>'Might'? I'm Snotlout and I'm not dying today. Give me that antidote now so I can take care of the twins and on my honor as a Viking, I’ll never eat a mushroom again.</Text><ID>935147</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhlegmaFloraCensus</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair></Objective><Type>Escort</Type><Title><Text>Bring Snotlout to Phlegma</Text><ID>935143</ID></Title><Desc><Text>Bring Snotlout to Phlegma at the camp.</Text><ID>935159</ID></Desc><Reminder><Text>You're losing Snotlout!</Text><ID>936272</ID></Reminder><Failure><Text>You lost Snotlout! Hurry!</Text><ID>936273</ID></Failure></Data> + 0 + false + + + 4197 + Edu122T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Calm down and drink up, Snotlout. Both Vikings and dragons mistake good mushrooms for bad and it's something we should take care of. Young Viking, can you destroy the mushroom patch before more harm is done?</Text><ID>935150</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thanks to you, the Wilderness will be safe for a good while.</Text><ID>935151</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I owe you one, {{Name}}. I'll have my revenge on those twins once I recover, I swear! Right now, I'm thinking: Terrible Terrors in their closet and Fireworms in their helmets. You in?</Text><ID>935152</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMushrooms</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfMushrooms</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the mushroom patch to destroy it</Text><ID>935148</ID></Title><Desc><Text>Shoot the mushroom patch to destroy it.</Text><ID>935160</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205153 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205153 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205153 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205153 + true + 350 + 350 + + 0 + +
+ false +
+ + 2643 + Scavenger 2018 00 + 4 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Eret's Plunder</Text><ID>935165</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 5 + 06-01-2018,09-01-2018 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2643 + 4198 + 0 + + + 2 + 2643 + 2644 + 0 + + + 1 + 2643 + 4201 + 0 + + + 1 + 2643 + 4202 + 0 + + + + 1 + 205183 + 0 + + 2644 + Scavenger2018-00T02 + 4 +

2643

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>{{Input}} on the parchment</Text><ID>935190</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2644 + 4199 + 0 + + + + 1 + 0 + 0 + + 4199 + Scavenger2018-00T02 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpQScavenger2018-00T02.unity3d/PfGrpQScavenger2018-00T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I excused myself from the bar, snuck onto their ship and relieved them of all the loot! I bet they didn't expect that, ha ha. What an adventure, huh? +I haven't had the chance to sort them yet but I've already spotted some very intriguing things. Can you look through these crates and {{input}} on anything that catches your eye?</Text><ID>935192</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Hmm... What's that? +'When the wind calms and wars end, +The bill comes due and must be paid. +But Storms will Shatter when Berk needs a friend. +Reach over the flames of elder dragons and grab the blade.'</Text><ID>935193</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWParchment</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWParchment</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the parchment</Text><ID>935190</ID></Title><Desc><Text>{{Input}} on the parchment.</Text><ID>935337</ID></Desc></Data> + 0 + false + + false + + + 4198 + Scavenger2018-00T01 + <Data><Offer><Type>Popup</Type><ID>935196</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid always tells me that I can't do everything for Berk. It's hard to let go of responsibility sometimes, y'know? Still, I know I can trust you to see this task to the end.@@Eret just 'rescued' a bundle of Berk goods from the hands of the Dragon Hunters and could use a hand sorting them out. Can you help him out? The goods are at the Training Grounds by his ship!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935197</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I'm so glad you stopped by! You're another witness to my daring victory over the Dragon Hunters!@@I was keeping my head down at Auction Island and enjoying a drink with some of my old friends when I overheard those villains discussing a great find! The Dragon Hunters were celebrating the discovery of a lost cache of Berk goods! They were planning on earning a pretty penny with the loot. They weren't counting on me.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at the Training Grounds</Text><ID>905099</ID></Title><Desc><Text>Talk to Eret at the Training Grounds.</Text><ID>935195</ID></Desc></Data> + 0 + false + + + 4201 + Scavenger2018-00T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Wow. Even [c][3eebff]I've[/c][ffffff] heard of this and I'm just a newcomer! We need to tell someone right away.@@I'm going to finish looking through these things right away while you're off. If that's what I think it is, I need to find many more of those in the future. Can you tell Valka what we've found?</Text><ID>935204</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Goodness. What you've found... This is a puzzle piece that might lead to the mythic Stormshatter. +Many generations ago, Berk was in a war with many factions in the archipelago. Our chieftain, Stoick's grandfather, was a dangerous Viking who led Berk with his massive sword Stormshatter in hand. Enemy armies begged for mercy.@@A lasting peace fell upon the archipelago, but there was a cost; Berk split Stormshatter and spread it across the islands. We must find our treasure before the Dragon Hunters do.</Text><ID>935205</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka at Berk</Text><ID>928722</ID></Title><Desc><Text>Talk to Valka.</Text><ID>929868</ID></Desc></Data> + 0 + false + + + 4202 + Scavenger2018-00T05 + <Data><Offer><Type>Popup</Type><ID>935208</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Please. Can you let Astrid know what's going on? She'll know how to best proceed.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935209</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow. I thought Stormshatter was just a legend...@@I'll coordinate with Eret and our other allies to look for additional puzzle pieces. I'll post any we find on the School of Dragons forums, at http://forum.schoolofdragons.com/. +Berk needs your help, {{Name}}. Let's do this.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 205183 + true + 200 + 200 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 205183 + true + 45 + 45 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 205183 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205183 + true + 50 + 50 + + 0 + +
+ false +
+ + 2645 + Scavenger 2018 T01 + 2 +

+ <Data><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfDWChestScavengerHunt.unity3d/PfDWChestScavengerHunt</Asset><Location>PfMarker_Scavenger2018</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset /></Reward><Title><Text>First Treasure</Text><ID>935166</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 999 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2645 + 4203 + 0 + + + + 1 + 0 + 0 + + 4203 + Scavenger2018-01T01 + <Data><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the chest</Text><ID>935210</ID></Title><Desc><Text>Look for the chest.</Text><ID>935211</ID></Desc></Data> + 0 + false + + false + + + 2646 + Scavenger 2018 T01 B + 2 +

+ <Data><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfGrpQScavenger2018-01T00.unity3d/PfGrpQScavenger2018-01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Is This a Treasure?</Text><ID>935169</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2645 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2646 + 2647 + 0 + + + 2 + 2646 + 2648 + 0 + + + 1 + 2646 + 4206 + 0 + + + 1 + 2646 + 4207 + 0 + + + + 1 + 205184 + 0 + + 2647 + Scavenger2018-01T01B + 2 +

2646

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2647 + 4204 + 0 + + + + 1 + 205197 + 0 + + 4204 + Scavenger2018-01T01B + <Data><Offer><Type>Popup</Type><ID>935214</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! You had the same thought, too? Well, you know what they say, ha ha. Great minds think alike! +That chest looks locked but don't worry... Fishlegs has your back! Come over here, and I'll be able to help you out.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935215</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I found this key hidden under a rock on the island. It was a bit tough getting to it -- that rock was near some open lava flows -- but Meatlug was able to get down there without any trouble. You're so wonderful, aren't you Meatlug?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13782 + + 1 + 5620 + 205197 + true + 1 + 1 + + 0 + +
+ false + + + 2648 + Scavenger2018-01T02B + 2 +

2646

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Open the chest</Text><ID>935168</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2648 + 4205 + 0 + + + + 1 + 205196 + 0 + + 4205 + Scavenger2018-01T02B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What's in the box? What's in the box?! +Oh, I'm so excited. {{Input}} on the chest, quick!</Text><ID>935218</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWChestScavengerHunt</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13782</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the chest</Text><ID>935248</ID></Title><Desc><Text>Open the chest by {{input}}ing it.</Text><ID>935319</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13781 + + 1 + 5619 + 205196 + true + 1 + 1 + + 0 + +
+ false +
+ + 4206 + Scavenger2018-01T03B + <Data><Offer><Type>Popup</Type><ID>935221</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow! That looks so old! That looks... well, I can't tell what that is from here. Would you mind very much showing it to me? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935222</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't want to make a definitive answer here without first consulting the history books, but... yeah. +This doesn't look like a trick, like a Thorston gag or anything. This is the real deal.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Show the artifact to Fishlegs</Text><ID>935219</ID></Title><Desc><Text>Show the artifact to Fishlegs.</Text><ID>935220</ID></Desc></Data> + 0 + false + + + 4207 + Scavenger2018-01T04B + <Data><Offer><Type>Popup</Type><ID>935225</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I need to head back to Berk and consult with Gothi, but we definitely need to get in front of this. Can you find Eret at the Training Grounds and tell him that we need to find more of those clues, right away?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935226</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I see! Well, good. I can feel my old habits boiling in my veins, {{Name}}. It's going to be an old-fashioned treasure hunt, and there's no one you can have on your side better than Eret, the greatest former hunter around! +As soon as I find more clues to the puzzle, my friend, I'll send news to Snod as soon as I discover another puzzle piece. I can't wait!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at the Training Grounds</Text><ID>905099</ID></Title><Desc><Text>Talk to Eret.</Text><ID>935224</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205184 + true + 300 + 300 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 205184 + true + 45 + 45 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205184 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205184 + true + 50 + 50 + + 0 + +
+ false +
+ + 2649 + Scavenger 2018 T02 + 2 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWChestScavengerHunt.unity3d/PfDWChestScavengerHunt</Asset><Location>PfMarker_Scavenger2018</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset /></Reward><Title><Text>The Second Treasure</Text><ID>935170</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2646 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2649 + 4208 + 0 + + + + 1 + 0 + 0 + + 4208 + Scavenger2018-02T01 + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title><Desc><Text>Find the chest.</Text><ID>935228</ID></Desc></Data> + 0 + false + + false + + + 2650 + Scavenger 2018 T02 B + 2 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQScavenger2018-02T00.unity3d/PfGrpQScavenger2018-02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Hobblegrunt Mystery</Text><ID>935172</ID></Title></Data> + false + 0 + + + 5 + 07-09-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2649 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2650 + 4209 + 0 + + + 1 + 2650 + 4210 + 0 + + + 1 + 2650 + 4211 + 0 + + + 1 + 2650 + 4212 + 0 + + + 2 + 2650 + 2651 + 0 + + + + 1 + 205185 + 0 + + 2651 + Scavenger2018-02T05B + 2 +

2650

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Open the Chest</Text><ID>935168</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2651 + 4213 + 0 + + + + 1 + 205198 + 0 + + 4213 + Scavenger2018-02T05B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Moment, of truth, {{Name}}: is this a goose chase or another successful treasure hunt? There's only one way to find out. Fly back up and {{input}} on the chest; if we've found the right one, it'll open right up.</Text><ID>935231</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ah-ha! Another piece! +I'm thrilled! Our hard work is bearing fruit, partner. I'll remember this moment when it gets tough while I'm on the hunt for the next piece. Don't worry; those Dragon Hunters don't have a chance while Eret is on the case! </Text><ID>935232</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWChestScavengerHunt</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13782</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the chest</Text><ID>935248</ID></Title><Desc><Text>{{Input}} on the chest and open it.</Text><ID>935340</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13780 + + 1 + 5621 + 205198 + true + 1 + 1 + + 0 + +
+ false + + + 4209 + Scavenger2018-02T01B + <Data><Offer><Type>Popup</Type><ID>935235</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>{{Name}}! Snod got the riddle to you, didn't he? That little sneak. I'm so glad you pieced together the clues. I happened to be in the area when I saw you fly overhead; I said to myself, "Well, son of Eret, don't you think {{Name}} would have a good idea of where this thing could be?" And lo and behold, you didn't disappoint! Can you come down and talk to me on my ship?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935236</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Fishlegs had to find a key to the last chest, right? He's not here right now, so I suppose you and I will have to do. Put two hard working Viking heads together, like ours, and I'm sure we can rival the knowledge stored in that big brain of his!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title><Desc><Text>Talk to Eret.</Text><ID>935224</ID></Desc></Data> + 0 + false + + + 4210 + Scavenger2018-02T02B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Now, now. If I were an ancient treasure key, where would I be hiding? +The riddle mentioned a cliff, I think. Maybe that'll be a good place to start...</Text><ID>935239</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Cliff</Value></Pair><Pair><Key>Range</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the 'cliffside'</Text><ID>935237</ID></Title><Desc><Text>Look for the cliffside.</Text><ID>935357</ID></Desc></Data> + 0 + false + + + 4211 + Scavenger2018-02T03B + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQScavenger2018-02T03.unity3d/PfGrpQScavenger2018-02T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ah! Good eye, mate. It looks like this might get tricky; those adults are going to be wary with their young so close to those keys. You're gonna need to be move slowly and carefully so that you won't startle them. You can do it!</Text><ID>935242</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWScavengerKey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the key without disturbing the Hobblegrunts</Text><ID>935240</ID></Title><Desc><Text>Grab the key.</Text><ID>935322</ID></Desc></Data> + 0 + false + + + 4212 + Scavenger2018-02T04B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I had no doubt you could get it, my friend. Come back here to the chest and we'll get things going!</Text><ID>935245</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to the chest</Text><ID>935243</ID></Title><Desc><Text>Go back to the chest.</Text><ID>935323</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 205185 + true + 200 + 200 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 205185 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205185 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205185 + true + 50 + 50 + + 0 + +
+ false +
+ + 2653 + Scavenger 2018 T03 B + 2 +

+ <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQScavenger2018-03T00.unity3d/PfGrpQScavenger2018-03T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Spelunking</Text><ID>935175</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2652 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2653 + 4215 + 0 + + + 1 + 2653 + 4216 + 0 + + + 1 + 2653 + 4217 + 0 + + + 1 + 2653 + 4218 + 0 + + + 2 + 2653 + 2654 + 0 + + + 1 + 2653 + 4220 + 0 + + + + 1 + 205186 + 0 + + 2654 + Scavenger2018-03T05B + 2 +

2653

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Open the Chest</Text><ID>935168</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2654 + 4219 + 0 + + + + 1 + 205199 + 0 + + 4219 + Scavenger2018-03T05B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Bravo! Great job! Now, all we need to do is get back to the chest and {{input}} on it. </Text><ID>935250</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWChestScavengerHunt</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWChestScavengerHunt</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13782</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the chest</Text><ID>935248</ID></Title><Desc><Text>{{Input}} on the chest and open it.</Text><ID>935340</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13779 + + 1 + 5622 + 205199 + true + 1 + 1 + + 0 + +
+ false + + + 4215 + Scavenger2018-03T01B + <Data><Setup><Scene>BerkCavesDO</Scene><Asset>PfDWEret</Asset><Location>PfMarker_Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>What a surprise meeting you here in the burrows under Berk! (I asked Fishlegs where he'd last spotted you, but let's not let facts get in the way of a good intro.) Have you found the chest, yet? Let me know if we're in the right place!</Text><ID>935252</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You're on a roll! Who would have imagined that the thing we were searching for was right below our noses the whole time? I don't know when we last came down here and plotted this area out. There could be all sorts of treasures hiding here for us! Though this place sounds... crowded, at the very least. What is that?</Text><ID>935253</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Eret</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title></Data> + 0 + false + + + 4216 + Scavenger2018-03T02B + <Data><Offer><Type>Popup</Type><ID>935256</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That burrowing sound? I think that we're listening to the sounds of Whispering Deaths burrowing around us. We had to deal with a nest of them here before. I hope they're feeling friendly... They can be prickly if they feel like they're in danger.@@Well, here I am, putting the cart before the yak. Maybe the Whispering Deaths will be feeling nice and friendly today! We won't know until we try to find the key, right? Let's spread out and search!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935257</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Well. You were saying, Fishlegs?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Tunnels</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the key</Text><ID>935254</ID></Title><Desc><Text>Look for the key.</Text><ID>935255</ID></Desc></Data> + 0 + false + + + 4217 + Scavenger2018-03T03B + <Data><Offer><Type>Popup</Type><ID>935260</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Let's not jump to conclusions. Maybe this is the dragons' home, and they won't mind us sneaking past them for the key! Maybe we caught them on a good day, right? Why don't we try {{input}}ing on the closest Whispering Death? Maybe you can calm him.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935261</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Whoa! Okay, okay, we can safely start jumping to those conclusions. Let's all jump! They are primed and ready to fight. We should back up a handful of steps... maybe even a lot of handfuls of steps. These Boulder Class dragons are really nasty when they get riled up, and it looks like something already got their hackles up!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWWhisperingDeathNPC</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWWhisperingDeathNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Whispering Death</Text><ID>935258</ID></Title><Desc><Text>{{Input}} on the Whispering Death.</Text><ID>935259</ID></Desc></Data> + 0 + false + + + 4218 + Scavenger2018-03T04B + <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQScavenger2018-03T04.unity3d/PfGrpQScavenger2018-03T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Steady the ship, Fishlegs. We're too close to let a few ornery dragons keep us from the treasure, right? +{{Name}}! You're the expert here in getting past dangerous dragons. Can you make it past those Whispering Deaths and get that key?</Text><ID>935264</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWScavengerKey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Make your way past the Whispering Deaths and grab the key</Text><ID>935262</ID></Title><Desc><Text>Make your way past the Whispering Deaths and grab the key.</Text><ID>935325</ID></Desc></Data> + 0 + false + + + 4220 + Scavenger2018-03T06B + <Data><Offer><Type>Popup</Type><ID>935267</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's beautiful, mate. Another successful hunt and hopefully not many more left! I'm having fun trying to discover where all of these bad boys are, but I can feel the Dragon Hunters breathing down my neck. Why don't you show Fishlegs the piece and verify it's a part of the mythic weapon while I go back to searching?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935268</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow. I've been sketching the pieces you've found over the past few weeks. With this, I can say for certain: we are so close to putting the Stormshatter back together. We just can't let down our guard just yet. We need to find the blade to complete this sword... and it could be anywhere.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 205186 + true + 200 + 200 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 205186 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205186 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205186 + true + 50 + 50 + + 0 + +
+ false +
+ + 2655 + Scavenger 2018 T04 + 2 +

+ <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWChestScavengerHunt.unity3d/PfDWChestScavengerHunt</Asset><Location>PfMarker_Scavenger2018</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset /></Reward><Title><Text>The Fourth Treasure</Text><ID>935176</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2653 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2655 + 4221 + 0 + + + + 1 + 0 + 0 + + 4221 + Scavenger2018-04T01 + <Data><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title><Desc><Text>Find the chest.</Text><ID>935228</ID></Desc></Data> + 0 + false + + false + + + 2656 + Scavenger 2018 T04 B + 2 +

+ <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWChestScavengerHunt.unity3d/PfDWChestScavengerHunt</Asset><Location>PfMarker_Scavenger2018</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Storm Reforged</Text><ID>935179</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2655 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2656 + 4222 + 0 + + + 1 + 2656 + 4223 + 0 + + + 1 + 2656 + 4224 + 0 + + + 1 + 2656 + 4225 + 0 + + + 1 + 2656 + 4226 + 0 + + + 1 + 2656 + 4234 + 0 + + + 2 + 2656 + 2657 + 0 + + + 1 + 2656 + 4228 + 0 + + + 1 + 2656 + 4229 + 0 + + + 1 + 2656 + 4230 + 0 + + + 2 + 2656 + 2658 + 0 + + + 1 + 2656 + 4232 + 0 + + + 1 + 2656 + 4233 + 0 + + + + 1 + 205187 + 0 + + 2657 + Scavenger2018-04T06B + 2 +

2656

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Open the key</Text><ID>935177</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2657 + 4227 + 0 + + + + 1 + 205200 + 0 + + 4227 + Scavenger2018-04T06B + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpScavenger2018-04T04.unity3d/PfGrpScavenger2018-04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Let's get this done before they screw up the courage to fight us again. I'll defend your ship on the surface while you head back down and open that chest. Good luck!</Text><ID>935273</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWChestScavengerHunt</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWChestScavengerHunt</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13782</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>Get back underwater and {{input}} on the chest</Text><ID>935271</ID></Title><Desc><Text>Get back underwater and {{input}} on the chest.</Text><ID>935326</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13778 + + 1 + 5623 + 205200 + true + 1 + 1 + + 0 + +
+ false + + + 2658 + Scavenger2018-04T10B + 2 +

2656

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Forge the sword</Text><ID>935178</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2658 + 4231 + 0 + + + + 1 + 205201 + 0 + + 4231 + Scavenger2018-04T10B + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpScavenger2018-04T10.unity3d/PfGrpScavenger2018-04T10</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Well, I shouldn't sound so surprised. It was my grandpappy who made the sword in the first place, and there's blacksmithing blood coursing through our veins. Making illustrious weapons is sort of our thing, and this is just another good example.@@All right, then! Grump, let's get this working. {{Name}}, can you {{input}} on the forge and take the sword out?</Text><ID>935276</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfForge</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfForge</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the forge</Text><ID>935274</ID></Title><Desc><Text>{{Input}} on the forge.</Text><ID>935327</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 14911 + + 1 + 5624 + 205201 + true + 1 + 1 + + 0 + +
+ false +
+ + 4222 + Scavenger2018-04T01B + <Data><Offer><Type>Popup</Type><ID>935279</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The key could be somewhere on the ocean floor, but searching for it all over could get dangerous. You should search the shipwreck for any sign of the key.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ShipUnderwater</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the ship for the key</Text><ID>935277</ID></Title><Desc><Text>Search the ship for the key.</Text><ID>935278</ID></Desc></Data> + 0 + false + + + 4223 + Scavenger2018-04T02B + <Data><Offer><Type>Popup</Type><ID>935282</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Could the key be in the underwater canyon on the other side of this ravine?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Canyon</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the underwater canyon</Text><ID>935280</ID></Title><Desc><Text>Search the underwater canyon.</Text><ID>935281</ID></Desc></Data> + 0 + false + + + 4224 + Scavenger2018-04T03B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's no sign of the key anywhere... Perhaps you should {{input}} on the diving bell and head back to the surface and look around on the surface, where it's safe.</Text><ID>935285</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Praise to Aegir! You're just in time, {{Name}}. There are Dragon Hunters swarming all over this place, and I can really use your help getting out of here in one piece!</Text><ID>935286</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>AvatarMarkerScavenger</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head back to the surface</Text><ID>935283</ID></Title><Desc><Text>Head back to the surface.</Text><ID>935407</ID></Desc></Data> + 0 + false + + + 4225 + Scavenger2018-04T04B + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpScavenger2018-04T04.unity3d/PfGrpScavenger2018-04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Come to my ship, my friend, and I'll pass on some clues to the things you're looking for. I'll fend off their attacks for as long as I can until you can give me some backup. Don't fret- ol' Eret's got a lot up his metaphoric sleeves for these thugs!</Text><ID>935289</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>So, Heather and I were doing a little reconnaissance at the Dragon Hunter base when we overheard a very important conversation. These bumbling idiots somehow got their hands on the key before us. Can you believe it? They had to get the jump on us, right when we were so close to the treasure!</Text><ID>935290</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title><Desc><Text>Talk to Eret.</Text><ID>935224</ID></Desc></Data> + 0 + false + + + 4226 + Scavenger2018-04T05B + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpScavenger2018-04T04.unity3d/PfGrpScavenger2018-04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Well! I think that's enough talk, don't you? Let's see this through to the end! </Text><ID>935293</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>A-ha! Take that, you little weasels.</Text><ID>935294</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfBattleBoatMission</Value></Pair><Pair><Key>Name</Key><Value>PfBattleBoatMission</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Destroy the Dragon Hunter ship and recover the key</Text><ID>935291</ID></Title><Desc><Text>Destroy the Dragon Hunter ship and recover the key.</Text><ID>935329</ID></Desc></Data> + 0 + false + + + 4228 + Scavenger2018-04T07B + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpScavenger2018-04T04.unity3d/PfGrpScavenger2018-04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should get back to Eret and make sure that he's okay.</Text><ID>935297</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Did you get it? Was it the last bit of the treasure?</Text><ID>935298</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>AvatarMarkerScavenger</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the surface</Text><ID>935295</ID></Title><Desc><Text>Return to the surface.</Text><ID>935408</ID></Desc></Data> + 0 + false + + + 4229 + Scavenger2018-04T08B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Excellent! I had no doubt we could do it! +These yellow-bellied cowards are running with their tails tucked between their legs. I'll make sure that they sail far away from our waters!@@I bet Fishlegs and Gobber and everyone at Berk are waiting with baited breath to see if we've found enough pieces to restore our weapon. Go on ahead without me, {{Name}}, and I'll catch up when I'm done escorting these idiots out of here.</Text><ID>935301</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Now… what do we have here?</Text><ID>935302</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GobberBlacksmithToothless</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to Gobber's Smithy at Berk</Text><ID>935299</ID></Title><Desc><Text>Visit Gobber's Smithy at Berk.</Text><ID>935331</ID></Desc></Data> + 0 + false + + + 4230 + Scavenger2018-04T09B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow, wow, wow! This is it! We're going to be the ones to make the mythic Stormshatter whole again. I can barely hold still! Can you give Gobber all the pieces that you've found in the treasure hunts? Then we can figure out how we can reforge this amazing weapon.</Text><ID>935305</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You found this blade under the sea at Ship Graveyard? It's hardly taken any water damage at all! Our ancestors knew what they're doing, didn't they?</Text><ID>935306</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13778</Value></Pair><Pair><Key>ItemDescription</Key><Value>Shattered Blade</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13779</Value></Pair><Pair><Key>ItemDescription</Key><Value>Shattered Guard</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13780</Value></Pair><Pair><Key>ItemDescription</Key><Value>Shattered Handle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>13781</Value></Pair><Pair><Key>ItemDescription</Key><Value>Shattered Tooth</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>13778</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13779</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13780</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13781</ItemID><Quantity>1</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Give the pieces to Gobber</Text><ID>935303</ID></Title><Desc><Text>Give the pieces to gobber.</Text><ID>935409</ID></Desc></Data> + 0 + false + + + 4232 + Scavenger2018-04T11B + <Data><Offer><Type>Popup</Type><ID>935309</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Wow... +She's... +beautiful. +No, I'm not crying. Don't look at me! Just - just go tell Hiccup, please.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935310</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Amazing! Stoick used to tell me stories of this weapon, and of my great-grandfather... I never thought we'd be holding this weapon on this hill, while I watch over Berk as the chieftain.@@Thank you, {{Name}}. Because of you and Eret, we have this precious link to our past. I'm sure our ancestors are smiling down on us, proud that we are protecting our village with their weapon.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring Hiccup up to date on the news</Text><ID>935307</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 4233 + Scavenger2018-04T12B + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_TuffnutChicken</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>935313</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Speaking of our favorite ex-dragon wrangler, it looks like Eret is pulling into the harbor right now! Can you pass along my congratulations?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935314</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Is that the beauty? +Stormshatter, huh? This weapon certainly lives up to the name. It looks dangerous on all sides!@@We did it, {{Name}}. We beat the Dragon Hunters fair and square and solved a fun treasure hunt. We'll have to do it again sometime! I'll be your partner any time you'd like, friend.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title><Desc><Text>Talk to Eret.</Text><ID>935224</ID></Desc></Data> + 0 + false + + + 4234 + Scavenger2018-04T05C + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpScavenger2018-04T04.unity3d/PfGrpScavenger2018-04T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>935335</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>There! You've made a clear path to the key. Can you grab it before the dragon hunters can regroup?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWScavengerKey</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWScavengerKey</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the key</Text><ID>935333</ID></Title><Desc><Text>Collect the key.</Text><ID>935334</ID></Desc></Data> + 0 + false + + + 80 +

2

+ 0 + + 1 + 27 + 205187 + true + 80 + 80 + + 0 + +
+ + 350 +

1

+ 0 + + 1 + 368 + 205187 + true + 350 + 350 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205187 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205187 + true + 350 + 350 + + 0 + +
+ false +
+ + 2659 + Dragon Tactics 00 + 11 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_Dragons07</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Ready for Tactics</Text><ID>935343</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-03-2014 06:08:13,01-03-2022 06:08:13 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2659 + 4235 + 0 + + + 1 + 2659 + 4236 + 0 + + + 2 + 2659 + 2660 + 0 + + + 1 + 2659 + 4238 + 0 + + + + 1 + 205303 + 0 + + 2660 + Tactics00T03 + 11 +

2659

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Enter Dragon Tactics</Text><ID>935344</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2660 + 4237 + 0 + + + + 1 + 205304 + 0 + + 4237 + Tactics00T03 + <Data><Offer><Type>Popup</Type><ID>935346</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now we can get to some serious training. Welcome to Dragon Tactics! Let's go inside, shall we?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>STLevelSelectionDO</Value></Pair><Pair><Key>Location</Key><Value>PfDESquadPortal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter Dragon Tactics</Text><ID>935344</ID></Title><Desc><Text>Enter Dragon Tactics.</Text><ID>935345</ID></Desc></Data> + 0 + false + + + 20 +

6

+ 13711 + + 1 + 5642 + 205304 + true + 20 + 20 + + 0 + +
+ false + + + 4235 + Tactics00T01 + <Data><Offer><Type>Popup</Type><ID>935349</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've been working nonstop with Gobber to make sure that we have a place to hone our skills. I can't wait to show you the fruits of our hard work! Can you meet me at Dragon's Edge?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>930720</ID></Title><Desc><Text>Go to Dragon's Edge.</Text><ID>931901</ID></Desc></Data> + 0 + false + + + 4236 + Tactics00T02 + <Data><Offer><Type>Popup</Type><ID>935352</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>As long as Vikings are trying to take advantage of dragons, someone needs to stand up to them. It's up to us, {{Name}}. +Can you find me next to the training area?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Astrid_Dragons07</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid by the entrance to Dragon Tactics</Text><ID>935350</ID></Title><Desc><Text>Find Astrid by the Dragon Tactics building.</Text><ID>935351</ID></Desc></Data> + 0 + false + + + 4238 + Tactics00T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now you're getting the hang of it! It feels good to get out there with your dragon and sweat it out, huh? You can earn those shards if you keep playing and winning. They're really helpful! @@You can use the shards by {{input}}ing on the anvil at Berk. Check it out at Gobber's smithy!</Text><ID>935355</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I heard Astrid ran you through the wringer, but you look like you're just ready for more. I like that, {{greeting}}! @@When you earn shards through Dragon Tactics, bring'em to my forge and I'll upgrade them for you!</Text><ID>935356</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Blacksmith</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBlacksmithPortal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go to the Blacksmith at New Berk</Text><ID>935353</ID></Title><Desc><Text>Go to the Blacksmith at New Berk.</Text><ID>941734</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205303 + true + 75 + 75 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 205303 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205303 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205303 + true + 50 + 50 + + 0 + +
+ false +
+ + 2661 + New Farming 241 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 241</Text><ID>935360</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2661 + 4239 + 0 + + + + 1 + 205351 + 0 + + 4239 + Boar Manure + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure</Text><ID>935404</ID></Title><Desc><Text>Phlegma needs fertilizer to nurture a rare patch of the Buffalord's herbs.</Text><ID>935387</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205351 + true + 60 + 60 + + 0 + + + + 158 +

9

+ 0 + + 1 + 5687 + 205351 + true + 158 + 158 + + 0 + +
+ false +
+ + 2662 + New Farming 242 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 242</Text><ID>935361</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2662 + 4240 + 0 + + + + 1 + 205352 + 0 + + 4240 + Boar Manure, Dragon Nip + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure, Dragon Nip</Text><ID>935388</ID></Title><Desc><Text>Fishlegs thinks that planting a small patch of Dragon nip close to his garden will help Meatlug deal with her nerves.</Text><ID>935389</ID></Desc></Data> + 0 + false + + + 380 +

2

+ 0 + + 1 + 890 + 205352 + true + 380 + 380 + + 0 + + + + 60 +

9

+ 0 + + 1 + 1986 + 205352 + true + 60 + 60 + + 0 + +
+ false +
+ + 2663 + New Farming 243 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 243</Text><ID>935362</ID></Title></Data> + false + 0 + + + 4 + 9,16 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2663 + 4241 + 0 + + + + 1 + 205353 + 0 + + 4241 + Boar Manure, Puffin Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure, Puffin Feathers</Text><ID>935390</ID></Title><Desc><Text>Tuffnut wants to try sculpture. No one thinks the Chicken will be impressed.</Text><ID>935391</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 205353 + true + 112 + 112 + + 0 + + + + 1316 +

2

+ 0 + + 1 + 5688 + 205353 + true + 1316 + 1316 + + 0 + +
+ false +
+ + 2664 + New Farming 244 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 244</Text><ID>935363</ID></Title></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2664 + 4242 + 0 + + + + 1 + 205354 + 0 + + 4242 + Boar Manure, Yak Milk, Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure, Yak Milk, Chicken Eggs</Text><ID>935392</ID></Title><Desc><Text>Ruffnut needs stink bomb supplies. Thank Thor her new recipe won't be brewed on any occupied island!</Text><ID>935393</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 205354 + true + 72 + 72 + + 0 + + + + 1759 +

2

+ 0 + + 1 + 5689 + 205354 + true + 1759 + 1759 + + 0 + +
+ false +
+ + 2665 + New Farming 245 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 245</Text><ID>935364</ID></Title></Data> + false + 0 + + + 4 + 9,13 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2665 + 4243 + 0 + + + + 1 + 205355 + 0 + + 4243 + Boar Manure, Black Wool, Lavender + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8344</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lavender</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure, Black Wool, Lavender</Text><ID>935394</ID></Title><Desc><Text>Gothi is bringing back the old ways of keeping huts warm. Do you think it'll catch on?</Text><ID>935395</ID></Desc></Data> + 0 + false + + + 72 +

9

+ 0 + + 1 + 1999 + 205355 + true + 72 + 72 + + 0 + + + + 1930 +

2

+ 0 + + 1 + 5690 + 205355 + true + 1930 + 1930 + + 0 + +
+ false +
+ + 2666 + New Farming 246 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 246</Text><ID>935365</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2666 + 4244 + 0 + + + + 1 + 205356 + 0 + + 4244 + Boar Manure, Pumpkins + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>21</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure, Pumpkins</Text><ID>935396</ID></Title><Desc><Text>Pumpkin patches for everyone, just in time for Dreadfall!</Text><ID>935397</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 205356 + true + 60 + 60 + + 0 + + + + 1329 +

2

+ 0 + + 1 + 5691 + 205356 + true + 1329 + 1329 + + 0 + +
+ false +
+ + 2667 + New Farming 247 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 247</Text><ID>935366</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2667 + 4245 + 0 + + + + 1 + 205357 + 0 + + 4245 + Boar Manure, Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure, Chicken Eggs</Text><ID>935398</ID></Title><Desc><Text>Mulch's crops are dying. He needs some of his emergency plant growing formula.</Text><ID>935399</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 205357 + true + 60 + 60 + + 0 + + + + 1520 +

2

+ 0 + + 1 + 5692 + 205357 + true + 1520 + 1520 + + 0 + +
+ false +
+ + 2668 + New Farming 248 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 248</Text><ID>935367</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2668 + 4246 + 0 + + + + 1 + 205358 + 0 + + 4246 + Boar Manure + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure</Text><ID>935404</ID></Title><Desc><Text>The chill is coming and a good harvest is needed to stock up on food.</Text><ID>935401</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 205358 + true + 60 + 60 + + 0 + + + + 1583 +

2

+ 0 + + 1 + 5693 + 205358 + true + 1583 + 1583 + + 0 + +
+ false +
+ + 2669 + New Farming 249 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 249</Text><ID>935368</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2669 + 4247 + 0 + + + + 1 + 205359 + 0 + + 4247 + Boar Manure + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure</Text><ID>935404</ID></Title><Desc><Text>Spitelout won't admit he doesn't know how to make a perfect lawn. Can we help him out for the Thawfest games?</Text><ID>935403</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 205359 + true + 60 + 60 + + 0 + + + + 2024 +

2

+ 0 + + 1 + 5694 + 205359 + true + 2024 + 2024 + + 0 + +
+ false +
+ + 2670 + New Farming 250 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 250</Text><ID>935369</ID></Title></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2670 + 4248 + 0 + + + + 1 + 205360 + 0 + + 4248 + Boar Manure + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15127</Value></Pair><Pair><Key>ItemDescription</Key><Value>Boar Manure</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Boar Manure</Text><ID>935404</ID></Title><Desc><Text>Mala and Dagur want to bring farming to both their islands but need some help.</Text><ID>935405</ID></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 205360 + true + 60 + 60 + + 0 + + + + 2542 +

2

+ 0 + + 1 + 5695 + 205360 + true + 2542 + 2542 + + 0 + +
+ false +
+ + 2671 + 2018 Dreadfall + 10 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQ2018DreadfallT00.unity3d/PfGrpQ2018DreadfallT00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Return of the Flightmare [2018]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2671 + 4249 + 0 + + + 2 + 2671 + 2672 + 0 + + + 1 + 2671 + 4251 + 0 + + + 1 + 2671 + 4252 + 0 + + + + 1 + 205361 + 0 + + 2672 + 2018DreadfallT02 + 10 +

2671

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Heather</Text><ID>920768</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2672 + 4250 + 0 + + + + 1 + 205362 + 0 + + 4250 + 2018DreadfallT02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>With Dreadfall, we're remembering both our fear of the unknown and the beautiful relationship we've managed to forge with these magnificent creatures. It's best to share both our joys and our fears with friends, don't you think?@@I think I saw Heather arrive by the... whatever it is the twins are planning. Can you welcome her to our Dread-ful Berk?</Text><ID>935372</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey! Of course I'm here. I wouldn't miss this for the world... and neither would Windshear. Isn't that right, girl? +I see you're admiring Windshear's new look. She's just had a nice flask full of the glowing algae that bring the Flightmare to Berk!</Text><ID>935373</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather.</Text><ID>926651</ID></Desc></Data> + 0 + false + + false + + + 4249 + 2018DreadfallT01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Time flies when you're having fun, right? That must be how Dreadfall crept up on us again without Berk noticing! Thankfully, I've been keeping a close eye on the dates and I had all the festivities and decorations ready to spread across Berk.@@We're just about ready, but I don't feel like we could get a proper start without the reason we even have this festival: a Hofferson! Can you talk to Astrid and see if she's ready for the occasion?</Text><ID>935376</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>'Dreadfall.' Our family used to hate the coming of Aurvandil's Fire, and the Flightmare loomed large in our legacy as a failure. We're so lucky that we understand these dragons much more now that they're our friends, rather than legends.</Text><ID>935377</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at Berk</Text><ID>935374</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 4251 + 2018DreadfallT03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Sorry! I'd give you some but the twins swore me to secrecy. On another note: is it just me, or does Snotlout seem a little miffed about this whole situation? Maybe we should ask him what's on his mind. Would you mind handling that for us?</Text><ID>935380</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Don't worry your little head about Snotlout. I'm good. I'm all good. It's just... ugh.</Text><ID>935381</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 4252 + 2018DreadfallT04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_SnoggletogRuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Stupid Ruffnut and Tuffnut challenged me and Hookie to a race through their newest obstacle course, the 'Fright of Passage'? But it looks like they spiked the potion they gave to Hookfang because he flew off without me somewhere. Now how am I going to show everyone up with some world record times?@@It's a setup, I swear. Ruffnut set me up! I bet she'd fess up to you if you asked her.</Text><ID>935384</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Typical Snotlout. He demands a double portion of glowing algae from me, force feeds Hookfang, and then gets upset when he flies away in a huff? He's not worthy of The Glow!@@You look like you might be of sterner stuff. Come on, {{Name}}: brave the Fright of Passage, and let's see where your bravery leads you... +(It'll lead you to me. I'm at the end of the maze. Don't worry, I'll make it cool.)</Text><ID>935385</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut by the entrance of her course</Text><ID>935382</ID></Title><Desc><Text>Talk to Ruffnut by the entrance to the Fright of Passage.</Text><ID>938507</ID></Desc></Data> + 0 + false + + + 30 +

2

+ 0 + + 1 + 30 + 205361 + true + 30 + 30 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205361 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205361 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205361 + true + 50 + 50 + + 0 + +
+ false +
+ + 2673 + DreadfallMaze 2018 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Dreadfall Maze 2018</Text><ID>935410</ID></Title></Data> + false + 0 + + + 5 + 09-01-2018 12:00:00,01-01-2019 12:00:00 + 0 + false + + + 3 + 999 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2673 + 4253 + 0 + + + + 1 + 205363 + 0 + + 4253 + DreadfallMaze2018 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Dreadfall Maze Chest</Text><ID>933186</ID></Title><Desc><Text>Find the Dreadfall Maze Chest.</Text><ID>935414</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 15202 + + 1 + 5697 + 205363 + true + 1 + 1 + + 0 + + + false +
+ + 1706 + New Farming 144 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,18 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1706 + 1728 + 0 + + + + 1 + 202954 + 0 + + 1728 + 12 Arctic Willow, 2 Puffin Feather, 24 Sunflower + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Arctic Willow, Puffin Feather, Sunflower</Text><ID>926453</ID></Title><Desc><Text>Fishlegs wants to dress up Meatlug for a competition. She deserves to win!</Text><ID>926454</ID></Desc></Data> + 0 + false + + + 160 +

9

+ 0 + + 1 + 2018 + 202954 + true + 160 + 160 + + 0 + + + + 1402 +

2

+ 0 + + 1 + 2147 + 202954 + true + 1402 + 1402 + + 0 + +
+ false +
+ + 1723 + New Farming 161 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 2 + False + 0 + false + + + 4 + 9,16 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1723 + 1745 + 0 + + + + 1 + 202971 + 0 + + 1745 + 3 Puffin Feathers, 9 Black Beans + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Puffin Feathers, Black Beans</Text><ID>926486</ID></Title><Desc><Text>Spitelout enjoys having black bean chili for dinner. The feathers are just for garnish.</Text><ID>928864</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 202971 + true + 112 + 112 + + 0 + + + + 872 +

2

+ 0 + + 1 + 2162 + 202971 + true + 872 + 872 + + 0 + +
+ false +
+ + 1815 + Deathsong_DragonEye02 + 4 +

+ <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpDSDragonEye02T00.unity3d/PfGrpDSDragonEye02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWHeadmaster</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWAlchemist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>PfDWBotanist</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Newest Dragon Eye Lens</Text><ID>926590</ID></Title><Desc><Text>Dragon Eye lens is found but it contains unexpected revelations!</Text><ID>926591</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDeathsongExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1813 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 1815 + 2048 + 0 + + + 1 + 1815 + 2050 + 0 + + + 1 + 1815 + 2051 + 0 + + + 1 + 1815 + 2052 + 0 + + + 1 + 1815 + 2053 + 0 + + + 1 + 1815 + 2054 + 0 + + + 1 + 1815 + 2055 + 0 + + + + 1 + 203072 + 0 + + 2048 + DragonEye02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You found the Dragon Eye lens on Death Song Island? That's amazing. That tiny artifact could hold every secret of the Death Song. I hope we can find a way to safely keep this dragon from threatening Berk! Please give it to me.</Text><ID>926939</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupPos01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm… It looks like this Dragon Eye lens is for a Tidal class dragon, instead of the Death Song. Still, it might have information we can use against the Death Song.</Text><ID>926940</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12152</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Eye Lens</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Dragon Eye Lens to Hiccup</Text><ID>926996</ID></Title><Desc><Text>Give the Dragon Eye Lens to Hiccup</Text><ID>926996</ID></Desc></Data> + 0 + false + + + 2050 + DragonEye02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's get this lens fired up right away! We'll need the right dragon fire to unlock its secrets. I'll stop by the Dragon Stables to see what dragon can help us with the Dragon Eye, and I'll meet you at the Great Hall!</Text><ID>926943</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Great Hall</Text><ID>923331</ID></Title><Desc><Text>Meet in the Great Hall</Text><ID>941707</ID></Desc></Data> + 0 + false + + + 2051 + DragonEye02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I brought a Tidal Class friend to help us out. {{Input}} on the Sand Wraith and tell her to brighten up the room with her fireball!</Text><ID>926946</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's fascinating.</Text><ID>926947</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGronckleIron20</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSandWraith</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSandWraith</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Sand Wraith</Text><ID>926944</ID></Title><Desc><Text>{{Input}} on the Sand Wraith</Text><ID>926944</ID></Desc></Data> + 0 + false + + + 2052 + DragonEye02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You should take a closer look, {{Name}}.</Text><ID>926950</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These projections aren't very easy to decipher, but I think we can figure it out. Look, this part of the projection calls the Thunderdrum out as a Tidal Class dragon. It also states that the Thunderdrum has a concussive sound instead of a fireball! @@ It's different but it makes sense! The Thunderdrum's loud sound is created by vibrations of matter that can travel through liquids, gases, and solids. These vibrations create a type of energy called sound energy, and when this energy hits enemies, boom! They are stunned!</Text><ID>926955</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBThunderdrum01.unity3d/PfUiMissionActionDBThunderdrum01</Asset><NPC>PfDWHiccup</NPC><Text>Thunderdrum</Text><ID>12191</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd09</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DragonEyeProjection</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the Thunderdrum projection</Text><ID>926953</ID></Title><Desc><Text>Look at the Thunderdrum projection</Text><ID>926953</ID></Desc></Data> + 0 + false + + + 2053 + DragonEye02T05 + <Data><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBThunderdrum02.unity3d/PfUiMissionActionDBThunderdrum02</Asset><NPC>PfDWHiccup</NPC><Text>Thunderdrum</Text><ID>12191</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It reads here that Thunderdrums react to vibrations and sound waves! That’s just like a snake. They show no sign of an outer ear, but their inner ear gets a signal from their muscles, skin and bones; and that is how they "hear." Since they spend a lot of time underwater, this type of "hearing" comes in handy!</Text><ID>926956</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupGenPraise02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the Thunderdrum projection</Text><ID>926953</ID></Title><Desc><Text>Look at the Thunderdrum projection</Text><ID>926953</ID></Desc></Data> + 0 + false + + + 2054 + DragonEye02T06 + <Data><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBThunderdrum03.unity3d/PfUiMissionActionDBThunderdrum03</Asset><NPC>PfDWHiccup</NPC><Text>Thunderdrum</Text><ID>12191</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh! This section of the projection mentions the Death Song. It looks like the Thunderdrum and the Death Song are natural enemies. Because the Thunderdrum is deaf, it is immune to the Death Song's hypnotic song. The predatory dragon doesn't like that.</Text><ID>926960</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Thunderdrum information</Text><ID>926957</ID></Title><Desc><Text>Find the Thunderdrum information</Text><ID>926957</ID></Desc></Data> + 0 + false + + + 2055 + DragonEye02T07 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_AvatarStart01</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I hate to break up the meeting, but we have a situation! </Text><ID>926963</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract03</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There's a problem happening at the school, and we need to address it right away!</Text><ID>926964</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWAstridDO.unity3d/DlgAstridAttract02</Asset><NPC>PfDWAstrid</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 203072 + true + 200 + 200 + + 0 + + + + 90 +

2

+ 0 + + 1 + 525 + 203072 + true + 90 + 90 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203072 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203072 + true + 50 + 50 + + 0 + +
+ false +
+ + 2182 + Quest_Skrill01 + 12 +

+ <Data><Setup><Scene>OpenOceanNightDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQSkrill01T10.unity3d/PfGrpQSkrill01T10</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Almighty Thor</Text><ID>927469</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1579 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2182 + 2640 + 0 + + + 1 + 2182 + 2641 + 0 + + + 1 + 2182 + 2642 + 0 + + + 1 + 2182 + 2643 + 0 + + + 1 + 2182 + 2644 + 0 + + + 2 + 2182 + 2183 + 0 + + + 1 + 2182 + 2649 + 0 + + + 1 + 2182 + 2650 + 0 + + + 1 + 2182 + 2651 + 0 + + + 2 + 2182 + 2187 + 0 + + + 2 + 2182 + 2186 + 0 + + + 1 + 2182 + 2652 + 0 + + + 2 + 2182 + 2188 + 0 + + + 1 + 2182 + 2659 + 0 + + + 1 + 2182 + 2970 + 0 + + + + 1 + 203569 + 0 + + 2183 + Skrill01T06 + 12 +

2182

+ <Data><Offer><Type>Popup</Type><ID>927464</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>If we want to make the land around the statue safe, we need to make sure that the electricity can't be conducted to other nearby objects. Things that allow electricity to pass through it are called conductors, and things that slow electricity down or stop it are called insulators. We need some insulators! @@ Let's gather a few items so that we can test this in the Lab. Can you chop 6 wood logs from the Wilderness, get glass from Fishlegs, and ask Mulch for his silver?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Find Objects</Text><ID>927463</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2183 + 2645 + 0 + + + 2 + 2183 + 2184 + 0 + + + 2 + 2183 + 2185 + 0 + + + + 1 + 0 + 0 + + 2184 + Skrill01T07 + 12 +

2183

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2184 + 2646 + 0 + + + 1 + 2184 + 2647 + 0 + + + + 1 + 203570 + 0 + + 2646 + Skrill01T07 + <Data><End><Type>Popup</Type><ID>929792</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>I'd love to help you but there's a small problem. Bucket was trying out one of his silly theories. He threw the silver into the lake at the school because he thought fish would like the way light reflects off it. He's such a goofy Viking! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Mulch for his silver</Text><ID>929790</ID></Title><Desc><Text>Ask Mulch for his silver.</Text><ID>929791</ID></Desc></Data> + 0 + false + + + 2647 + Skrill01T07B + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQSkrill01T07.unity3d/PfGrpQSkrill01T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929795</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You can use the silver in your experiment if you can find it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929796</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>You found it, {{greeting}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWRockSilver</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find Mulch's silver</Text><ID>929793</ID></Title><Desc><Text>Find Mulch's silver.</Text><ID>929794</ID></Desc></Data> + 0 + false + + false +
+ + 2185 + Skrill01T08 + 12 +

2183

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Get Glass from Fishlegs</Text><ID>927462</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2185 + 2648 + 0 + + + + 1 + 203571 + 0 + + 2648 + Skrill01T08 + <Data><End><Type>Popup</Type><ID>929799</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh ho! Heather is on the scent of another scientific discovery, eh? I'd love to pitch in and help! Here, have some glass for your experiment. Meatlug just made it this morning!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs about glass</Text><ID>929797</ID></Title><Desc><Text>Talk to Fishlegs about glass.</Text><ID>929798</ID></Desc></Data> + 0 + false + + false +
+ + 2645 + Skrill01T06 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfChoppableTree</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect 6 wood logs from the Wilderness</Text><ID>929800</ID></Title><Desc><Text>Go to the Wilderness and chop 6 wood logs.</Text><ID>929801</ID></Desc></Data> + 0 + false + + false + + + 2186 + Skrill01T13 + 12 +

2182

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Rubber from Johann</Text><ID>927465</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2186 + 2653 + 0 + + + + 1 + 203572 + 0 + + 2653 + Skrill01T13 + <Data><Offer><Type>Popup</Type><ID>929804</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>There! We worked Hookfang up into a lather and got him covered in his gel again. This should be enough to trade for your rubber. Keep the jar of gel away from fire and give it to Johann!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929805</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Wonderful! This fantastic gooey salve will fetch a pretty price in a town that does not have a friendly relationship with dragons. You have never let me down, my friend. Please, take my stash of rubber! You've earned it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>ItemID</Key><Value>12400</Value></Pair><Pair><Key>ItemDescription</Key><Value>Monstrous Nightmare Gel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Johann the Monstrous Nightmare gel</Text><ID>929802</ID></Title><Desc><Text>Give Johann the Monstrous Nightmare gel.</Text><ID>929803</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12373 + + 1 + 2556 + 203572 + true + 1 + 1 + + 0 + +
+ false +
+ + 2187 + Skrill01T12 + 12 +

2182

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Ride Hookfang</Text><ID>927466</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2187 + 2654 + 0 + + + + 1 + 203581 + 0 + + 2654 + Skrill01T12 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQSkrill01T12.unity3d/PfGrpQSkrill01T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929808</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>My dragon needs to get a good sweat going before he'll make more Monstrous Nightmare gel. You'll need to put him through his paces. @@ Have you ever done the canyon run at the Lookout? A lot of students do time trials through the canyon because you can do a lot of good, twisty aerials inside. Why don't you fly through the area? Make sure to grab all the flares along the way to do a proper canyon run!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929809</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wow, he really likes you. He usually drops me twice during the Lookout canyon run. What are you doing differently?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CanyonEnd</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the flares and fly through the canyon</Text><ID>929806</ID></Title><Desc><Text>Follow the flares and fly through the canyon.</Text><ID>929807</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12400 + + 1 + 2724 + 203581 + true + 1 + 1 + + 0 + +
+ false +
+ + 2188 + Skrill01T15 + 12 +

2182

+ <Data><Offer><Type>Popup</Type><ID>927468</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We can test the [c][3eebff]ohms[/c][ffffff] of the items we gathered by using a tool called an [c][3eebff]ohmmeter[/c][ffffff]. Let's go into the lab.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherLab1T3E1Offer</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Lab</Text><ID>10685</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2188 + 2655 + 0 + + + 1 + 2188 + 2656 + 0 + + + 1 + 2188 + 2657 + 0 + + + 1 + 2188 + 2658 + 0 + + + + 1 + 0 + 0 + + 2655 + Skrill01T15a + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestWood</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go into the Lab</Text><ID>922980</ID></Title><Desc><Text>Go into the Lab to test conductivity of wood.</Text><ID>929811</ID></Desc></Data> + 0 + false + + + 2656 + Skrill01T15b + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestSilver</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Test the conductivity of silver in the Lab</Text><ID>929812</ID></Title><Desc><Text>Test the conductivity of silver in the Lab.</Text><ID>929813</ID></Desc></Data> + 0 + false + + + 2657 + Skrill01T15c + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestRubber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Test the conductivity of rubber in the Lab</Text><ID>929814</ID></Title><Desc><Text>Test the conductivity of rubber in the Lab.</Text><ID>929815</ID></Desc></Data> + 0 + false + + + 2658 + Skrill01T15d + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>LabDOPortal</Value></Pair><Pair><Key>Name</Key><Value>TestGlass</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Test the conductivity of glass in the Lab</Text><ID>929816</ID></Title><Desc><Text>Test the conductivity of glass in the Lab.</Text><ID>929817</ID></Desc></Data> + 0 + false + + false +
+ + 2640 + Skrill01T01 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQSkrill01T01.unity3d/PfGrpQSkrill01T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>929820</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>{{Name}}! You're just the Viking I was hoping to see. @@ I'm starting to settle in to Snotlout's Sentry Station. You remember my island, right? It's where I settled in to spot dangerous ships as they sail to Berk. You helped me set up the telescope there and… well, we looked at some really beautiful stars. It was kinda amazing. @@ Anyway! I'm starting to really make the place my own. I want some awesome decorations to liven up the place. I remembered this awesome statue of Thor I made several years ago and I'm trying to find it! @@ Can you help me look for the Thor statue? We left it at Mildew's house, but I think the cranky old man dumped it off in the ocean somewhere. We'll have to explore the sea to try to find it. Good luck!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Thor</Value></Pair><Pair><Key>Range</Key><Value>13</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the statue of Thor in the ocean</Text><ID>929818</ID></Title><Desc><Text>Explore the Sea and look for the statue of Thor in the ocean.</Text><ID>929819</ID></Desc></Data> + 0 + false + + + 2641 + Skrill01T02 + <Data><Offer><Type>Popup</Type><ID>929823</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should go back to Snotlout and tell him where to find the Thor statue.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929824</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wow, you're a fast worker. It would have taken me nearly as long to find it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Snotlout where to find the statue</Text><ID>929821</ID></Title><Desc><Text>Tell Snotlout where to find the statue.</Text><ID>929822</ID></Desc></Data> + 0 + false + + + 2642 + Skrill01T03 + <Data><Offer><Type>Popup</Type><ID>929827</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'll round up the dragons to move my statue to the Sentry Station. Will you meet me at my island? It's going to be a beautiful sight!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929828</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Snotlout, what are you doing? Have you forgotten what happened the last time we had this statue in Berk? It was... not good. In fact, I would categorize the event as "catastrophic."</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Snotlout's Sentry Station</Text><ID>929825</ID></Title><Desc><Text>Go to Snotlout's Sentry Station.</Text><ID>929826</ID></Desc></Data> + 0 + false + + + 2643 + Skrill01T04 + <Data><Offer><Type>Popup</Type><ID>929831</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I thought we agreed that it was all Toothless's fault and not mine! I know that Thor was mad at us before, but he can't still be mad at the thing. Besides, I put a lot of hard work into this beautiful statue. It would be a shame to have it go to waste. @@ {{Name}} knows what I'm talking about. Come closer to the statue, {{Name}}! There's nothing to fear! +</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Movie</Type><Asset>RS_MOVIES/Skrill01.ogg</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>929832</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Whoa! That was close. That poor sheep got the shock of his life. Not only that, you almost broke the telescope [c][3eebff]again[/c][ffffff], Snotlout!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQSkrill01T04.unity3d/PfGrpQSkrill01T04</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Fishlegs</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Stand next to Fishlegs</Text><ID>929829</ID></Title><Desc><Text>Land next to Fishlegs.</Text><ID>929830</ID></Desc></Data> + 0 + false + + + 2644 + Skrill01T05 + <Data><Offer><Type>Popup</Type><ID>929835</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Umm. Okay, maybe Thor holds grudges. I don't know if I can fix this on my own... +Help! @@ Can you figure out a solution with Heather's help? You two seem to somehow figure out the right answer in the Lab. Maybe you can do something here! Come on, you don't want the telescope to get damaged, do you?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929836</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow, it sounds like Snotlout is in a shocking situation! +His problems come from [c][3eebff]electricity[/c][ffffff], a basic part of nature. It’s one of the forms of energy like heat, light, sound and motion. @@ Have you ever shuffled your feet on a Yak hair rug and then touched something metal and been shocked? That is static electricity. Lightning is like that, but on a much larger scale. @@ A lightning bolt is a powerful blast or current of electricity that comes from thunderclouds toward the ground! This electrical energy won't stay in one place. It will always try to flow from object to object in an [c][3eebff]electric current[/c][ffffff]. @@ When the lightning hits the metal Thor statue, the metal [c][3eebff]conducts[/c][ffffff] the lightning—or in other words, the metal lets the energy surge through it to the next object! @@ That's how the lightning moved from the statue to the poor, unfortunate sheep and shocked him. It's lucky the sheep was there, or the telescope could've been fried to pieces!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd02</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather about the problem</Text><ID>929833</ID></Title><Desc><Text>Talk to Heather at the school.</Text><ID>923147</ID></Desc></Data> + 0 + false + + + 2649 + Skrill01T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We're close, but I think we might be missing something. I was talking to Johann earlier and he told me about some strange material he acquired in a far off land. He told me that it might have some interesting qualities that should be in our test. @@ I think it's worth investigating it. Can you talk to him and see if you can get a piece of the material for our experiment?</Text><ID>929839</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer03</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Ah, another customer! I'm glad Heather told you about my latest haul. I'm quite excited by it, you see. I braved the dangerous western seas at great peril to myself to find wondrous new items. @@ It was not easy, but I convinced the locals to part with one of their greatest natural treasures: [c][3eebff]rubber[/c][ffffff]!</Text><ID>929840</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Johann about his foreign material</Text><ID>929837</ID></Title><Desc><Text>Talk to Johann about his foreign material.</Text><ID>936665</ID></Desc></Data> + 0 + false + + + 2650 + Skrill01T10 + <Data><Offer><Type>Popup</Type><ID>929843</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>I would happily part with my newfound treasure, but I need something valuable in return. After all, it came to me at quite a hefty price! I need to recoup the expenses of my trying trip across the ocean. @@ My supply of Monstrous Nightmare gel is running perilously low. I would love to trade you my rubber if you can get me some of Snotlout's wonderful concoction!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929844</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Monstrous Nightmare gel? You've come to the right source! I have the best Monstrous Nightmare in the archipelago.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout at the Lookout</Text><ID>929841</ID></Title><Desc><Text>Talk to Snotlout about Monstrous Nightmare gel.</Text><ID>929842</ID></Desc></Data> + 0 + false + + + 2651 + Skrill01T11 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>PfDWNightmare</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929847</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Normally I'd have to charge a hefty fee for Hookfang's gel, but I'll waive it this time since you're helping me out. {{Input}} on my dragon and mount him.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos05</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CaveEntrance</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightmare</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hookfang and mount him</Text><ID>929845</ID></Title><Desc><Text>{{Input}} on Hookfang to mount him.</Text><ID>929846</ID></Desc></Data> + 0 + false + + + 2652 + Skrill01T14 + <Data><Offer><Type>Popup</Type><ID>929850</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The interesting thing is that each material affects the flow of electricity at different levels. Some items are better [c][3eebff]insulators[/c][ffffff] than others, and some items are better [c][3eebff]conductors[/c][ffffff]! This is called [c][3eebff]electrical resistance[/c][ffffff]; the higher the resistance, the more the item stops electricity. The resistance is measured in [c][3eebff]ohms[/c][ffffff]. @@ Talk to me to make a hypothesis on what will have the greatest [c][3eebff]ohms[/c][ffffff].</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer05</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>929851</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's an interesting hypothesis! I can't wait to test it with you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestEnd06</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Type</Key><Value>Hypothesis</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiHypothesisSkrill01.unity3d/PfUiHypothesisSkrill01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Make a Hypothesis</Text><ID>929848</ID></Title><Desc><Text>Talk to Heather to make a hypothesis.</Text><ID>929849</ID></Desc></Data> + 0 + false + + + 2659 + Skrill01T16 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HatcheryINTDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>929854</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Interesting! Rubber is an excellent insulator because electric current can't flow freely through it! We also found out that metals seem to be great conductors. @@ Please give Snotlout the rubber! You'll find him at Snotlout's Sentry Station.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer07</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQSkrill01T16.unity3d/PfGrpQSkrill01T16</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>12373</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rubber</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Go to Snotlout's Sentry Station and give the rubber to Snotlout</Text><ID>929852</ID></Title><Desc><Text>Go to Snotlout's Sentry Station and give the rubber to Snotlout.</Text><ID>929853</ID></Desc></Data> + 0 + false + + + 2970 + Skrill01T17 + <Data><End><Type>Popup</Type><ID>929857</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Whew, just in the nick of time! This weird little thing protected Snotlout's Sentry Station from the wrath of Thor. Thanks {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutYeah</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 203569 + true + 300 + 300 + + 0 + +
+ + 65 +

2

+ 0 + + 1 + 633 + 203569 + true + 65 + 65 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 203569 + true + 250 + 250 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 203569 + true + 200 + 200 + + 0 + +
+ false +
+ + 2229 + RTTE16_Villains06 + 43 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Heart of Darkness</Text><ID>927535</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWRTTEExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2228 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2229 + 2230 + 0 + + + 2 + 2229 + 2285 + 0 + + + 1 + 2229 + 2887 + 0 + + + 1 + 2229 + 2888 + 0 + + + 1 + 2229 + 2889 + 0 + + + 1 + 2229 + 2979 + 0 + + + 1 + 2229 + 2980 + 0 + + + 1 + 2229 + 2890 + 0 + + + 1 + 2229 + 2891 + 0 + + + 1 + 2229 + 2892 + 0 + + + 1 + 2229 + 2893 + 0 + + + 1 + 2229 + 2894 + 0 + + + 2 + 2229 + 2231 + 0 + + + 1 + 2229 + 2982 + 0 + + + + 1 + 203604 + 0 + + 2230 + RTTE16_Villains06T01 + 43 +

2229

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Harald</Text><ID>927532</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2230 + 2885 + 0 + + + + 1 + 203605 + 0 + + 2885 + RTTE16_Villains06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>The Dragon Hunters and I have had some business in the past, so they'll let me into their camp unhindered. If you wear a disguise, I can take you in with me. I'll distract them and you can free the dragons If we hurry, they won't be harmed. @@ Luckily for us, I happen to have an extra set of Dragon Hunter armor with my supplies. It's yours!</Text><ID>930568</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title><Desc><Text>Talk to Harald</Text><ID>927532</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12654 + + 1 + 2845 + 203605 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 12655 + + 1 + 2846 + 203605 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 12656 + + 1 + 2847 + 203605 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 12657 + + 1 + 2848 + 203605 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 12658 + + 1 + 2849 + 203605 + true + 1 + 1 + + 0 + +
+ false + + + 2231 + RTTE16_Villains06T11 + 43 +

2229

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Get out of here!</Text><ID>927533</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2231 + 2895 + 0 + + + + 1 + 203606 + 0 + + 2895 + RTTE16_Villains06T11 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You made it out! I was worried for you. + +It looks like this little guy is pretty fond of you!</Text><ID>930571</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get out of here! Fly through the escape route</Text><ID>930569</ID></Title><Desc><Text>Fly out of the camp with the Armorwing</Text><ID>941847</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12442 + + 1 + 2863 + 203606 + true + 1 + 1 + + 0 + +
+ false +
+ + 2285 + RTTE16_Villains06T02 + 43 +

2229

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2285 + 2886 + 0 + + + + 1 + 204057 + 0 + + 2886 + RTTE16_Villains06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>This job isn't for the faint of heart. It will be just you and me, in the heart of darkness. The Dragon Hunters know the faces of all the dragon riders, so they can't come along. @@ We can't take your dragon either, unless you want precious {{dragon name}} to be taken right from your hands.</Text><ID>932849</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Discuss the dangers of this plan with Hiccup.</Text><ID>932953</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I don't like it but he's right. They've seen us in action too many times, but you might be able to sneak in without detection. @@ I don't want to choose for you, {{Name}}, since it's so dangerous. If you decide to do it, we'll all fly cover for you just outside of the Dragon Hunter's range. We'll be as close as we possibly can to help out if things go wrong.</Text><ID>930576</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Ask for Hiccup's opinion on Harald's plan</Text><ID>941848</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12652 + + 1 + 2861 + 204057 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 12653 + + 1 + 2862 + 204057 + true + 1 + 1 + + 0 + +
+ false +
+ + 2887 + RTTE16_Villains06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>'Things go wrong'? You don't trust me? I'm wounded, Hiccup. @@ I understand if you can't trust me enough to follow me into enemy territory. But, if you can somehow gather the courage to do what must be done, put the Dragon Hunter clothes on and step on my ship. We'll go when you're ready.</Text><ID>930579</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Don't make any quick movements, don't rouse suspicion, and for the love of Thor, please don't--</Text><ID>932850</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>We've arrived.</Text><ID>932954</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Step onto Harald's boat to go to the Dragon Hunter camp</Text><ID>930577</ID></Title><Desc><Text>Step on Harald's boat to go to the Dragon Hunter camp</Text><ID>941849</ID></Desc></Data> + 0 + false + + + 2888 + RTTE16_Villains06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Is that Forkbeard I see? You must be the bravest Viking--or dumbest--to show your face here again.</Text><ID>932851</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should try to go deeper into the cave while Harald distracts the Dragon Hunters.</Text><ID>932955</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>You've sold us some dangerous dragons, Forkbeard. We can't rouse the Catastrophic Quaken at all or it will tear this place apart. We paid you too much!</Text><ID>930586</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Dock01</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Sneak past the guards into the camp</Text><ID>930582</ID></Title><Desc><Text>Sneak past the guards into the camp</Text><ID>930582</ID></Desc></Data> + 0 + false + + + 2889 + RTTE16_Villains06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That lying sneak sold the dragons to the Dragon Hunters! Keep going, act casual.</Text><ID>932852</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>But you lot are the mighty Dragon Hunters! There's no way a dragon could best you if you put your mind to it.</Text><ID>932956</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>Hey you! Wait a minute... aren't you a little short to be a Dragon Hunter? @@ Well, go check if the Catastrophic Quaken is still sleeping and give it more Dragon Root if it isn't. Hurry up!</Text><ID>930591</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Dock02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the camp</Text><ID>930587</ID></Title><Desc><Text>Enter the Dragon Hunter camp. Be casual</Text><ID>941850</ID></Desc></Data> + 0 + false + + + 2890 + RTTE16_Villains06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's no time to waste. Keep looking for the Catastrophic Quaken.</Text><ID>930594</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Quaken</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Catastrophic Quaken</Text><ID>930592</ID></Title><Desc><Text>Find the Catastrophic Quaken by following the right wall of the cave</Text><ID>941851</ID></Desc></Data> + 0 + false + + + 2891 + RTTE16_Villains06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The cage seems to be locked from the outside, but it's a simple latch. You can {{input}} it to open it.</Text><ID>930597</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Quaken</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonCageC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the cage door</Text><ID>930595</ID></Title><Desc><Text>{{Input}} on the cage door to open it</Text><ID>941852</ID></Desc></Data> + 0 + false + + + 2892 + RTTE16_Villains06T08 + <Data><Setup><Scene>DragonHunterBaseDO</Scene><Asset>RS_DATA/PfGrpRTTEVillains06T08.unity3d/PfGrpRTTEVillains06T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Dragon Hunters are keeping the Catastrophic Quaken subdued with Dragon Root arrows. You should take them out of the Quaken.</Text><ID>930600</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains06T08CS.unity3d/PfGrpRTTEVillains06T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfDEArrow</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pull the arrows out of the Catastrophic Quaken</Text><ID>930598</ID></Title><Desc><Text>Pull the arrows out of the Catastrophic Quaken</Text><ID>930598</ID></Desc></Data> + 0 + false + + + 2893 + RTTE16_Villains06T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Whoa! Now that the Catastrophic Quaken is free, you need to find the Armorwing and free him. </Text><ID>930603</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ArmorWing</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DoorCageOpenScripts</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find the Armorwing and free him</Text><ID>930601</ID></Title><Desc><Text>Find the Armorwing and free him</Text><ID>930601</ID></Desc></Data> + 0 + false + + + 2894 + RTTE16_Villains06T10 + <Data><Setup><Scene>DragonHunterBaseDO</Scene><Asset>PfDWArmorWing</Asset><Location>PfMarker_ArmorWing</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Dragon Hunters are coming! You need to get out of here. {{Input}} on the Armorwing to get a quick ride out!</Text><ID>930606</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRTTEVillains06T10CS.unity3d/PfGrpRTTEVillains06T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ArmorWing</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWArmorWing</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Grab onto the Armorwing</Text><ID>930604</ID></Title><Desc><Text>Grab onto the Armorwing</Text><ID>930604</ID></Desc></Data> + 0 + false + + + 2979 + RTTE16_Villains06T05.5 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That was close! Keep going, but stay out of sight; this is getting dangerous.</Text><ID>930609</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LegendaryEgg</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore and stay out of sight</Text><ID>930607</ID></Title><Desc><Text>Explore the Dragon Hunter camp, and stay out of sight</Text><ID>941853</ID></Desc></Data> + 0 + false + + + 2980 + RTTE16_Villains06T05.6 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What is that strange object inside that cage? Get a closer look.</Text><ID>930612</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That object was at Hobblegrunt Island... what is it doing here? What is it? @@ Well, the cage won't open; it isn't going anywhere.</Text><ID>930613</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonHunterBaseDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LegendaryEgg</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check out the strange blue object</Text><ID>930610</ID></Title><Desc><Text>Check out the strange blue object</Text><ID>941854</ID></Desc></Data> + 0 + false + + + 2982 + RTTE16_Villains06T12 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for saving those dragons, {{Name}}. You put yourself at great risk to do it, and I'm incredibly proud of you!</Text><ID>930616</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>930720</ID></Title><Desc><Text>Go to Dragon's Edge</Text><ID>929044</ID></Desc></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 203604 + true + 200 + 200 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 203604 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 203604 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 203604 + true + 50 + 50 + + 0 + +
+ false +
+ + 2318 + Volcano16 + 43 +

+ <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpVolcano16T06.unity3d/PfGrpVolcano16T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>In the Belly of the Beast</Text><ID>927614</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2319 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2318 + 3111 + 0 + + + 1 + 2318 + 3112 + 0 + + + 1 + 2318 + 3113 + 0 + + + 1 + 2318 + 3114 + 0 + + + 1 + 2318 + 3115 + 0 + + + 1 + 2318 + 3146 + 0 + + + 1 + 2318 + 3116 + 0 + + + 1 + 2318 + 3242 + 0 + + + + 1 + 204693 + 0 + + 3111 + Volcano16T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>So! Great big beastie is in the volcano, lots of destroyed ships are on the outside, and poisonous gas is all around the ocean. It's a mess, isn't it? Hiccup, my boy, give me a lift off the island... or do you only help dragons now? @@ {{Name}}, you need to help me talk some sense into your leader. Help out poor old Harald.</Text><ID>931346</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We can't leave now... there's too much for us to figure out. We need to find out if that dragon is friend or foe. We also really need to figure out if there's something wrong with the volcano that is causing the hydrothermal vents to go into overdrive. We have to go back inside. @@ And let's not forget, we need to find out exactly why Harald wants to keep us from going into the volcano!</Text><ID>931347</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup about the situation</Text><ID>942117</ID></Desc></Data> + 0 + false + + + 3112 + Volcano16T02 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_Volcano16Harald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Alright, alright! I'll tell you the whole truth about the situation so that you'll take me off the island. Oof. This feels really foreign! Please give me a moment. @@ Okay! The truth is, yes, I pinched the Dragon Hunter chest when you released the Catastrophic Quaken in their camp and caused a ruckus. And when I started this... Red Death bone venture, I decided to put the chest somewhere safe until I got back. I didn't expect this monster to be inside the volcano and I dropped it! @@ I can help, my friends. If you're [c][3eebff]dead[/c][ffffff] set on going back in, I know a way that might get you in without the dragon noticing you. [c][3eebff]Then[/c][ffffff] you can take me off the island. {{Input}} on me and I'll show you the secret entrance.</Text><ID>931350</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Here we go! Cleverly disguised, wouldn't you say? I did it myself.</Text><ID>931351</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HaraldSecretEntrance</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Spline</Key><Value>Harald_SecretEntrance</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Harald to his secret entrance</Text><ID>931348</ID></Title><Desc><Text>{{Input}} on Harald to follow him to the secret entrance to the volcano</Text><ID>942118</ID></Desc><Reminder><Text>Stay near Harald!</Text><ID>936438</ID></Reminder><Failure><Text>Oh no! Harald left you behind!</Text><ID>936439</ID></Failure></Data> + 0 + false + + + 3113 + Volcano16T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>After you, {{Name}}.</Text><ID>931354</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I've done my part now lads and lasses. I'll wait here until you've finished.</Text><ID>931355</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HaraldStart</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the volcano</Text><ID>931444</ID></Title><Desc><Text>Go into the volcano using Harald's secret entrance</Text><ID>942119</ID></Desc></Data> + 0 + false + + + 3114 + Volcano16T04 + <Data><Setup><Scene>HubDragonIslandINTDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_HaraldStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All the same, Harald, I think we'll feel more comfortable if you were walking with us. {{Name}}, will you {{input}} on our guest here and lead us all down this tunnel?</Text><ID>931358</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good... it's resting. Maybe if we're quiet, we can take a good look without disturbing it. Green scales, same ugly face as the Red Death... should we call it the Green Death?</Text><ID>931359</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RampBottom</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Harald and lead him through the tunnel</Text><ID>931356</ID></Title><Desc><Text>{{Input}} on Harald and lead him through the tunnel</Text><ID>931356</ID></Desc><Reminder><Text>Stay close to Harald!</Text><ID>936440</ID></Reminder><Failure><Text>Oh no! You left Harald behind!</Text><ID>936411</ID></Failure></Data> + 0 + false + + + 3115 + Volcano16T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That dragon's nest is incredibly made, but also very troubling... @@ Can you take a closer look at it?</Text><ID>931362</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano16T05CS.unity3d/PfGrpVolcano16T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RampEdge</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look over the edge of the tunnel</Text><ID>931360</ID></Title><Desc><Text>Look over the edge of the tunnel at the nest</Text><ID>942120</ID></Desc></Data> + 0 + false + + + 3116 + Volcano16T07 + <Data><Offer><Type>Popup</Type><ID>931365</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>As soon as she looks away, be ready to move!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupEncourage04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HaraldStart</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Avoid the dragon's gaze and escape</Text><ID>931366</ID></Title><Desc><Text>Avoid the dragon's gaze and run out of the tunnel!</Text><ID>931367</ID></Desc></Data> + 0 + false + + + 3146 + Volcano16T06 + <Data><Offer><Type>Popup</Type><ID>931368</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We need to get away from the dragon's nest, [c][3eebff]right now[/c][ffffff]. Stay out of its line of sight or it might roast us with its breath attack!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>931369</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>[c][3eebff]Look out![/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano16T06CS.unity3d/PfGrpVolcano16T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Volcano16EscapeStart</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Avoid the dragon's gaze and escape</Text><ID>931366</ID></Title><Desc><Text>Avoid the dragon's gaze and run out of the tunnel!</Text><ID>931367</ID></Desc></Data> + 0 + false + + + 3242 + Volcano16T08 + <Data><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWNightFury</Asset><Location>PfMarker_SecretToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_SecretHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_SecretArch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_SecretAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_SecretHarald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_SecretValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonIslandDO</Scene><Asset>PfDWStormcutter</Asset><Location>PfMarker_SecretCloudjumper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Never in my life did I think I would ever be [c][3eebff]inside a volcano[/c][ffffff], running away from a dragon as enormous as a mountain! Goodness. @@ It's very good that we decided to go back inside, {{Name}}, because I actually spotted what's causing all this deadly fog! We must figure out a solution right away.</Text><ID>931372</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HaraldExit</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Escape the volcano</Text><ID>931370</ID></Title><Desc><Text>Avoid the dragon's gaze and run out of the tunnel! You're almost there!</Text><ID>934523</ID></Desc></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 204693 + true + 150 + 150 + + 0 + + + + 450 +

1

+ 0 + + 1 + 468 + 204693 + true + 450 + 450 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 204693 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204693 + true + 50 + 50 + + 0 + +
+ false +
+ + 2353 + Volcano11 + 4 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_Bucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>In Search of True North</Text><ID>927606</ID></Title><Desc><Text>In Search of True North</Text><ID>927606</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWDragonIslandExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2363 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2353 + 3279 + 0 + + + 2 + 2353 + 2365 + 0 + + + 1 + 2353 + 3281 + 0 + + + 1 + 2353 + 3282 + 0 + + + 2 + 2353 + 2366 + 0 + + + 1 + 2353 + 3284 + 0 + + + 2 + 2353 + 2367 + 0 + + + 1 + 2353 + 3286 + 0 + + + 1 + 2353 + 3287 + 0 + + + 1 + 2353 + 3288 + 0 + + + 1 + 2353 + 3289 + 0 + + + 1 + 2353 + 3309 + 0 + + + 1 + 2353 + 3310 + 0 + + + 2 + 2353 + 2368 + 0 + + + 1 + 2353 + 3312 + 0 + + + + 1 + 204724 + 0 + + 2365 + Volcano11T02 + 4 +

2353

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on Meatlug</Text><ID>927602</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2365 + 3280 + 0 + + + + 1 + 204739 + 0 + + 3280 + Volcano11T02 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpVolcano11T01.unity3d/PfGrpVolcano11T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>If you need glass then you came to the right place. As luck would have it, I just finished feeding Meatlug! The sandstone is her second favorite treat. {{Input}} on her and she'll make you some glass!</Text><ID>931148</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Good girl! Who's the best Gronckle in all of Berk? You are!</Text><ID>931149</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd03</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGronckle_Meatlug</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGronckle_Meatlug</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Meatlug</Text><ID>927602</ID></Title><Desc><Text>{{Input}} on Meatlug to make some glass</Text><ID>942083</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13010 + + 1 + 5318 + 204739 + true + 1 + 1 + + 0 + +
+ false + + + 2366 + Volcano11T05 + 4 +

2353

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWHiccup</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Give the compass parts to Hiccup</Text><ID>927603</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2366 + 3283 + 0 + + + + 1 + 204740 + 0 + + 3283 + Volcano11T05 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano11T05.unity3d/PfGrpVolcano11T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should meet up with Hiccup in the Wilderness with the items he wanted.</Text><ID>931152</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is perfect!</Text><ID>931153</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd02</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>12976</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lodestone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>13010</Value></Pair><Pair><Key>ItemDescription</Key><Value>Glass</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Hiccup the parts for the compass in the Wilderness</Text><ID>931150</ID></Title><Desc><Text>Give the parts for the compass to Hiccup in the Wilderness</Text><ID>942084</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13023 + + 1 + 5319 + 204740 + true + 1 + 1 + + 0 + +
+ false +
+ + 2367 + Volcano11T07 + 4 +

2353

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>{{Input}} on the bowl</Text><ID>927604</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2367 + 3285 + 0 + + + + 1 + 204741 + 0 + + 3285 + Volcano11T07 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano11T05.unity3d/PfGrpVolcano11T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I can show you how the compass works! {{Input}} on the bowl of water on the lake.</Text><ID>931156</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer06</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You see? The needle is pointing at true north at all times, no matter which way we're facing. We can use that to know which direction we're traveling. If the needle is pointing right, we know that we're traveling west. If the needle is pointing left, we know that we're traveling east. We can check the map against any recognizable landmarks in our path!</Text><ID>931157</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpVolcano11T07CS.unity3d/PfGrpVolcano11T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd08</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfBowlWithCompass</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBowlWithCompass</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the bowl of water</Text><ID>931154</ID></Title><Desc><Text>{{Input}} on the bowl of water in the Wilderness to see how a compass works</Text><ID>942085</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12978 + + 1 + 5320 + 204741 + true + 1 + 1 + + 0 + +
+ false +
+ + 2368 + Volcano11T14 + 4 +

2353

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2368 + 3311 + 0 + + + + 1 + 204742 + 0 + + 3311 + Volcano11T14 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_SecretSpot</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T09.unity3d/PfGrpVolcano11T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Don't tell Snotlout you're nearly done. I want him to float out there until after dinnertime, at the very earliest. @@ The last step is to find Tuffnut's secret spot. All I can tell you is that it is west of the Snotlout Bucket.</Text><ID>931160</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You made it! For this and all your hard work, I commend you with... nothing. I mean, Hiccup always tells us hard work is its own reward, so that's all I have for you too.</Text><ID>931161</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestEnd03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SecretSpot</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly west to Tuffnut's secret spot</Text><ID>931158</ID></Title><Desc><Text>Fly west to Tuffnut's secret spot to get your reward</Text><ID>942086</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13015 + + 1 + 5321 + 204742 + true + 1 + 1 + + 0 + +
+ false +
+ + 3279 + Volcano11T01 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpVolcano11T01.unity3d/PfGrpVolcano11T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I need some time to merge these maps together, so let's get you started on the other half of the equation: the compass! It's a tool that we can use to know which direction we're going at all times. @@ You see, the Earth is like a giant magnet that generates a magnetic field at all times from the top of the earth, the magnetic North Pole. All other magnets point toward that field, including a magnet inside any compass! @@ I can show you how that works, but first we'll need to make it. We'll need a case for the compass and a magnetic lodestone. Will you talk to Fishlegs and Meatlug about the glass? I think I saw them go into the Great Hall.</Text><ID>931164</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer01</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hi {{Name}}! I'm so excited. I plan to spend the day teaching dragons how to march in parade formation. Don't you think that would look perfect for our celebrations on Berk?</Text><ID>931165</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Great Hall</Text><ID>923331</ID></Title><Desc><Text>Go to the Great Hall. Fishlegs and Meatlug should be there</Text><ID>942087</ID></Desc></Data> + 0 + false + + + 3281 + Volcano11T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmith</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T04.unity3d/PfGrpVolcano11T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You think you spotted Gobber by his smithy. You should talk to him about the lodestone.</Text><ID>931168</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>If it's not one thing it's the other. Where are you Grump? I swear, you lazy sack of bones, I'm going to send you away!</Text><ID>931169</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberAttract01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about the lodestone</Text><ID>931166</ID></Title><Desc><Text>Talk to Gobber about the lodestone for the compass. He's near the smithy</Text><ID>942088</ID></Desc></Data> + 0 + false + + + 3282 + Volcano11T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmith</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T04.unity3d/PfGrpVolcano11T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I need my dragon to keep my furnace going, and he's decided to go off to nap somewhere! That adorable little lump. @@ I have Hiccup's lodestone ready to go, but I just haven't had the time to whittle it down to size. Can you do it? Use your axe to chop it down to the size you need it.</Text><ID>931172</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWGobberDO.unity3d/DlgGobberQuestOffer01</Asset><NPC>PfDWGobber</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfLodestone</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWLodestone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Carve the lodestone down with your axe</Text><ID>931170</ID></Title><Desc><Text>{{Input}} on the chop button to carve the large lodestone into a needle</Text><ID>942089</ID></Desc></Data> + 0 + false + + + 3284 + Volcano11T06 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpVolcano11T05.unity3d/PfGrpVolcano11T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm pretty proud of what we've accomplished here. This map has the sea stacks, the shipwrecks, the currents and the fishing zones that surround Dragon Island. We have all the information we need to get through that thick fog! @@ Open your Backpack and {{input}} on the map of Dragon Island to take a look at it!</Text><ID>931175</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We can use the landmarks from the map to orient ourselves and know exactly where we are.</Text><ID>931176</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd07</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>OpenItem</Value></Pair><Pair><Key>ItemName</Key><Value>13023</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Map to Dragon Island in your Backpack</Text><ID>931173</ID></Title><Desc><Text>{{Input}} on your Backpack and {{input}} on the Map to Dragon Island to open it</Text><ID>942090</ID></Desc></Data> + 0 + false + + + 3286 + Volcano11T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You need to learn how to use the compass in a safe place before we head to the open sea. We wouldn't want you to get lost in the fog, right? I know I'm going to regret this, but I let the twins prepare a training course for you. Talk to Ruffnut at Berk to get started!</Text><ID>931179</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestOffer04</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>If you want scavenger hunts and tricks, you've come to the right place. Praise Loki! @@ Let the official Hidden Nut Hunt Extravaganza begin!</Text><ID>931180</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut in Berk</Text><ID>942091</ID></Desc></Data> + 0 + false + + + 3287 + Volcano11T09 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T09.unity3d/PfGrpVolcano11T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>If you follow all our instructions, you can reach the hidden prize. You'll definitely like it! {{Input}} on your compass to bring it up, because you won't have a Quest Arrow to help you out at this time. @@ The first step is to go [c][3eebff]southwest[/c][ffffff] from here to meet a simple friend!</Text><ID>931183</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I stood here and waited, just like Ruffnut and Tuffnut asked me to do! Am I doing it right?</Text><ID>931184</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_VikingAHouse</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Travel southwest from Ruffnut</Text><ID>931181</ID></Title><Desc><Text>Travel southwest from Ruffnut for the first course of the Hidden Nut Hunt Extravaganza</Text><ID>942092</ID></Desc></Data> + 0 + false + + + 3288 + Volcano11T10 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T09.unity3d/PfGrpVolcano11T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Good, good... but that was just the beginning! You are caught in my diabolical spider web of scavenger hunts! You won't escape the madness until I have you begging for mercy or I get bored. Both are equally likely, I think. @@ Next step: fly northwest from Bucket to find a... "bashful" sea stack. Go!</Text><ID>931187</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestOffer02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Get it? 'Bashful sea stack'? It's a 'sheepish' sea stack! Hehe. Puns.</Text><ID>931188</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutQuestEnd02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SheepSeaStack</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly northwest from Bucket</Text><ID>931185</ID></Title><Desc><Text>Fly northwest from Bucket to find a "bashful" seastack</Text><ID>942093</ID></Desc></Data> + 0 + false + + + 3289 + Volcano11T11 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_ArmorWing</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T09.unity3d/PfGrpVolcano11T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Now fly, my minion, fly directly east to find a dragon lover!</Text><ID>931191</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oops! {{Name}}, I didn't expect you to come by until a bit later. I'm sorry I have this Armorwing with me right now! Did your compass get jumbled up and point in a weird direction? It's because Armorwings are [c][3eebff]magnetic[/c][ffffff]! @@ They generate a small magnetic field around them, and because it's closer than the one emitted by the planet, the compass points toward it instead! You need to move away from interfering spots for your compass to point to true north.</Text><ID>931192</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ArmorWing</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly east from the sea stack</Text><ID>931189</ID></Title><Desc><Text>Fly east from the sea stack to find a dragon lover</Text><ID>942094</ID></Desc></Data> + 0 + false + + + 3309 + Volcano11T12 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T09.unity3d/PfGrpVolcano11T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>No, that won't do at all! If you can't rely on your compass, how will you finish my scavenger hunt? You'll just have to avoid magnetic spots and go southeast to find a special marker.</Text><ID>931195</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutAttract03</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>We're nearing the end, {{Name}}. Keep up!</Text><ID>931196</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage01</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ScavengerFlags</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go southeast from Fishlegs</Text><ID>931193</ID></Title><Desc><Text>Go southeast from Fishlegs and avoid magnetic spots</Text><ID>942095</ID></Desc></Data> + 0 + false + + + 3310 + Volcano11T13 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpVolcano11T09.unity3d/PfGrpVolcano11T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfUiCompassDO.unity3d/PfUiCompassDO</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Fly south from the flags and look for an ocean surprise!</Text><ID>931199</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWRuffnutDO.unity3d/DlgRuffnutEncourage02</Asset><NPC>PfDWRuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You know, when Ruffnut told me I would have a really crucial role in this scavenger hunt, this isn't what I had in mind...</Text><ID>931200</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ScavengerSnotlout</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly south and look for an ocean surprise</Text><ID>931197</ID></Title><Desc><Text>Fly south and look for a friend in the water</Text><ID>942096</ID></Desc></Data> + 0 + false + + + 3312 + Volcano11T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yeah, I don't like it when Hiccup pulls that one on me, either. Speaking of our leader, Hiccup wants you to talk to his mother when you've mastered your compass. I'd say you've done that and more. Good luck storming Dragon Island!</Text><ID>931203</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWTuffnutDO.unity3d/DlgTuffnutQuestOffer03</Asset><NPC>PfDWTuffnut</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I can see the spark in your eyes and the fire in your spirit that rages in you, just like a dragon. Good. We will need your strength for the trials to come.</Text><ID>931204</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13015</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka about winning the Hidden Nut Hunt Extravaganza!</Text><ID>939790</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 204724 + true + 50 + 50 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 204724 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 204724 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 204724 + true + 50 + 50 + + 0 + +
+ false +
+ + 2403 + New Farming 180 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,6 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2403 + 3413 + 0 + + + + 1 + 204790 + 0 + + 3413 + 4 Squash, 8 Sunflowers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13088</Value></Pair><Pair><Key>ItemDescription</Key><Value>Squash</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Squash, Sunflowers</Text><ID>928888</ID></Title><Desc><Text>Valka could use some trail mix for a long flight with Hiccup.</Text><ID>928889</ID></Desc></Data> + 0 + false + + + 30 +

9

+ 0 + + 1 + 1949 + 204790 + true + 30 + 30 + + 0 + + + + 91 +

2

+ 0 + + 1 + 2446 + 204790 + true + 91 + 91 + + 0 + +
+ false +
+ + 2430 + New Farming 191 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 1,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2430 + 3483 + 0 + + + + 1 + 204825 + 0 + + 3483 + 8 Mushrooms, 5 Tomatoes + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8580</Value></Pair><Pair><Key>ItemDescription</Key><Value>Tomato</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Mushrooms, Tomatoes</Text><ID>928910</ID></Title><Desc><Text>The twins are preparing for some kind of a show. This is going to be interesting.</Text><ID>928911</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 204825 + true + 40 + 40 + + 0 + + + + 281 +

2

+ 0 + + 1 + 2372 + 204825 + true + 281 + 281 + + 0 + +
+ false +
+ + 2476 + Jungle04 + 25 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Into the Labyrinth</Text><ID>927347</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWJungleExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2475 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2476 + 3605 + 0 + + + 1 + 2476 + 3606 + 0 + + + 1 + 2476 + 3705 + 0 + + + 1 + 2476 + 3706 + 0 + + + 1 + 2476 + 3608 + 0 + + + 1 + 2476 + 3609 + 0 + + + 1 + 2476 + 3610 + 0 + + + + 1 + 204862 + 0 + + 3605 + Jungle04T01 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_KrayfinBabyStart01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>RS_DATA/PfGrpJungle04T01.unity3d/PfGrpJungle04T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This is what I live for, my friend! I can't waste time worrying about little things like danger and death when there are ancient civilizations to explore. +We should make sure the Krayfin is happy before I get distracted; I warn you, I will get distracted. {{Input}} on the dragon!</Text><ID>928377</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It seems that we must solve this interesting contraption to progress into the building.</Text><ID>928378</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CogPuzzle01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Spline</Key><Value>FollowLeviathan</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the baby Krayfin and follow him</Text><ID>928375</ID></Title><Desc><Text>{{Input}} on the leviathan and follow him</Text><ID>941757</ID></Desc><Reminder><Text>Stay close to the Krayfin!</Text><ID>936320</ID></Reminder><Failure><Text>Oh no! The baby leviathan left you behind!</Text><ID>936315</ID></Failure></Data> + 0 + false + + + 3606 + Jungle04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Many of the gears have arrows on them that show which direction they turn. Any gears that are connected to them will move in the opposite direction. You must keep that in mind as you {{input}} on the device and finish the trial.</Text><ID>928381</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>The gears are moving the wall! I am sure we can find the exit if we can solve the rest of the devices.</Text><ID>928382</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CogPuzzle01</Value></Pair><Pair><Key>Name</Key><Value>DOCogs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_INT01V01</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the device and solve it</Text><ID>928397</ID></Title><Desc><Text>{{Input}} on the device and solve it</Text><ID>928394</ID></Desc></Data> + 0 + false + + + 3608 + Jungle04T04 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_Room1Exit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Did you hear that? Something must have moved outside! +No, Skulder, eyes on the prize... you need to worry about that later.@@Do you see that? That looks rather fresh. What do you think they could be?</Text><ID>928385</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>They're strange burn marks. Dragon flames tend to hit their target as one mass, but this one feels like it was lashed on. +We may be dealing with something wholly new, a sensation I am starting to get used to on Impossible Island.</Text><ID>928386</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpJungle04T04CS.unity3d/PfGrpJungle04T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Room1Wall</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Examine the wall</Text><ID>928383</ID></Title><Desc><Text>Examine the wall</Text><ID>928383</ID></Desc></Data> + 0 + false + + + 3609 + Jungle04T05 + <Data><Setup><Scene>HubCenoteINT01DO</Scene><Asset>RS_DATA/PfGrpJungle04T05.unity3d/PfGrpJungle04T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubCenoteINT01DO</Scene><Asset>PfDWKrayfinBaby</Asset><Location>PfMarker_Room1Exit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Does the baby leviathan look well? You should {{input}} on the dragon and check up on him.</Text><ID>928389</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKrayfinBaby</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the leviathan</Text><ID>928387</ID></Title><Desc><Text>{{Input}} on the leviathan</Text><ID>928387</ID></Desc></Data> + 0 + false + + + 3610 + Jungle04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah! Our little friend must be looking for something further inside this building. Forward, my friends!</Text><ID>928392</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>A new challenge! From how you conquered the last room, I am confident this will be no problem.</Text><ID>928393</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Room2</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go with the Krayfin to the next room</Text><ID>928390</ID></Title><Desc><Text>Go with the Krayfin to the next room</Text><ID>928390</ID></Desc></Data> + 0 + false + + + 3705 + Jungle04T02B + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>A series of gears connected together is called a 'gear train.' The gear that we are turning is called the 'driver' and the last gear we want to move is called the 'driven' gear. If there are any gears between those two, they are called 'idlers.'@@{{Input}} on the device and solve it!</Text><ID>928396</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CogPuzzle02</Value></Pair><Pair><Key>Name</Key><Value>DOCogs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_INT01V02</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the device and solve it</Text><ID>928397</ID></Title><Desc><Text>{{Input}} on the device and solve it</Text><ID>928394</ID></Desc></Data> + 0 + false + + + 3706 + Jungle04T02C + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Smaller gears take less force to turn, but they also turn faster. So, if we connect small gears to a larger gear, the small gears will generate a lot of energy as they turn! {{Input}} on the device and let's keep this wall moving!</Text><ID>928399</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Movie</Type><Asset>RS_MOVIES/CenoteBridgeReward01.ogg</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteINT01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CogPuzzle03</Value></Pair><Pair><Key>Name</Key><Value>DOCogs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>Level</Key><Value>level_INT01V03</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>{{Input}} on the device and solve it</Text><ID>928397</ID></Title><Desc><Text>{{Input}} on the device and solve it</Text><ID>928394</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 204862 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 204862 + true + 200 + 200 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 204862 + true + 150 + 150 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 204862 + true + 200 + 200 + + 0 + +
+ false +
+ + 2510 + SpringMaze 2017 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title /></Data> + false + 0 + + + 5 + 01-01-2017 12:00:00,09-26-2017 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2510 + 3781 + 0 + + + + 1 + 204984 + 0 + + 3781 + SpringMaze2017T01 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Spring Maze Chest</Text><ID>930729</ID></Title></Data> + 0 + false + + + 1 +

6

+ 13368 + + 1 + 5490 + 204984 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 13369 + + 1 + 5491 + 204984 + true + 1 + 1 + + 0 + +
+ false +
+ + 2533 + Pirate05 + 15 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate05T00.unity3d/PfGrpPirate05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DagurStart</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubAuctionIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfDWGobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWJohann.unity3d/PfDWJohann</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Johann's Secret Mission</Text><ID>927431</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWPirateExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2532 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2533 + 3846 + 0 + + + 1 + 2533 + 3847 + 0 + + + 1 + 2533 + 3848 + 0 + + + 1 + 2533 + 3849 + 0 + + + 1 + 2533 + 3850 + 0 + + + 1 + 2533 + 3851 + 0 + + + 1 + 2533 + 3852 + 0 + + + 1 + 2533 + 3853 + 0 + + + 2 + 2533 + 2535 + 0 + + + 2 + 2533 + 2534 + 0 + + + 1 + 2533 + 3856 + 0 + + + 1 + 2533 + 3857 + 0 + + + 1 + 2533 + 3858 + 0 + + + + 1 + 205007 + 0 + + 2534 + Pirate05T10 + 15 +

2533

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Johann</Text><ID>927429</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2534 + 3855 + 0 + + + + 1 + 205026 + 0 + + 3855 + Pirate05T10 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWDagur</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Okay! We're going to take this boat into safe waters while you get some answers from Johann. He's got some explaining to do.@@Let's go Sleuther, my stalwart companion! Sailing might be slower than your usual pace but I'll show you how to properly rig a ship. Everyone could always learn new skills, and who knows? Maybe you'll save my life with it one day.</Text><ID>929143</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>Oh dear. I have unwittingly placed you in a terrible predicament! I forgot that I had sold a ship with the same figurehead to Harald a few weeks earlier. That shipment must have belonged to his new employer, Stormheart. I feel like the biggest fool. Please... take this small gift.</Text><ID>929144</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Johann at the School</Text><ID>929148</ID></Title><Desc><Text>Talk to Johann at the School</Text><ID>929148</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13348 + + 1 + 5525 + 205026 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 13349 + + 1 + 5524 + 205026 + true + 1 + 1 + + 0 + +
+ false + + + 2535 + Pirate05T09 + 15 +

2533

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Click on the crate</Text><ID>927430</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2535 + 3854 + 0 + + + + 1 + 205009 + 0 + + 3854 + Pirate05T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Well, we can't just leave it stranded where anyone can take it. {{Input}} on the crate and grab all the contents out of there. We'll make sure to get it back into the right hands.</Text><ID>929147</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCratePirateQueen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCratePirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the crate</Text><ID>927426</ID></Title><Desc><Text>{{Input}} on the crate</Text><ID>929145</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13398 + + 1 + 5509 + 205009 + true + 1 + 1 + + 0 + +
+ false +
+ + 3846 + Pirate05T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_HeadmasterLab</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Speaking of accidental exposure to supremely dangerous things: Johann has been asking for you. I wonder if it's about the conversation you had with Stormheart... Can you talk to Johann? (I was kidding about the 'dangerous' thing, of course. Johann is a dear.)</Text><ID>929150</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHeatherDO.unity3d/DlgHeatherQuestOffer01</Asset><NPC>PfDWAlchemist</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>I am in dire need of your assistance! I'm so flustered I can barely think straight. Earlier this week I was at Auction Island acquiring a set of rare gears that would be perfect for Hiccup's Dragon Eye project. A group of ruffians stole my boat, with the package in it! @@ It is imperative that we get the ship - and the goods - back! It is a unique ship with a horned dragon figurehead. Please, good Viking, can you help me out?</Text><ID>929151</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWJohann</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Johann at the School</Text><ID>929148</ID></Title><Desc><Text>Talk to Johann at the School</Text><ID>929148</ID></Desc></Data> + 0 + false + + + 3847 + Pirate05T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Sounds like a trip to Auction Island is in order! (Sorry-not-sorry for eavesdropping.) That place is a festering pit of villainy but I'll watch your back. We'll wrap this up quicker than you can say 'Ragnorok' five times over. Off to Auction Island!</Text><ID>929154</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Breathe in and let the smell of this place soak into your bones, {{Name}}. This is the good stuff, the scent of saltwater and danger. How can anyone ask for more?</Text><ID>929155</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Auction Island</Text><ID>931262</ID></Title><Desc><Text>Go to Auction Island</Text><ID>929389</ID></Desc></Data> + 0 + false + + + 3848 + Pirate05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Heather made me promise that I'd let you do all the talking and that's probably for the best. Lead on! Let's find some scoundrel who's ready to spill his guts. +(Figuratively, I promise.)</Text><ID>929158</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDragonHunter</NPC><Text>A horned dragon ship... I don't think I've seen any of those around here recently. I'll need a little something if you want to jog my memory. +You know, you look a little familiar... I don't think I like the look of your face.</Text><ID>929159</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDragonTrader</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone who's willing to talk</Text><ID>929156</ID></Title><Desc><Text>Find someone who's willing to talk</Text><ID>929156</ID></Desc></Data> + 0 + false + + + 3849 + Pirate05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Yikes! He looks like he wants to pick a fight. You should look for someone else to ask about Johann's boat before he gets violent.</Text><ID>929162</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAuctionIslandStorekeeper</NPC><Text>Hmm... there was a fight about that ship earlier this week. I was surprised; we haven't had a proper fist fight here in a month and the skinny guy didn't seem the fighting type. I was busy so I didn't get to watch... what a tragedy. @@ I think the other guy mentioned that the ship was going to make a stop at Scuttleclaw Island. Maybe you'll find it there?</Text><ID>929163</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAuctionIslandStorekeeper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the shifty shopkeeper</Text><ID>929160</ID></Title><Desc><Text>Talk to the shifty shopkeeper</Text><ID>929160</ID></Desc></Data> + 0 + false + + + 3850 + Pirate05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>You've got a knack for this detective stuff! Have you ever considered a change in scenery? I could use a sharp wit and a keen eye at Berserker Island. Odin knows Gustav didn't work out. @@ Well, look at us... we're getting a little ahead of ourselves, aren't we? We need to clean our plate before we can eat delicious yak pudding. Scuttleclaw Island ho!</Text><ID>929166</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ah hah! It looks like the ship has some guardians. I'm so glad I tagged along - I love a challenge!</Text><ID>929167</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ship</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the ship at Scuttleclaw Island</Text><ID>929164</ID></Title><Desc><Text>Look for the ship at Scuttleclaw Island</Text><ID>929164</ID></Desc></Data> + 0 + false + + + 3851 + Pirate05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Hmm. What do you think those things are, Sleuther? They look a little bit like Hiccup's targeting dummies except they're moving on their own. How is that happening? @@ Whatever. +They're standing in our way but not for much longer. Take out their weapons, {{Name}}: fire on the crossbow and destroy it! </Text><ID>929170</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>It looks like they plan on raising some objections. It must be my lucky day!</Text><ID>929171</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCrossbow</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfCrossbow</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Fire on the crossbow!</Text><ID>929168</ID></Title><Desc><Text>Fire on the crossbow!</Text><ID>932655</ID></Desc></Data> + 0 + false + + + 3852 + Pirate05T07 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpPirate05T07.unity3d/PfGrpPirate05T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>As always, my trusty crossbow is armed and ready. I'm ready to fight if you are. Land on the ship and we'll crush these thieves!</Text><ID>929174</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Whoo! Justice is served and good wins. Destroying things feels so much better when you're on the side of good. +I should have switched sides ages ago. Ha ha!</Text><ID>929175</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STPirateTraderMapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Conquer the Dragon Tactics Battle</Text><ID>933477</ID></Title><Desc><Text>Conquer the Dragon Tactics Battle</Text><ID>933477</ID></Desc></Data> + 0 + false + + + 3853 + Pirate05T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Now to reap the fruits of our labors. Let's go look for Johann's crate of goods!</Text><ID>929178</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>You know, Johann doesn't seem like the 'purple swirly' type to me. Do you think this symbol belongs to him? +If I had to guess... I'd bet this belongs to Stormheart.</Text><ID>929179</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCratePirateQueen</Value></Pair><Pair><Key>Name</Key><Value>PfCratePirateQueen</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the goods</Text><ID>929176</ID></Title><Desc><Text>Look for the goods</Text><ID>929176</ID></Desc></Data> + 0 + false + + + 3856 + Pirate05T11 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>PfDWDagur</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWJohann</NPC><Text>I promise to talk to Harald and do what I can to mitigate this disaster. Please inform Hiccup of what happened, along with my sincerest apologies.</Text><ID>929182</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh no. Oh no... +Well, maybe we'll be able to talk reasonably and avoid a confrontation. It was an accident; if we return her goods there's no harm no foul, right?</Text><ID>929183</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd12</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Hiccup what happened</Text><ID>929180</ID></Title><Desc><Text>Tell Hiccup what happened</Text><ID>929180</ID></Desc></Data> + 0 + false + + + 3857 + Pirate05T12 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ArchaeologistSchool</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hiccup, {{Name}}, if I may interrupt: give me the cargo you recovered from the ship and I can return it to its rightful owner at Auction Island. Dragons aren't well looked upon there and since Muddie isn't with me, I am confident that I can do this.</Text><ID>932819</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Are you sure, Skulder? We don't know much about Nikora Stormheart. I hope that this problem gets smoothed over quickly, but if it doesn't? This could get dangerous.</Text><ID>932922</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hiccup, you and {{Name}} have helped me in my darkest moments. It is my honor to be able to return the favor. Please give me the crate of goods, {{Name}}.</Text><ID>932923</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestEnd10</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word. This is... a lot of stuff! Don't worry, my dear friend. I'll make sure that this gets into the right hands. I will prove worthy of your trust, and Hiccup's as well.</Text><ID>929189</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>13398</Value></Pair><Pair><Key>ItemDescription</Key><Value>Stormheart Crate</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the crate to the Archaeologist</Text><ID>929184</ID></Title><Desc><Text>Give the crate to the Archaeologist</Text><ID>929184</ID></Desc></Data> + 0 + false + + + 3858 + Pirate05T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you go to Dragon's Edge and catch Dagur up on the events?</Text><ID>929192</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWHiccupDO.unity3d/DlgHiccupQuestoffer05</Asset><NPC>PfDWHiccup</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>So, what's the verdict? Are we going to war? @@ Hiccup, my poor naive brother... +You and I can see it, right {{Name}}? The chance that Stormheart will not retaliate is less than zero. We better strap on our armor and get ready. This won't be easy...</Text><ID>929193</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur at Dragon's Edge</Text><ID>929190</ID></Title><Desc><Text>Talk to Dagur at Dragon's Edge</Text><ID>929190</ID></Desc></Data> + 0 + false + + + 40 +

2

+ 0 + + 1 + 22 + 205007 + true + 40 + 40 + + 0 + +
+ + 350 +

1

+ 0 + + 1 + 368 + 205007 + true + 350 + 350 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205007 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205007 + true + 50 + 50 + + 0 + +
+ false +
+ + 2570 + New Farming 219 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title /></Data> + false + 0 + + + 4 + 9,8 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2570 + 3953 + 0 + + + + 1 + 205055 + 0 + + 3953 + 60 Pumpkins + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>60</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Pumpkins</Text><ID>922225</ID></Title><Desc><Text>Tuffnut wants pumpkins for his latest sculpture.</Text><ID>932621</ID></Desc></Data> + 0 + false + + + 40 +

9

+ 0 + + 1 + 671 + 205055 + true + 40 + 40 + + 0 + + + + 1280 +

2

+ 0 + + 1 + 5546 + 205055 + true + 1280 + 1280 + + 0 + +
+ false +
+ + 2590 + Vanaheim02 + 12 +

+ <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T00.unity3d/PfGrpVanaheim02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T08.unity3d/PfGrpVanaheim02T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_SkulderShipwreck</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dagur in Distress</Text><ID>933440</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWVanaheimExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2589 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2590 + 3983 + 0 + + + 1 + 2590 + 3984 + 0 + + + 1 + 2590 + 3985 + 0 + + + 1 + 2590 + 3986 + 0 + + + 1 + 2590 + 3987 + 0 + + + 1 + 2590 + 3988 + 0 + + + 1 + 2590 + 3989 + 0 + + + 1 + 2590 + 3990 + 0 + + + 1 + 2590 + 3991 + 0 + + + 1 + 2590 + 3992 + 0 + + + 1 + 2590 + 3993 + 0 + + + 1 + 2590 + 3994 + 0 + + + 1 + 2590 + 3995 + 0 + + + + 1 + 205085 + 0 + + 3983 + Vanaheim02T01 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DagurBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I received a Terror Mail from the lovebirds. They need our help! +@@What? Hiccup and Astrid are fine. Eww, no, I'm talking about Dagur and Mala. They're surrounded by enemies on the high seas and we need to go to their rescue. Business as usual for Snotlout, don't you think? {{Input}} on Hookfang and we'll fly out there together!</Text><ID>933569</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Uh-oh. He didn't mention that [c][3eebff]Stormheart[/c][ffffff] was here... This is going to get ugly.</Text><ID>933570</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutHuh</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hookfang to get Dagur</Text><ID>933567</ID></Title><Desc><Text>{{Input}} on Hookfang to get Dagur</Text><ID>933567</ID></Desc></Data> + 0 + false + + + 3984 + Vanaheim02T02 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DagurBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Well, Dagur will owe us big time! Fishlegs and I'll draw their fire. With the crossbows aimed at me, you'll be able to get to Dagur and figure out how we can help. Ready? Go!</Text><ID>933610</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutEncourage02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BeserkerShip</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Berserker Ship in the middle of the Tempest</Text><ID>933608</ID></Title><Desc><Text>Find the Berserker Ship in the middle of the Tempest</Text><ID>933608</ID></Desc></Data> + 0 + false + + + 3985 + Vanaheim02T03 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DagurBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I knew that my brother Hiccup wouldn't let old Dagur down in his moment of crisis. And is that old Snotfoot I see flitting around there like a busy little bug? +Ha!@@Come over here and I'll fill you in on the plan. Stormheart won't even know what's coming!</Text><ID>933613</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Imagine this: Dagur the Deranged, the deadliest Berserker in the entire world, waylaid by a simple pirate queen with a massive deadly battleship and a huge army. We haven't been idle; Mala is deep within the bowels of the Tempest right now, looking for a way to free our ship!</Text><ID>933614</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 3986 + Vanaheim02T04 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T04.unity3d/PfGrpVanaheim02T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DagurBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>You'll need this. By my guess, Stormheart's soldiers will be ready to fight right about now. (And who would blame them, with all the nasty stuff I've been yelling at them about their mothers? Ha ha!) Stand with me, my friend, and we'll give them what for!</Text><ID>933617</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim02T04CS.unity3d/PfGrpVanaheim02T04CS</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DT</Value></Pair><Pair><Key>Name</Key><Value>STVanaheim02MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Fight off the automatons on the Berserker ship</Text><ID>933615</ID></Title><Desc><Text>Fight off the automatons on the Berserker ship</Text><ID>933615</ID></Desc></Data> + 0 + false + + + 3987 + Vanaheim02T05 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T05.unity3d/PfGrpVanaheim02T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>While you three were defeating Stormheart's forces, I jammed the mechanism open for the Tempest's 'claws.' Stormheart won't be able to close the exit! {{Name}}, we need you for the final task. Ask {{dragon name}} to shoot the winch above us and break the crane!</Text><ID>933573</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim02T05CS.unity3d/PfGrpVanaheim02T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfWinch</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfWinch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the winch to free the ship</Text><ID>933571</ID></Title><Desc><Text>Shoot the winch to free the ship</Text><ID>933571</ID></Desc></Data> + 0 + false + + + 3988 + Vanaheim02T06 + <Data><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DagurRock</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>PfDWMala</Asset><Location>PfMarker_MalaRock</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanVanaheimDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T06.unity3d/PfGrpVanaheim02T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T07.unity3d/PfGrpVanaheim02T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Arh! Good, she missed us! +Forget the ship. It's just a thing and nowhere as precious as a dragon or a trainer. We need to get out of here before Stormheart can set her sights on us! Fly out and we'll regroup at Hobblegrunt Island!</Text><ID>933576</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpVanaheim02T06CS.unity3d/PfGrpVanaheim02T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank Odin you're safe! When you didn't arrive with the others, I was so worried. I thought that maybe Stormheart had caught up with you...</Text><ID>933577</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestEnd02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Regroup with Dagur at Hobblegrunt Island</Text><ID>933574</ID></Title><Desc><Text>Regroup with Dagur at Hobblegrunt Island</Text><ID>933574</ID></Desc></Data> + 0 + false + + + 3989 + Vanaheim02T07 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T07.unity3d/PfGrpVanaheim02T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Hah! I scoff at the thought. I saw the bravery burning deep within {{Name}} in the labyrinths of Impossible Island. Nothing as simple as a weapon-clad megalomaniac could shake their resolve!@@Unfortunately, I overheard a conversation on the Tempest that makes me believe this is just the beginning. Maybe we can figure it out together.</Text><ID>933580</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Stormheart told her lieutenant that once she finished dealing with us, she had to "secure Johann's treasure cache." Does that mean anything to you?</Text><ID>933581</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wait, wait! I've never forgotten the location of any treasure, believe me. Let me think... Johann told us a long time ago... +Ah! The Ship Graveyard! Johann used to hide his most important goods in one of the wrecks at the Ship Graveyard. Stormheart is going there? That's pretty close to Berk...</Text><ID>933582</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract03</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala</Text><ID>933578</ID></Title><Desc><Text>Talk to Mala</Text><ID>928347</ID></Desc></Data> + 0 + false + + + 3990 + Vanaheim02T08 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T09.unity3d/PfGrpVanaheim02T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Johann told us about the treasure back when we thought he was an ally, so we never looked into it. I bet he's hidden all sorts of nasty villainy stuff there. We need to get there before Stormheart and loot the place! I mean, get there and stop her!</Text><ID>933585</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestOffer02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It's quiet. A little [c][3eebff]too[/c][ffffff] quiet...</Text><ID>933586</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutIdle01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Ship Graveyard</Text><ID>934531</ID></Title><Desc><Text>Go to Ship Graveyard</Text><ID>934531</ID></Desc></Data> + 0 + false + + + 3991 + Vanaheim02T09 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T09.unity3d/PfGrpVanaheim02T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Come on, Snotlout. This place is always creepy. Let's spread out and look for Johann's cache, and be careful when you step on any shipwrecks.</Text><ID>933589</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsQuestOffer01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, it's Skulder!</Text><ID>933590</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>A little [c][3eebff]too[/c][ffffff] Skulder...</Text><ID>933591</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos01</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPos04</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SkulderShipwreck</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Johann's Cache</Text><ID>933587</ID></Title><Desc><Text>Look for Johann's Cache</Text><ID>933587</ID></Desc></Data> + 0 + false + + + 3992 + Vanaheim02T10 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T10.unity3d/PfGrpVanaheim02T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Friends! I'm so glad you arrived.</Text><ID>933594</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I didn't have any chance to send word before Stormheart snatched me from Mudraker Island! She brought me to this accursed place and ransacked it to find a treasure trove.@@Strangely, she ignored the jewels to find a small map filled with strange symbols. She made me translate it and left once I was of no more use to her. I don't remember the directions well, but I believe the map led to a place called... Vanaheim?</Text><ID>933595</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 3993 + Vanaheim02T11 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T10.unity3d/PfGrpVanaheim02T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh no. Oh no! Not that place... never again. +I led the group to Vanaheim once and it was a disaster. We can never go there again, {{Name}}. Come here and I'll explain why.</Text><ID>933598</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutAttract01</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Okay, okay, you got me: Hiccup led the group to Vanaheim, but only because I was his right-hand man on the trip. Vanaheim is a place where dragons go to die. It's a creepy, creepy place filled with dangerous dragons. We can't go back there again.</Text><ID>933599</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutPlayAgain02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 3994 + Vanaheim02T12 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T10.unity3d/PfGrpVanaheim02T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wait, Snotlout! Vanaheim isn't a [c][3eebff]creepy[/c][ffffff] place; it's a sacred place where dragons can live out their lives in peace! Who knows what sort of damage Stormheart could do if she's allowed to just traipse through the island?@@Look at all the dragons she poisoned with Grimora venom. She clearly doesn't care about dragons! She could destroy it, leaving even Hookfang without a place to go at the end of his life!@@We need to - well, there's a small problem... Can you come here a moment, {{Name}}?</Text><ID>933602</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I... noticed this earlier, but I need to take a pit stop at Impossible Island. Look: Lumie is here with us. I think he's following Meatlug. It's a bit before his time to go to Vanaheim...</Text><ID>933603</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsAttract02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 3995 + Vanaheim02T13 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrpVanaheim02T10.unity3d/PfGrpVanaheim02T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>No, Fishlegs, you were right. There's no time. Stormheart has a head start on us and we need to book it if we want to catch up. Bring Lumie along! He's supposed to be a leviathan, right? Maybe he'll finally show us some of his power.@@Messing with Hookfang? I won't stand for it. Come on, {{Name}}. Onwards to Vanaheim!</Text><ID>933606</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>VO</Type><Asset>RS_DATA/DlgDWSnotloutDO.unity3d/DlgSnotloutQuestEnd02</Asset><NPC>PfDWSnotlout</NPC><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I never thought I'd be back here. The dragon knowledge hidden on this place...</Text><ID>933607</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>VO</Type><Asset>RS_DATA/DlgDWFishlegsDO.unity3d/DlgFishlegsPos02</Asset><NPC>PfDWFishlegs</NPC><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Vanaheim</Text><ID>933604</ID></Title><Desc><Text>Go to Vanaheim</Text><ID>933604</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205085 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205085 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205085 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205085 + true + 350 + 350 + + 0 + +
+ + 1 +

6

+ 10996 + + 1 + 5582 + 205085 + true + 1 + 1 + + 0 + +
+ false +
+ + 2626 + Edu121 + 45 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQEdu121T00.unity3d/PfGrpQEdu121T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_EretBeach</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_FishlegsCrash</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Rumbling Docks and Sundial Clocks</Text><ID>935052</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2622 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 2626 + 2627 + 0 + + + 2 + 2626 + 2628 + 0 + + + 1 + 2626 + 4174 + 0 + + + 1 + 2626 + 4175 + 0 + + + 1 + 2626 + 4176 + 0 + + + 2 + 2626 + 2629 + 0 + + + 2 + 2626 + 2630 + 0 + + + + 1 + 205136 + 0 + + 2627 + Edu121T01 + 45 +

2626

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Check on Eret in Berk</Text><ID>935040</ID></Title><Desc><Text>Head to the docks in Berk and check on Eret.</Text><ID>935041</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2627 + 4171 + 0 + + + + 1 + 205137 + 0 + + 4171 + Edu121T01A + <Data><Offer><Type>Popup</Type><ID>935065</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Have you noticed a plume of black smoke rising from the docks? I left Eret to dragon sit three Rumblehorn hatchlings, but I have a... hunch... that he might need help. Can you check on him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935066</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You are Thor-sent, mate! How in the world did one of these rogue Rumblehorns get over there? It's back-breaking work to take care of these little firebrands. Lend a hand, will you? Here!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Eret in Berk</Text><ID>935040</ID></Title><Desc><Text>Head to the docks in Berk and check on Eret.</Text><ID>935041</ID></Desc></Data> + 0 + false + + + 2 +

6

+ 13648 + + 1 + 5602 + 205137 + true + 2 + 2 + + 0 + +
+ false + + + 2628 + Edu121T02 + 45 +

2626

+ <Data><Offer><Type>Popup</Type><ID>935044</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>If we don't put out the fire soon, everything will go up in smoke! We can't use water to douse the flames, or the rations and maps inside will spoil, but I reckon these wool blankets will do the trick. @@ Fire is a simple [c][3eebff]chemical reaction[/c][ffffff] between oxygen in the air and a fuel that burns, like wood. It needs both oxygen and fuel to thrive! Wool is a natural fire retardant fiber so it does not burn easily. Placing a [c][3eebff]fire blanket[/c][ffffff] (the humble wool blanket) on the fire will cut off its oxygen supply and put out the fire! @@ Here's the plan. I'll make sure the Rumblehorn is distracted. Sneak past the dragon and drop the blankets over the two fires!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>935045</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Ah! A smooth sea never did make a skilled sailor like me but you did a fine job there, {{Name}}. These Rumblehorn hatchlings are hard locks to crack. I just missed one feeding time and look at all the damage!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>{{Input}} on the fires in the boat to douse them</Text><ID>935042</ID></Title><Desc><Text>{{Input}} on the fires in the boat to douse them.</Text><ID>935043</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2628 + 4172 + 0 + + + 1 + 2628 + 4173 + 0 + + + + 1 + 0 + 0 + + 4172 + Edu121T02A + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfBurntBarrel</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBurntBarrel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13648</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the fire on the wooden barrel</Text><ID>935067</ID></Title><Desc><Text>{{Input}} on the fire on the wooden barrel.</Text><ID>935068</ID></Desc></Data> + 0 + false + + + 4173 + Edu121T02B + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfBurntCrate</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfBurntCrate</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13648</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the fire on the wooden crate</Text><ID>935069</ID></Title><Desc><Text>{{Input}} on the fire on the wooden crate.</Text><ID>935070</ID></Desc></Data> + 0 + false + + false +
+ + 2629 + Edu121T06 + 45 +

2626

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_AstridBeach</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><RemoveItem><ItemID>7967</ItemID><Quantity>1</Quantity></RemoveItem><RemoveItem><ItemID>13649</ItemID><Quantity>4</Quantity></RemoveItem><Title><Text>{{Input}} on the platform to set up the pine cones and gnomon</Text><ID>935046</ID></Title><Desc><Text>{{Input}} on the platform to set up the pine cones and gnomon.</Text><ID>935047</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2629 + 4177 + 0 + + + + 1 + 205138 + 0 + + 4177 + Edu121T06A + <Data><Offer><Type>Popup</Type><ID>935073</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Astrid should be ready in Berk by now. Find the sundial and {{input}} on it to put the pieces together.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935074</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's working like a dream, isn't it? One day it'll save us from invading enemies and the next it'll keep our baby dragons from starting fires.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfSundialCombo</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSundialCombo</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the platform to set up the pine cones and gnomon</Text><ID>935046</ID></Title><Desc><Text>{{Input}} on the platform to set up the pine cones and gnomon in Berk.</Text><ID>935072</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 13494 + + 1 + 5603 + 205138 + true + 3 + 3 + + 0 + +
+ false +
+ + 2630 + Edu121T07 + 45 +

2626

+ <Data><Offer><Type>Popup</Type><ID>935050</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You're a good one, {{Name}}; would you mind helping out a bit more? The shadow tells me it's feeding time already. Step closer, reach out and {{input}} on the three hatchlings one by one to feed them the fish. Remember now, no sudden movements.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>935051</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>They look heartbreakingly cute when they aren't burning down my boat! Ha ha. I'm sure my old crew wouldn't believe their eyes if they saw me daddy-ing these riotous babies. I can finally breathe easy and cool off. @@ Thanks, {{Name}}. I can't wait for our next adventure!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them</Text><ID>935048</ID></Title><Desc><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them.</Text><ID>935049</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2630 + 4178 + 0 + + + 1 + 2630 + 4179 + 0 + + + 1 + 2630 + 4180 + 0 + + + + 1 + 0 + 0 + + 4178 + Edu121T07A + <Data><End><Type>Popup</Type><ID>935077</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You sure look over the moon, little one!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRumbleHornBaby01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRumbleHornBaby01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13494</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them</Text><ID>935048</ID></Title><Desc><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them.</Text><ID>935049</ID></Desc></Data> + 0 + false + + + 4179 + Edu121T07B + <Data><End><Type>Popup</Type><ID>935080</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There's another calm baby dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRumbleHornBaby02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRumbleHornBaby02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>13494</ItemID><Quantity>1</Quantity></RemoveItem><Type>Action</Type><Title><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them</Text><ID>935048</ID></Title><Desc><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them.</Text><ID>935049</ID></Desc></Data> + 0 + false + + + 4180 + Edu121T07C + <Data><End><Type>Popup</Type><ID>935083</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>That's better, you rumbly rascal you (I'm referring to the hatchling).</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRumbleHornBaby03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRumbleHornBaby03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them</Text><ID>935048</ID></Title><Desc><Text>{{Input}} on the 3 Rumblehorn hatchlings to feed them.</Text><ID>935049</ID></Desc></Data> + 0 + false + + false +
+ + 4174 + Edu121T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWAstrid</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>935086</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>There'll be a string of disasters if they aren't fed regularly. These little rascals remind me of Stormfly, that spine-shooting dragon of Astrid's. She pins me down like her favorite toy whenever I'm around, and these guys have the same energy! @@ Hang on: Rumblehorns and Deadly Nadders are both Tracker class dragons. Maybe Astrid can help us; I saw her train a whole flock of young Nadders to fly in perfect formation once. Can you find her in the Wilderness and ask her if she knows a way out of this mess?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935087</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Poor Eret. Dragon training can be really hectic, especially when babies are involved.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask for Astrid's help in the Wilderness</Text><ID>935084</ID></Title><Desc><Text>Ask for Astrid's help in the Wilderness.</Text><ID>935085</ID></Desc></Data> + 0 + false + + + 4175 + Edu121T04 + <Data><Offer><Type>Popup</Type><ID>935090</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>With hungry babies around, you need to be watchful at all times and keep them fed. I remember Fishlegs once built a sundial to keep track of our sentry watch. I bet that's just the thing for Eret and his Rumblehorns. @@ A sundial is a simple device to keep track of time using the sun's movements. It has two parts. The first part, a [c][3eebff]gnomon[/c][ffffff], is a pointer that is fit at the center of the device. It casts a shadow on the marked platform around it. @@ Let's start out by finding a shadow casting piece. Can you chop off a piece of wood for the gnomon?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935091</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great! That'll do perfectly. A sundial tells us the time by measuring the sun's [c][3eebff]apparent movement[/c][ffffff]. Actually the sun doesn't move at all; it appears to change its position across the sky as the earth rotates about its axis. With this, the shadow cast by the gnomon aligns itself with the markers on the platform to show what time of the day it is.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop and gather a piece of wood</Text><ID>935088</ID></Title><Desc><Text>Chop and gather a piece of wood.</Text><ID>935089</ID></Desc></Data> + 0 + false + + + 4176 + Edu121T05 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrpQEdu121T05.unity3d/PfGrpQEdu121T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>935094</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Do you know why the shadow cast by the gnomon keeps changing its length and position as it moves around the sundial? At noon, the sun is overhead and its light comes straight down from the highest point in the sky. That's why it'll cast a short shadow. But in the mornings and evenings, that same shadow gets longer because the sun casts light at a sharper angle. @@ Stormfly and I will head over to Berk and help Eret out with those hot-headed babies. While I do that, can you find four pine cones to mark the sundial? I'll bring the rest.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectPineconeClosed</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather 4 pine cones for the sundial</Text><ID>935092</ID></Title><Desc><Text>Gather 4 pine cones for the sundial.</Text><ID>935093</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205136 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205136 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205136 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205136 + true + 350 + 350 + + 0 + +
+ false +
+ + 2652 + Scavenger 2018 T03 + 2 +

+ <Data><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfDWChestScavengerHunt.unity3d/PfDWChestScavengerHunt</Asset><Location>PfMarker_Scavenger2018</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset /></Reward><Title><Text>The Third Treasure</Text><ID>935173</ID></Title></Data> + false + 0 + + + 5 + 07-01-2018 12:00:00,11-23-2018 12:00:00 + 0 + false + + + 3 + 2650 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2652 + 4214 + 0 + + + + 1 + 0 + 0 + + 4214 + Scavenger2018-03T01 + <Data><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Scavenger2018</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the chest</Text><ID>935227</ID></Title><Desc><Text>Find the chest.</Text><ID>935228</ID></Desc></Data> + 0 + false + + false + + + 2674 + DreadfallMaze 2018 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 5 + 09-01-2018 12:00:00,01-01-2019 12:00:00 + 0 + false + + + 3 + 2673 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2674 + 4254 + 0 + + + + 1 + 205364 + 0 + + 4254 + DreadfallMaze2018 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Dreadfall Maze Chest</Text><ID>933186</ID></Title><Desc><Text>Find the Dreadfall Maze Chest.</Text><ID>935414</ID></Desc></Data> + 0 + false + + + 5 +

6

+ 13711 + + 1 + 5698 + 205364 + true + 5 + 5 + + 0 + + + false +
+ + 2691 + HiddenWorld03 + 45 +

+ <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld03T00.unity3d/PfGrpHiddenWorld03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>What Is This Place?</Text><ID>935611</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2690 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2691 + 4293 + 0 + + + 1 + 2691 + 4294 + 0 + + + 1 + 2691 + 4295 + 0 + + + 1 + 2691 + 4296 + 0 + + + 1 + 2691 + 4297 + 0 + + + 1 + 2691 + 4298 + 0 + + + 1 + 2691 + 4299 + 0 + + + 1 + 2691 + 4300 + 0 + + + + 1 + 205508 + 0 + + 4293 + HiddenWorld03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>What an incredible subterranean cavern system we've uncovered! When we first arrived here, we quickly discovered caves that we converted to dragon stables. I don't think any of us imagined anything like this.@@Cloudjumper, how do you feel? Can you {{input}} on him, {{Name}}?</Text><ID>935554</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWCloudjumper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Cloudjumper</Text><ID>935886</ID></Title><Desc><Text>{{Input}} on Cloudjumper</Text><ID>935886</ID></Desc></Data> + 0 + false + + + 4294 + HiddenWorld03T02 + <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWCloudjumper</Asset><Location>PfMarker_CloudJumperEntrance</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Actions, not words, eh old friend? Ha! I understand. Let's {{input}} on dear Cloudjumper and follow him wherever he wants to lead us. This place may be unfamiliar to us, but he seems at home here.</Text><ID>935557</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>What a brilliant sight!</Text><ID>935558</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CloudJumperPoolside</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>14</Value></Pair><Pair><Key>NPC</Key><Value>PfDWCloudjumper</Value></Pair><Pair><Key>Spline</Key><Value>CloudJumperSplineToPool</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Cloudjumper and follow him</Text><ID>935555</ID></Title><Desc><Text>{{Input}} on Cloudjumper and follow him</Text><ID>935555</ID></Desc><Reminder><Text>Keep up with Cloudjumper.</Text><ID>936285</ID></Reminder><Failure><Text>Task Failed--Please try again.</Text><ID>936286</ID></Failure></Data> + 0 + false + + + 4295 + HiddenWorld03T03 + <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_ValkaMushroom</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWCloudjumper</Asset><Location>PfMarker_CloudJumperPoolside</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>These mushrooms have clearly evolved to thrive in this underground ecosystem!@@Mushrooms are fungi, so they can live in different environments than plants. All living things need water, air, and resources to survive. Mushrooms cannot capture sunlight like plants, so they can thrive in dark and dank areas. Mushrooms have roots that extend deep into the soil. These roots absorb mineral nutrients from the ground.@@Shall we take a closer look?</Text><ID>935561</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>They're so beautiful. And their bioluminescent glow... what a glorious evolution for this fungi. It's clear to me that the ecosystem in this underground cavern has been thriving for years, even generations.</Text><ID>935562</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MushroomPatch1</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a closer at the pillar</Text><ID>935559</ID></Title><Desc><Text>Visit the pillar</Text><ID>941741</ID></Desc></Data> + 0 + false + + + 4296 + HiddenWorld03T04 + <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_ValkaMushroom</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The wildlife and the vegetation can't survive down here without a source of water. Can you find a pool of water nearby? That will help confirm our suspicions.</Text><ID>935565</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Fresh water! This makes perfect sense.@@Water can be found in the ocean, rivers, lakes, and ponds in both liquid and solid form. All the water on earth cycles continually among the land, ocean, and atmosphere through precipitation, evaporation, condensation, and crystallization.@@Most fresh water on the planet lies in underground caverns like what we've found here. This giant well of fresh water could very well help an entire host of organisms thrive down here.</Text><ID>935566</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Pool</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the pool of water</Text><ID>935563</ID></Title><Desc><Text>Look at the pool of water</Text><ID>935563</ID></Desc></Data> + 0 + false + + + 4297 + HiddenWorld03T05 + <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWCloudjumper</Asset><Location>PfMarker_CloudJumperAir</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_ValkaMushroom</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I've gotten ahead of myself. Cloudjumper has led me someplace new. That is, it's only new to me; it's become very clear to me that Cloudjumper is familiar with this land. Will you join us here, please?</Text><ID>935569</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld03T05CS_FAO.unity3d/PfGrpHiddenWorld03T05CS_FAO</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CloudJumperAir</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Cloudjumper</Text><ID>935567</ID></Title><Desc><Text>Visit Cloudjumper</Text><ID>941742</ID></Desc></Data> + 0 + false + + + 4298 + HiddenWorld03T06 + <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWCloudjumper</Asset><Location>PfMarker_CloudJumperCave</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_ValkaMushroom</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Breathtaking. Just... +We are so lucky to be friends with these majestic creatures. If I were a dragon, I'd be flexing my wings and flying with every free moment!@@Ah! As Astrid named her, the 'Light Fury' seems to be watching us. Let's see if she accepts our presence here. Approach her--but carefully, {{Name}}.</Text><ID>935572</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LightFury</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get closer to the Light Fury</Text><ID>935570</ID></Title><Desc><Text>Get closer to the Light Fury</Text><ID>935570</ID></Desc></Data> + 0 + false + + + 4299 + HiddenWorld03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Well! She doesn't want us to explore this place for now. We can bow to her wishes, of course; we'll have plenty of time to study this place since it's right below our school.@@I'm going to stay and examine the area we've already uncovered a little. Will you return to the school and tell the others what we've found?</Text><ID>935575</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the School</Text><ID>935573</ID></Title><Desc><Text>Return to the School</Text><ID>935573</ID></Desc></Data> + 0 + false + + + 4300 + HiddenWorld03T08 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid_02</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm so happy you're back! I was getting ready to send Fishlegs after you. Come on, what did you learn?</Text><ID>935578</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow. That's... wow. +I wish we had the time to properly explore the caverns, but we have more pressing problems. We're in trouble, {{Name}}.</Text><ID>935579</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 205508 + true + 100 + 100 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205508 + true + 45 + 45 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205508 + true + 200 + 200 + + 0 + +
+ + 450 +

8

+ 0 + + 1 + 2806 + 205508 + true + 450 + 450 + + 0 + +
+ false +
+ + 2730 + Curse06 + 25 +

+ <Data><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfGrpCurse06T00.unity3d/PfGrpCurse06T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfGrpCurse06T01.unity3d/PfGrpCurse06T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfGrpCurse06Sneak.unity3d/PfGrpCurse06Sneak</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Returning to the Nest</Text><ID>936698</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2723 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2730 + 4497 + 0 + + + 1 + 2730 + 4498 + 0 + + + 1 + 2730 + 4499 + 0 + + + 1 + 2730 + 4539 + 0 + + + 1 + 2730 + 4500 + 0 + + + 1 + 2730 + 4501 + 0 + + + 1 + 2730 + 4502 + 0 + + + 1 + 2730 + 4538 + 0 + + + 1 + 2730 + 4503 + 0 + + + 1 + 2730 + 4504 + 0 + + + 1 + 2730 + 4540 + 0 + + + 1 + 2730 + 4505 + 0 + + + 1 + 2730 + 4506 + 0 + + + 1 + 2730 + 4507 + 0 + + + 1 + 2730 + 4508 + 0 + + + 1 + 2730 + 4509 + 0 + + + 1 + 2730 + 4510 + 0 + + + 1 + 2730 + 4541 + 0 + + + 1 + 2730 + 4542 + 0 + + + 1 + 2730 + 4511 + 0 + + + 1 + 2730 + 4512 + 0 + + + 1 + 2730 + 4513 + 0 + + + 1 + 2730 + 4514 + 0 + + + 1 + 2730 + 4515 + 0 + + + 1 + 2730 + 4516 + 0 + + + 1 + 2730 + 4517 + 0 + + + 1 + 2730 + 4518 + 0 + + + 1 + 2730 + 4519 + 0 + + + 1 + 2730 + 4520 + 0 + + + + 1 + 205842 + 0 + + 4497 + Curse06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>We can return all the Hobgobblers to their nest! Unfortunately, Mudraker doesn't like the idea of heading into that cavern. It will have to be you, brave {{Name}}, to see this through to the end. Thorspeed! I have faith that you can do it.</Text><ID>936953</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Hobgobbler nest</Text><ID>936951</ID></Title><Desc><Text>Find the Hobgobbler nest</Text><ID>936951</ID></Desc></Data> + 0 + false + + + 4498 + Curse06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe the Archaeologist is on the right track; look at all these Hobgobblers coming together!</Text><ID>936956</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That Hobgobbler is using the vent to hover in the air. Your Dragon Armor could do the same thing, using the wings built into the suit...</Text><ID>936957</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4498</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the floating Hobgobbler</Text><ID>936954</ID></Title><Desc><Text>Look at the floating Hobgobbler</Text><ID>936954</ID></Desc></Data> + 0 + false + + + 4499 + Curse06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should glide down the tunnel in your Hobgobbler Dragon Armor; maybe that will convince the dragons to follow you?</Text><ID>936960</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4499</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Glide down the tunnel</Text><ID>936958</ID></Title><Desc><Text>Glide down the tunnel</Text><ID>936958</ID></Desc></Data> + 0 + false + + + 4500 + Curse06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What's going on with that Hobgobbler?</Text><ID>936963</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse06T04CS.unity3d/PfGrpCurse06T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4500</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the Hobgobbler</Text><ID>936961</ID></Title><Desc><Text>Look at the Hobgobbler</Text><ID>936961</ID></Desc></Data> + 0 + false + + + 4501 + Curse06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Interesting! The weight on the pressure plate caused the rock to rise up. You should continue down the tunnel now that the path is clear.</Text><ID>936966</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4501</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue down the tunnel</Text><ID>936964</ID></Title><Desc><Text>Continue down the path</Text><ID>928711</ID></Desc></Data> + 0 + false + + + 4502 + Curse06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should push Hobgobblers onto the right vents to create a path to the exit.</Text><ID>936969</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4502</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Push the Hobgobblers onto the right vents and cross the room</Text><ID>936967</ID></Title><Desc><Text>Push the Hobgobblers onto the right vents and cross the room</Text><ID>936967</ID></Desc></Data> + 0 + false + + + 4503 + Curse06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What is that coral on that wall?</Text><ID>936972</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hmm... +That looks sturdy enough to climb!</Text><ID>936973</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4503</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the wall</Text><ID>936970</ID></Title><Desc><Text>Look at the wall</Text><ID>936970</ID></Desc></Data> + 0 + false + + + 4504 + Curse06T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should climb that wall and avoid the dragons to continue into the nest.</Text><ID>936976</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4504</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb up the walls to the exit</Text><ID>936974</ID></Title><Desc><Text>Climb up the walls to the exit</Text><ID>936974</ID></Desc></Data> + 0 + false + + + 4505 + Curse06T09 + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4505</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb and explore the cave</Text><ID>936977</ID></Title><Desc><Text>Climb and explore the cave</Text><ID>936977</ID></Desc></Data> + 0 + false + + + 4506 + Curse06T10 + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4506</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb and explore further</Text><ID>936979</ID></Title><Desc><Text>Climb and explore further into the cave</Text><ID>941678</ID></Desc></Data> + 0 + false + + + 4507 + Curse06T11 + <Data><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfDWHobgobblerBabyNPC.unity3d/PfDWHobgobblerBabyNPC</Asset><Location>PfMarker_Escort01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Oh no! Is this baby Hobgobbler lost? You can't let him get caught by the Speed Stingers! You should {{input}} on him and lead him into the maze.</Text><ID>936985</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4507</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHobgobblerBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Hobgobbler and lead him into the maze</Text><ID>936981</ID></Title><Desc><Text>Lead the Hobgobbler to safety</Text><ID>941679</ID></Desc><Reminder><Text>Don't leave the Hobgobbler behind!</Text><ID>936983</ID></Reminder><Failure><Text>Oh no! Lead the Hobgobblers through the maze!</Text><ID>936984</ID></Failure></Data> + 0 + false + + + 4508 + Curse06T12 + <Data><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfDWHobgobblerBabyNPC.unity3d/PfDWHobgobblerBabyNPC</Asset><Location>PfMarker_Escort02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>PfDWHobgobblerBaby01</Asset><Location>PfMarker_Escort02_1</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's another one. Perhaps it will follow you. You should {{input}} on that Hobgobbler and lead him into the maze!</Text><ID>936990</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4508</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHobgobblerBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Hobgobbler and lead them through the maze</Text><ID>936986</ID></Title><Desc><Text>{{Input}} on the Hobgobbler and lead them to safety</Text><ID>941680</ID></Desc><Reminder><Text>You're leaving the Hobgobblers behind!</Text><ID>936988</ID></Reminder><Failure><Text>Oh no! Go back to the Hobgobblers and lead them!</Text><ID>936989</ID></Failure></Data> + 0 + false + + + 4509 + Curse06T13 + <Data><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>RS_DATA/PfDWHobgobblerBabyNPC.unity3d/PfDWHobgobblerBabyNPC</Asset><Location>PfMarker_Escort03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>PfDWHobgobblerBaby01</Asset><Location>PfMarker_Escort03_1</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>PfDWHobgobblerBaby02</Asset><Location>PfMarker_Escort03_2</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBINTDO</Scene><Asset>PfDWHobgobblerBaby03</Asset><Location>PfMarker_Escort03_3</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Two more?! You should {{input}} on the Hobgobblers and lead them through the maze.</Text><ID>936995</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse06T13CS.unity3d/PfGrpCurse06T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4509</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHobgobblerBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Hobgobblers and lead them through the maze</Text><ID>936991</ID></Title><Desc><Text>{{Input}} on the Hobgobblers and lead them to safety</Text><ID>941681</ID></Desc><Reminder><Text>Don't leave the Hobgobblers behind!</Text><ID>936993</ID></Reminder><Failure><Text>Oh no! Get the Hobgobblers and lead them!</Text><ID>936994</ID></Failure></Data> + 0 + false + + + 4510 + Curse06T14 + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4510</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue into the room</Text><ID>924420</ID></Title><Desc><Text>Continue into the room</Text><ID>936996</ID></Desc></Data> + 0 + false + + + 4511 + Curse06T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should climb to the top!</Text><ID>937000</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4511</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb to the top of the pillars</Text><ID>936998</ID></Title><Desc><Text>Climb to the top of the pillars</Text><ID>936998</ID></Desc></Data> + 0 + false + + + 4512 + Curse06T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Glide across the room from the top pillar, following the flying hobgobblers.</Text><ID>937003</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4512</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Glide to the other side of the room</Text><ID>937001</ID></Title><Desc><Text>Glide to the other side of the room, following the hobgobblers</Text><ID>941682</ID></Desc></Data> + 0 + false + + + 4513 + Curse06T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This huge rock is blocking the way. Is there a way to get past to the other side?</Text><ID>937006</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse06T17CS.unity3d/PfGrpCurse06T17CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_4513</Value></Pair><Pair><Key>Name</Key><Value>SwitchOn</Value></Pair><Pair><Key>ItemName</Key><Value>PfPressurePlate03_4513</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Figure out how to get past the rock</Text><ID>937004</ID></Title><Desc><Text>Figure out how to get past the rock</Text><ID>937004</ID></Desc></Data> + 0 + false + + + 4514 + Curse06T18 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Where are all the Hobgobblers going? You should follow them.</Text><ID>937009</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4514</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the Hobgobblers </Text><ID>937007</ID></Title><Desc><Text>Follow the Hobgobblers</Text><ID>937007</ID></Desc></Data> + 0 + false + + + 4515 + Curse06T19 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What will make these dragons return to their nest? Maybe you should push the gray Hobgobbler into the beam of light.</Text><ID>937012</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse06T19CS.unity3d/PfGrpCurse06T19CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_4515</Value></Pair><Pair><Key>Name</Key><Value>SwitchOn</Value></Pair><Pair><Key>ItemName</Key><Value>PfPressurePlate03_4515_a</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Push the gray Hobgobbler into the beam of light</Text><ID>937010</ID></Title><Desc><Text>Push the Hobgobbler into the beam of light</Text><ID>941683</ID></Desc></Data> + 0 + false + + + 4516 + Curse06T20 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Why is this little guy still here? Perhaps he wants to bond with you? + +You should {{input}} on him.</Text><ID>937015</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse06T20CS.unity3d/PfGrpCurse06T20CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_4515</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobbler_Unique</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4517 + Curse06T21 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should follow this tunnel. Perhaps it will lead you back out to the Hidden World?</Text><ID>937018</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Heavens! You're back!</Text><ID>937019</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_4517</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the path back to the Hidden World</Text><ID>937016</ID></Title><Desc><Text>Follow the path back to the Hidden World</Text><ID>937016</ID></Desc></Data> + 0 + false + + + 4518 + Curse06T22 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>None of the Hobgobblers have left the cavern so I assume that it was a job well done. Can you fill me in on the details?</Text><ID>937022</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That sounds majestic. I wish I could have seen it with my own eyes.</Text><ID>937023</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4519 + Curse06T23 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Mission accomplished! +(Why does that sound so familiar?) +I shall see you back in New Berk, my friend.</Text><ID>937026</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to New Berk</Text><ID>937024</ID></Title><Desc><Text>Return to New Berk</Text><ID>937024</ID></Desc></Data> + 0 + false + + + 4520 + Curse06T24 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yo! Yo! Over here!</Text><ID>937029</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It's no surprise you were able to do so much, after my concentrated tutelage. It was truly my pleasure.</Text><ID>937030</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 4538 + Curse06T06A + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4502A</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Exit the room</Text><ID>937031</ID></Title><Desc><Text>Continue down the tunnel</Text><ID>936964</ID></Desc></Data> + 0 + false + + + 4539 + Curse06T03a + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4499a</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go down the tunnel</Text><ID>937033</ID></Title><Desc><Text>Go down the tunnel</Text><ID>937033</ID></Desc></Data> + 0 + false + + + 4540 + Curse06T08A + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4540</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Climb sideways along the wall</Text><ID>937035</ID></Title><Desc><Text>Climb sideways along the wall</Text><ID>941684</ID></Desc></Data> + 0 + false + + + 4541 + Curse06T14A + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4541</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue into the room</Text><ID>924420</ID></Title><Desc><Text>Continue into the room</Text><ID>936996</ID></Desc></Data> + 0 + false + + + 4542 + Curse06T14B + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4542</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Continue into the room</Text><ID>924420</ID></Title><Desc><Text>Continue into the room</Text><ID>936996</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 205842 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205842 + true + 45 + 45 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205842 + true + 50 + 50 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205842 + true + 350 + 350 + + 0 + +
+ false +
+ + 2814 + MainReward10 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward10</Text><ID>939135</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2814 + 5742 + 0 + + + + 1 + 206020 + 0 + + 5742 + MainReward10 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>84</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17833</Value></Pair><Pair><Key>ItemDescription</Key><Value>Epic Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward10</Text><ID>939135</ID></Title><Desc><Text>MainReward10</Text><ID>939135</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 17872 + + 1 + 7556 + 206020 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17873 + + 1 + 7557 + 206020 + true + 1 + 1 + + 0 + +
+ false +
+ + 2879 + SpringMaze 2020 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spring Maze 2020 T02</Text><ID>938472</ID></Title></Data> + false + 0 + + + 3 + 2878 + 0 + false + + + 5 + 01-01-2020 12:00:00 AM,03-01-2020 12:00:00 AM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2879 + 5926 + 0 + + + + 1 + 206187 + 0 + + 5926 + SpringMaze2020T02 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the Spring Maze chest</Text><ID>939450</ID></Title></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 206187 + true + 25 + 25 + + 0 + + + false +
+ + 2957 + 2020SnoggletogStory02 + 11 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQ2020SnoggletogStory02T00.unity3d/PfGrpQ2020SnoggletogStory02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Debate</Text><ID>939924</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2956 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2957 + 6122 + 0 + + + 1 + 2957 + 6123 + 0 + + + 1 + 2957 + 6124 + 0 + + + 1 + 2957 + 6125 + 0 + + + 1 + 2957 + 6126 + 0 + + + 1 + 2957 + 6127 + 0 + + + + 1 + 206358 + 0 + + 6122 + 2020SnoggletogStory02T01 + <Data><Offer><Type>Popup</Type><ID>940078</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow. A new dragon? From Stormheart? +I don't like her, but I like leaving a poor dragon in her clutches less. Let's go to Hobblegrunt Island and figure this out.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Hobblegrunt Island</Text><ID>930455</ID></Title></Data> + 0 + false + + + 6123 + 2020SnoggletogStory02T02 + <Data><Offer><Type>Popup</Type><ID>940079</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well. Let's get this over with...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940080</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Shall we begin?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title></Data> + 0 + false + + + 6124 + 2020SnoggletogStory02T03 + <Data><Offer><Type>Popup</Type><ID>940081</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait, wait. Hold it. +We need to talk about a few things before we get started.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940082</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We can help you get more in tune with your dragon, but if you're looking to harness a dragon to your war efforts, you can count us out. That's not what we believe in.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940083</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>How principled.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>905081</ID></Title></Data> + 0 + false + + + 6125 + 2020SnoggletogStory02T04 + <Data><Offer><Type>Popup</Type><ID>940084</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm serious, Stormheart. We'd be doing this to help the dragon, not you. If we think we're going to abuse this dragon, we put a stop to this right now.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940085</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Vikings! Please. There's no reason to get our hackles up on some... semantics.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940086</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>This dragon is in need of some tender care from the dragon masters of Berk. This dragon is proving more headstrong and difficult to train. We will treasure this dragon and care for her. Isn't that right, Stormheart?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940087</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I promise you that this dragon will receive the utmost care. My sister's notes were chaotic, and the dragon was difficult to create; I would not lose that investment.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title></Data> + 0 + false + + + 6126 + 2020SnoggletogStory02T05 + <Data><Offer><Type>Popup</Type><ID>940089</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>You ride your dragons into battle as well. What makes us so different?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940090</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We care for them as friends! They choose to defend us when we're in danger. We don't force them with venom or whips or anything of the sort.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>940091</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I will not force this dragon to do anything. Is that enough?</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><ID>940092</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>For now... +{{Name}}, let's find this dragon. +</Text><ItemID>0</ItemID><Priority>3</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_VernalPool</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Chimeragon</Text><ID>940088</ID></Title></Data> + 0 + false + + + 6127 + 2020SnoggletogStory02T06 + <Data><Offer><Type>Popup</Type><ID>940094</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let's see what we can do, {{Name}}. Can you get close and {{input}} on her?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940095</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh no! +Okay. Let's leave her alone for now; we have our work cut out for us.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_VernalPool</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>{{Input}} on the Chimeragon</Text><ID>940093</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206358 + true + 35 + 35 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 206358 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206358 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206358 + true + 50 + 50 + + 0 + +
+ false +
+ + 2989 + 2021 Summer03 + 3 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrp2021Summer03T00A.unity3d/PfGrp2021Summer03T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfGrp2021Summer03T00B.unity3d/PfGrp2021Summer03T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfGrp2021Summer03T00C.unity3d/PfGrp2021Summer03T00C</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_School</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrp2021Summer03T09.unity3d/PfGrp2021Summer03T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_SummerValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Interception</Text><ID>939943</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2988 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2989 + 6237 + 0 + + + 1 + 2989 + 6238 + 0 + + + 1 + 2989 + 6239 + 0 + + + 1 + 2989 + 6240 + 0 + + + 1 + 2989 + 6241 + 0 + + + 1 + 2989 + 6242 + 0 + + + 1 + 2989 + 6243 + 0 + + + 1 + 2989 + 6244 + 0 + + + 1 + 2989 + 6245 + 0 + + + 1 + 2989 + 6362 + 0 + + + 1 + 2989 + 6246 + 0 + + + 1 + 2989 + 6247 + 0 + + + 1 + 2989 + 6248 + 0 + + + 1 + 2989 + 6249 + 0 + + + 1 + 2989 + 6250 + 0 + + + 1 + 2989 + 6251 + 0 + + + 1 + 2989 + 6252 + 0 + + + 1 + 2989 + 6253 + 0 + + + + 1 + 206435 + 0 + + 6237 + 2021Summer03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>G’morning to ya, {{Name}}! Just the viking I wanted to see. There’s some kerfuffle happening by the school’s terror mail box, can ye go see what it’s about?</Text><ID>940383</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That’s Leopold, Harald’s Terrible Terror!</Text><ID>940384</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Mailbox</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check the mailbox "situation" at School</Text><ID>940382</ID></Title><Desc><Text>Check the mailbox "situation" at School</Text><ID>941348</ID></Desc></Data> + 0 + false + + + 6238 + 2021Summer03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Quick, grab that terror mail! </Text><ID>940386</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Pouncer, stay with us.</Text><ID>940387</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLeopoldMail</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLeopoldMail</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Leopold to intercept the mail</Text><ID>940385</ID></Title><Desc><Text>{{Input}} on Leopold to intercept the mail</Text><ID>941349</ID></Desc></Data> + 0 + false + + + 6239 + 2021Summer03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let’s take a look at what we’ve intercepted and see who that villain Harald is trying to talk to.</Text><ID>940389</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wait. This is a letter FOR Harald! He must be here somewhere if Leopold was delivering his mail here!</Text><ID>940390</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Show Astrid the mail</Text><ID>940388</ID></Title><Desc><Text>Show Astrid the mail</Text><ID>941350</ID></Desc></Data> + 0 + false + + + 6240 + 2021Summer03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Would you check for Harald by the docks here in the school?</Text><ID>940392</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HubLookoutExitDock</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald by the dock at the School</Text><ID>940391</ID></Title><Desc><Text>Look for Harald by the dock at the School</Text><ID>941351</ID></Desc></Data> + 0 + false + + + 6241 + 2021Summer03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nothing, huh?</Text><ID>940394</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Dagur</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald by the Trading post at the School</Text><ID>940393</ID></Title><Desc><Text>Look for Harald by the Trading post at the School</Text><ID>941352</ID></Desc></Data> + 0 + false + + + 6242 + 2021Summer03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let’s not give up the search quite yet.</Text><ID>940396</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>How frustrating! Harald must be around here close by. But we still have this mail. Unfortunately, I don’t see any message in it. Why send an empty letter?</Text><ID>940397</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup_03</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Harald near the Lab at the School</Text><ID>940395</ID></Title><Desc><Text>Look for Harald near the Lab at the School</Text><ID>941353</ID></Desc></Data> + 0 + false + + + 6243 + 2021Summer03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I’d like to take a look at this blank mail, would you bring it over to me?</Text><ID>940399</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBJungle.unity3d/PfUiMissionActionDBJungle</Asset><NPC>PfDWAlchemist</NPC><Text>We’ve seen this before: a message made with lemon juice ink. Lemon juice is more acidic than the parchment. The acid weakened the parchment where it dried. That part of the parchment turns brown before the rest of the parchment when it's exposed to heat.@@Just as I thought: there’s a secret message here. Just a moment…This is a request for Harald to come to a meeting between Stormheart… and Griselda the Grievous! </Text><ID>940400</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Show Heather the blank mail</Text><ID>940398</ID></Title><Desc><Text>Show Heather the blank mail</Text><ID>941354</ID></Desc></Data> + 0 + false + + + 6244 + 2021Summer03T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The meeting is today, at Auction Island. Will you ask Astrid what she’d like to do?</Text><ID>940402</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Griselda the Grievous: That’s one of the Warlords who worked with Grimmel! @@ There’s no time to waste: are you busy, {{Name}}? I want to hunt for Harald here, but I also don’t want to send you in alone against multiple foes.</Text><ID>940403</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check in with Astrid</Text><ID>940401</ID></Title><Desc><Text>Check in with Astrid</Text><ID>941355</ID></Desc></Data> + 0 + false + + + 6245 + 2021Summer03T09 + <Data><Offer><Type>Popup</Type><Asset>RS_DATA/PfUiMissionActionDBDeathsong.unity3d/PfUiMissionActionDBDeathsong</Asset><NPC>PfDWAlchemist</NPC><Text>I’ll go with {{Name}}, and we’ll keep it stealthy. {{Name}}, head over to Windshear when ready. We’ll fly together. I'll be with you quickly: I want to wear my rider gear for this. It's about time the Mysterious Dragon Rider returned to Auction Island!</Text><ID>940405</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Sounds like a plan.</Text><ID>940406</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SummerAuctionIsland</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>AuctionIslandVanaheim</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go with Windshear at the School to Auction Island</Text><ID>940404</ID></Title><Desc><Text>Go with Windshear at the School to Auction Island</Text><ID>941356</ID></Desc></Data> + 0 + false + + + 6246 + 2021Summer03T10 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWHeatherTeen</Asset><Location>PfMarker_SummerStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Let’s try to just stay out of sight. I’ve got your back, {{Name}}. {{Input}} on me and lead the way.</Text><ID>940408</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Pouncer must have followed us! Well, there’s no sending him back now, he’s safer with us.</Text><ID>940409</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer03T10CS.unity3d/PfGrp2021Summer03T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerTown</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeen</Value></Pair></Objective><Type>Escort</Type><Title><Text>Sneak into Auction Island town with Heather</Text><ID>940407</ID></Title><Desc><Text>Sneak into Auction Island town with Heather</Text><ID>941357</ID></Desc></Data> + 0 + false + + + 6247 + 2021Summer03T11 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWHeatherTeen</Asset><Location>PfMarker_SummerTown</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWNightlightWhiteNPC</Asset><Location>PfMarker_SummerPouncer1</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Stay close, Pouncer. Lead on, {{Name}}.</Text><ID>940411</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Welcome, Griselda. I have seen your ships closing on Impossible Island. I will make this simple: you will stay away from my Luminous Krayfin, or you will find you have made a rather costly mistake.</Text><ID>940412</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>We don’t care about your precious water dragon, so long as it stays out of the way. Is this how you discuss terms: to immediately threaten me?</Text><ID>940413</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer03T11ACS.unity3d/PfGrp2021Summer03T11ACS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Just a moment, Griselda: I see someone else to threaten. @@ Welcome, {{Name}}. </Text><ID>940414</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>Stormheart! What are Berkians doing here?!</Text><ID>940415</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Getting captured, it seems.@@ Bring them to me. </Text><ID>940416</ID><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerThrone</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeatherTeen</Value></Pair></Objective><Type>Escort</Type><Title><Text>Sneak close to hear the conversation at Auction Island</Text><ID>940410</ID></Title><Desc><Text>Sneak close to hear the conversation at Auction Island</Text><ID>941358</ID></Desc></Data> + 0 + false + + + 6248 + 2021Summer03T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Abort mission! Let’s get out of here! @@ Run, Pouncer!</Text><ID>940418</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer03T11BCS.unity3d/PfGrp2021Summer03T11BCS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Do your best to delay them; Cloudjumper and I are on the way to get you out of there!</Text><ID>940419</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer03T12CS.unity3d/PfGrp2021Summer03T12CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerHidingSpot</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Run to a hiding spot on Auction Island</Text><ID>940417</ID></Title><Desc><Text>Run to a hiding spot on Auction Island</Text><ID>941359</ID></Desc></Data> + 0 + false + + + 6249 + 2021Summer03T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Pouncer seems very upset from the trip: will you please gently check on him?</Text><ID>940421</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Poor boy, he seems very dejected. You did your best, young one.</Text><ID>940422</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Valka, did you see him attempt to blind the enemies to help?</Text><ID>940423</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWPouncer</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWPouncer</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check on Pouncer</Text><ID>940420</ID></Title><Desc><Text>Check on Pouncer</Text><ID>941360</ID></Desc></Data> + 0 + false + + + 6250 + 2021Summer03T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Our little hero. That gives me an idea to lift his spirits. There’s someone I think Pouncer should meet. {{Name}}, will you meet me at Titan Island?</Text><ID>940425</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Hop onto my ship if you want a ride, I'm headed that way.</Text><ID>940426</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I'm glad you made it out safely, {{Name}}! Is Pouncer there near you?</Text><ID>940427</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfEretsBoat_Summer</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to Titan Island</Text><ID>940424</ID></Title><Desc><Text>Head to Titan Island</Text><ID>941361</ID></Desc></Data> + 0 + false + + + 6251 + 2021Summer03T15 + <Data><Setup><Scene>TitanIslandDO</Scene><Asset>PfDWNightlightWhiteNPC</Asset><Location>PfMarker_SummerPouncer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Please bring Pouncer over to me. {{Input}} on him when ready.</Text><ID>940429</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBJungle</Asset><NPC>PfDWValka</NPC><Text>This is the Luminous Krayfin, ‘Lumie.’ I'm sure you remember him from Impossible Island!@@Heather said that Stormheart and the warlord mentioned him: I’m glad to see he is safe here. I do not think they will seek him here, but this strange place must be lonely for him.</Text><ID>940430</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerKrayfinWater</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>12</Value></Pair><Pair><Key>Proximity</Key><Value>12</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightlightWhiteNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Bring Pouncer to Valka</Text><ID>940428</ID></Title><Desc><Text>Bring Pouncer to Valka</Text><ID>941362</ID></Desc></Data> + 0 + false + + + 6252 + 2021Summer03T16 + <Data><Setup><Scene>TitanIslandDO</Scene><Asset>PfDWNightlightWhiteNPC</Asset><Location>PfMarker_SummerKrayfin</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let’s show Pouncer that the Krayfin is not to be feared. Please give him a pat.</Text><ID>940432</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>By Thor, look at that flashy display!</Text><ID>940433</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer03T16CS.unity3d/PfGrp2021Summer03T16CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfin</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfin</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Greet the Krayfin</Text><ID>940431</ID></Title><Desc><Text>Greet the Krayfin</Text><ID>941363</ID></Desc></Data> + 0 + false + + + 6253 + 2021Summer03T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Give Pouncer a bit of encouragement!</Text><ID>940435</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>They are bonding! Luminous Krayfin are well known for creating powerful and blinding flashes. My hope is that Pouncer may learn and develop his new skill further, while also being a friend to our lonely Krayfin. @@It seems each of the Night Lights are starting to discover themselves: what a wonderful event to witness!</Text><ID>940436</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer03T17CS.unity3d/PfGrp2021Summer03T17CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_KrayfinPreBond</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightlightWhiteNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Encourage Pouncer</Text><ID>940434</ID></Title><Desc><Text>Encourage Pouncer</Text><ID>941364</ID></Desc></Data> + 0 + false + + + 6362 + 2021Summer03T09_5 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeatherTeen</NPC><Text>Hey, it's me, Heather: aka the Rogue Dragon Rider. I’ve also brought some smoke bombs if we need a quick escape, but I hope we won’t have to use them.</Text><ID>940437</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SummerAuctionIsland</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go with Windshear at the School to Auction Island</Text><ID>940404</ID></Title><Desc><Text>Go with Windshear at the School to Auction Island</Text><ID>941356</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206435 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 206435 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 206435 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 206435 + true + 350 + 350 + + 0 + +
+ false +
+ + 3037 + SnoggletogMaze 2021 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Snoggletog Maze Coin Completion</Text><ID>940014</ID></Title></Data> + false + 0 + + + 5 + 01-01-2021 12:00:00 AM,01-18-2022 08:00:00 AM + 0 + false + + + 3 + 3036 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3037 + 6502 + 0 + + + + 1 + 206601 + 0 + + 6502 + SnoggletogMaze02T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSnoggletogChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Chest</Text><ID>928856</ID></Title></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 206601 + true + 25 + 25 + + 0 + + + false +
+ + 3074 + New Farming 264 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3074 + 7638 + 0 + + + + 1 + 207687 + 0 + + 7638 + Owl Feathers, Elk Antlers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers, Elk Antlers</Text><ID>942185</ID></Title><Desc><Text>Tuffnut keeps talking about some terrifying creature and that he can prove its existence with these items...</Text><ID>942186</ID></Desc></Data> + 0 + false + + + 80 +

9

+ 0 + + 1 + 641 + 207687 + true + 80 + 80 + + 0 + + + + 1045 +

2

+ 0 + + 1 + 9963 + 207687 + true + 1045 + 1045 + + 0 + +
+ false +
+ + 3108 + Snoggletog2022Story01 + 61 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog01T00.unity3d/PfGrp2022Snoggletog01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog01T00B.unity3d/PfGrp2022Snoggletog01T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Tip of the Iceberg [2022]</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20908 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3108 + 7768 + 0 + + + 2 + 3108 + 3109 + 0 + + + 1 + 3108 + 7770 + 0 + + + 1 + 3108 + 7771 + 0 + + + 1 + 3108 + 7772 + 0 + + + 1 + 3108 + 7773 + 0 + + + 1 + 3108 + 7774 + 0 + + + 1 + 3108 + 7775 + 0 + + + 1 + 3108 + 7779 + 0 + + + 1 + 3108 + 7780 + 0 + + + 1 + 3108 + 7781 + 0 + + + + 1 + 207783 + 207782 + + 3109 + Snoggletog2022Story01T02 + 61 +

3108

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3109 + 7769 + 0 + + + + 1 + 207771 + 0 + + 7769 + Snoggletog2022Story01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}} and Fishlegs!@@Apologies my friends, but I simply couldn’t wait a moment longer! I’ve left you both some thermals in that nearby chest. Don the winter wear, meet me inside, and I shall explain everything!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectNote</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Read the Note Skulder left for you </Text></Title><Desc><Text>Read the Note Skulder left for you </Text></Desc></Data> + 0 + false + + + 1 +

6

+ 11665 + + 1 + 10440 + 207771 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 11667 + + 1 + 10441 + 207771 + true + 1 + 1 + + 0 + +
+ false + + + 7768 + Snoggletog2022Story01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Merry Snoggletog {{Name}}!@@Skulder and I are celebrating the season a little differently this year.... He suspects we may have missed something at the Icestorm Island Ruins and asked you to join us. See you there!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Skulder at Icestorm Island</Text></Title><Desc><Text>Meet Skulder at Icestorm Island</Text></Desc></Data> + 0 + false + + + 7770 + Snoggletog2022Story01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hey there {{Name}} we are all ready to explore! Oh, Skulder left us Heavy Winter Clothing? How thoughtful, we’ll need it for the ruins!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Don’t worry, our dragons won’t need any clothing. They have their fire to keep them warm!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>EquipItem</Value></Pair><Pair><Key>ItemName</Key><Value>Ice Cave Thermal Coat</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Equip the Thermal Coats</Text></Title><Desc><Text>Equip the Thermal Coats</Text></Desc></Data> + 0 + false + + + 7771 + Snoggletog2022Story01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Now, let’s go find Skulder!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There you two are!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Skulder Inside</Text></Title><Desc><Text>Meet Skulder Inside</Text></Desc></Data> + 0 + false + + + 7772 + Snoggletog2022Story01T05 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Skulder</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFishmeat</Asset><Location>PfMarker_FishMeat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBSnoggletogIcestorm</Asset><NPC>PfDWArchaeologist</NPC><Text>Excellent timing! I found what I believe might just be... a new entrance to a hidden chamber - right this way!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBSnoggletogIcestorm</Asset><NPC>PfDWArchaeologist</NPC><Text>After stumbling upon a traveling merchant peddling ancient scrolls from bygone civilizations, I realized one of his tomes referenced Icestorm Island.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBSnoggletogIcestorm</Asset><NPC>PfDWArchaeologist</NPC><Text>Despite its poor condition, I deciphered mentions of a “Caverns of Endless Winter” supposedly deep below the village. Which means we must have missed a passage underneath the ruins!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SkulderEnd</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Spline</Key><Value>Spline_Move</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Skulder </Text></Title><Desc><Text>Follow Skulder</Text></Desc><Reminder><Text>Make sure to stay near Skulder</Text></Reminder><Failure><Text>Make sure to follow Skulder</Text></Failure></Data> + 0 + false + + + 7773 + Snoggletog2022Story01T06 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog01T06.unity3d/PfGrp2022Snoggletog01T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I believe the entrance to this hidden chamber is right here! It appears to be a man-made cavern... but the entrance has been frozen solid. I bet a well-aimed blast would melt away that ice!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That did it! We should be able to squeeze through now. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog01T06CS.unity3d/PfGrp2022Snoggletog01T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfCavernEntrance</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Blast Open the Entrance</Text></Title><Desc><Text>Blast Open the Entrance</Text></Desc></Data> + 0 + false + + + 7774 + Snoggletog2022Story01T07 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFishmeat</Asset><Location>PfMarker_FishMeat00</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Fishmeat certainly seems excited about our discovery! Quick, let’s follow him!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Did you see that? What kind of dragon was that? How long has it been trapped down in this cavern? How has it been surviving? I have so many questions! </Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog01T07CS.unity3d/PfGrp2022Snoggletog01T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWFishmeat</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Catch Fishmeat</Text></Title><Desc><Text>Catch Fishmeat</Text></Desc></Data> + 0 + false + + + 7775 + Snoggletog2022Story01T08 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Fishlegs01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFishmeat</Asset><Location>PfMarker_FishMeat01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Skulder01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We may be the very first Vikings this dragon has ever seen. Best to approach slowly so not to scare them off.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWFrostmareBaby</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the New Dragon</Text></Title><Desc><Text>Approach the New Dragon</Text></Desc></Data> + 0 + false + + + 7779 + Snoggletog2022Story01T09 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog01T09.unity3d/PfGrp2022Snoggletog01T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no, the little guy still seems frightened. He must have been surviving around here on something. Maybe we can find something to offer him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Great idea {{Name}}! From the look of that hatchling, they are probably a Groncicle hybrid, which means it’s likely they eat snow. </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWSnowPile</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find Something to Offer the New Dragon</Text></Title><Desc><Text>Find Something to Offer the New Dragon</Text></Desc></Data> + 0 + false + + + 7780 + Snoggletog2022Story01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Offer him some of that snow you gathered to show him we are friendly!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Look at that {{Name}}! Our new friend sure seemed happy to munch up that snow. Great job befriending the little guy! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFrostmareBaby</Value></Pair><Pair><Key>ItemID</Key><Value>11143</Value></Pair><Pair><Key>ItemDescription</Key><Value>Snow Pile</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Offer the Frostmare some Snow</Text></Title><Desc><Text>Offer the Frostmare some Snow</Text></Desc></Data> + 0 + false + + + 7781 + Snoggletog2022Story01T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Skulder and {{Name}}, will you join me over here?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, Skulder, I hate to cut our expedition short, but I think we need to take this hatchling back to Berk. Who knows how long it’s been trapped down there without anyone to care for it?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I suppose I can temper my curiosity for a bit longer. Best we make sure the little fellow is taken care of. Besides, I’m sure Hiccup will want to hear all about this discovery!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Fishlegs</Text></Title><Desc><Text>Speak with Fishlegs</Text></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 207783 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 207783 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207783 + true + 50 + 50 + + 0 + +
+ + 150 +

6

+ 20630 + + 1 + 10445 + 207783 + true + 150 + 150 + + 0 + +
+ false +
+ + 3127 + New Farming 281 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3127 + 7857 + 0 + + + + 1 + 207822 + 0 + + 7857 + Lily of the Valley + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley</Text></Title><Desc><Text>Phlegma needs help gathering some Lily of the Valley for an upcoming class</Text></Desc></Data> + 0 + false + + + 78 +

2

+ 0 + + 1 + 1380 + 207822 + true + 78 + 78 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 207822 + true + 3 + 3 + + 0 + +
+ false +
+ + 2675 + New Farming 251 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 251</Text><ID>935421</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2675 + 4255 + 0 + + + + 1 + 205489 + 0 + + 4255 + Elk Antlers + <Data><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elk Antlers</Text><ID>935517</ID></Title><Desc><Text>There was a raucous fight at the Great Hall. We need repairs.</Text><ID>935500</ID></Desc></Data> + 0 + false + + + 260 +

2

+ 0 + + 1 + 819 + 205489 + true + 260 + 260 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205489 + true + 84 + 84 + + 0 + +
+ false +
+ + 2676 + New Farming 252 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 252</Text><ID>935422</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2676 + 4256 + 0 + + + + 1 + 205490 + 0 + + 4256 + Antlers, Carrots + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8577</Value></Pair><Pair><Key>ItemDescription</Key><Value>Carrot</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers, Carrots</Text><ID>935501</ID></Title><Desc><Text>How could we possibly hold a snowman competition without the ornaments?</Text><ID>935502</ID></Desc></Data> + 0 + false + + + 700 +

2

+ 0 + + 1 + 534 + 205490 + true + 700 + 700 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205490 + true + 84 + 84 + + 0 + +
+ false +
+ + 2677 + New Farming 253 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 253</Text><ID>935423</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2677 + 4257 + 0 + + + + 1 + 205491 + 0 + + 4257 + Antlers, Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elk Antlers, White Wool</Text><ID>935503</ID></Title><Desc><Text>Tuffnut wants to create an elaborate costume. Good gods. What is he planning?</Text><ID>935504</ID></Desc></Data> + 0 + false + + + 960 +

2

+ 0 + + 1 + 5740 + 205491 + true + 960 + 960 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205491 + true + 84 + 84 + + 0 + +
+ false +
+ + 2678 + New Farming 254 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 254</Text><ID>935424</ID></Title></Data> + false + 0 + + + 4 + 9,18 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2678 + 4258 + 0 + + + + 1 + 205492 + 0 + + 4258 + Antlers, Arctic Willow + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11167</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Willow</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers, Arctic Willow</Text><ID>935505</ID></Title><Desc><Text>A winter get-together? That sounds wonderful!</Text><ID>935506</ID></Desc></Data> + 0 + false + + + 1350 +

2

+ 0 + + 1 + 5741 + 205492 + true + 1350 + 1350 + + 0 + + + + 136 +

9

+ 0 + + 1 + 5754 + 205492 + true + 136 + 136 + + 0 + +
+ false +
+ + 2679 + New Farming 255 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 255</Text><ID>935425</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2679 + 4259 + 0 + + + + 1 + 205493 + 0 + + 4259 + Antlers, Dragon Nip, Salmon + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8032</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Nip</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7144</Value></Pair><Pair><Key>ItemDescription</Key><Value>Salmon</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers, Dragon Nip, Salmon</Text><ID>935507</ID></Title><Desc><Text>Listen. I love dragon costumes as much as the next Viking, but shouldn't we be thinking this through?</Text><ID>935508</ID></Desc></Data> + 0 + false + + + 1600 +

2

+ 0 + + 1 + 5742 + 205493 + true + 1600 + 1600 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205493 + true + 84 + 84 + + 0 + +
+ false +
+ + 2680 + New Farming 256 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 256</Text><ID>935426</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2680 + 4260 + 0 + + + + 1 + 205494 + 0 + + 4260 + Antlers, Beans, Perch + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>21</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9545</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Beans</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7143</Value></Pair><Pair><Key>ItemDescription</Key><Value>Perch</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers, Beans, Perch</Text><ID>935509</ID></Title><Desc><Text>Overhyper dragon babies alert! We need chew toys and food, stat!</Text><ID>935510</ID></Desc></Data> + 0 + false + + + 2250 +

2

+ 0 + + 1 + 5743 + 205494 + true + 2250 + 2250 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205494 + true + 84 + 84 + + 0 + +
+ false +
+ + 2681 + New Farming 257 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 257</Text><ID>935427</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2681 + 4261 + 0 + + + + 1 + 205495 + 0 + + 4261 + Antlers, Pumpkins, Bunny Fur + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8215</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pumpkin</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8895</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bunny Fur</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers, Pumpkins, Bunny Fur</Text><ID>935511</ID></Title><Desc><Text>We should prepare an attractive trade offer together for the next gathering of the tribes.</Text><ID>935512</ID></Desc></Data> + 0 + false + + + 2850 +

2

+ 0 + + 1 + 5744 + 205495 + true + 2850 + 2850 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205495 + true + 84 + 84 + + 0 + +
+ false +
+ + 2682 + New Farming 258 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 258</Text><ID>935428</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2682 + 4262 + 0 + + + + 1 + 205496 + 0 + + 4262 + Antlers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers</Text><ID>935515</ID></Title><Desc><Text>Wingmaidens said they were experimenting with a new type of bow. How interesting!</Text><ID>935514</ID></Desc></Data> + 0 + false + + + 2500 +

2

+ 0 + + 1 + 1613 + 205496 + true + 2500 + 2500 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205496 + true + 84 + 84 + + 0 + +
+ false +
+ + 2683 + New Farming 259 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>New Farming 259</Text><ID>935429</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2683 + 4263 + 0 + + + + 1 + 205497 + 0 + + 4263 + Antlers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Antlers</Text><ID>935515</ID></Title><Desc><Text>Gobber requested a new batch of antlers. 'Trophies don't come from nowhere!' he told me.</Text><ID>935516</ID></Desc></Data> + 0 + false + + + 80 +

9

+ 0 + + 1 + 641 + 205497 + true + 80 + 80 + + 0 + + + + 2288 +

2

+ 0 + + 1 + 9971 + 205497 + true + 2288 + 2288 + + 0 + +
+ false +
+ + 2684 + New Farming 260 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>New Farming 260</Text><ID>935430</ID></Title></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2684 + 4264 + 0 + + + + 1 + 205498 + 0 + + 4264 + Antlers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Elk Antlers</Text><ID>935517</ID></Title><Desc><Text>The Berserkers have asked for a shipment of antlers, no questions asked. But you have to wonder...</Text><ID>935518</ID></Desc></Data> + 0 + false + + + 4250 +

2

+ 0 + + 1 + 5746 + 205498 + true + 4250 + 4250 + + 0 + + + + 84 +

9

+ 0 + + 1 + 5753 + 205498 + true + 84 + 84 + + 0 + +
+ false +
+ + 2685 + SnoggletogMaze 2018 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Snoggletog Maze T01</Text><ID>935432</ID></Title></Data> + false + 0 + + + 5 + 11-1-2018,3-1-2019 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2685 + 4265 + 0 + + + + 1 + 205502 + 0 + + 4265 + SnoggletogMaze 2018 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Finish the maze</Text><ID>935548</ID></Title><Desc><Text>Finish the maze.</Text><ID>936080</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 15795 + + 1 + 5752 + 205502 + true + 1 + 1 + + 0 + + + false +
+ + 2686 + SnoggletogMaze 2018 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Snoggletog Maze 2018 T02</Text><ID>935433</ID></Title></Data> + false + 0 + + + 5 + 11-1-2018,3-1-2019 + 0 + false + + + 3 + 2685 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2686 + 4266 + 0 + + + + 1 + 205503 + 0 + + 4266 + SnoggletogMaze 2018 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Finish the maze</Text><ID>935548</ID></Title><Desc><Text>Finish the maze.</Text><ID>936080</ID></Desc></Data> + 0 + false + + + 5 +

6

+ 13711 + + 1 + 5751 + 205503 + true + 5 + 5 + + 0 + + + false +
+ + 2687 + SnoggletogMaze 2018 T03 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Snoggletog 2019 Bonus</Text><ID>935434</ID></Title></Data> + false + 0 + + + 5 + 11-1-2018,3-1-2019 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2687 + 4267 + 0 + + + + 1 + 205504 + 0 + + 4267 + SnoggletogMaze 2018 T03 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>BonusSnoggletogReward</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Bonus Bonus catch!</Text><ID>935550</ID></Title><Desc><Text>Find all the things.</Text><ID>935551</ID></Desc></Data> + 0 + false + + + 15 +

5

+ 0 + + 1 + 1420 + 205504 + true + 15 + 15 + + 0 + + + false +
+ + 2688 + Snoggletog 2018 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQ2018Snoggletog.unity3d/PfGrpQ2018Snoggletog</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_BerkFarmExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Festive (and Competitive) Spirit</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 20896 + 1 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2688 + 4268 + 0 + + + 1 + 2688 + 4269 + 0 + + + 1 + 2688 + 4270 + 0 + + + 1 + 2688 + 4271 + 0 + + + 1 + 2688 + 4272 + 0 + + + 1 + 2688 + 4273 + 0 + + + 1 + 2688 + 4274 + 0 + + + + 1 + 205505 + 0 + + 4268 + Snoggletog2018T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Finally! I've been waiting for this, the redemption arc, all year long! I know, I know. Everyone says this time of the year is for 'festive cheer' and 'togetherness' but that's not so for Snotlout.@@It's all about winning! Last year, everyone got together for a few matches of Dragon Tactics... without. Me. This won't do!@@Talk to Fishlegs and make sure I'm not left out this time, yeah?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'll... believe him, but that's not how I remember the events of last year. I was really sad because I felt like we were all rushing about without appreciating the holidays.@@Then you and Astrid and everyone got together to celebrate as one whole village and made it the best Snoggletog ever.@@Thank you so much for helping out, too. You really brightened my day.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text></Desc></Data> + 0 + false + + + 4269 + Snoggletog2018T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>To be clear: I'm not calling Snotlout a liar here! [i]He tells enough lies on his own without me embellishing on him.[/i] I just don't remember anything like that.@@The person you should really be asking is Astrid! I'm sure she has detailed notes on every dragon drill and tactics test she's ever made us do. She can tell you what Snotlout is muttering about.@@She was setting up the arena towards Sven's farm for future matches.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>How could I forget? Those exercises are seared into my brain, and Stormfly really loved taking part in them.@@I think it was the perfect way to ring in the holidays: much better received than my infamous Yaknog, at least.@@I don't know why; Hiccup even begged me to stop making them after the third year!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text></Desc></Data> + 0 + false + + + 4270 + Snoggletog2018T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oops! I got a little off-topic there, didn't I? I guess I'm still a little obsessed with my innovative recipe. Let's see...@@Last year, we set up a few sparring partners with Hiccup's contraptions within it to give us a little challenge.@@Then we cheered Fishlegs up and rounded it off with a series of fun fighting exercises.@@So Snotlout wants to be a part of it this time, hm? I bet I could whip something together if he wants.@@Stormfly, do you think you'd want to stretch your wings and practice your spine attacks?@@{{Name}}, you should {{input}} on her head and give her a few strokes along the side of her face. You can talk her into anything if you do that.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWStormfly</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWStormfly</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Stormfly</Text><ID>930981</ID></Title><Desc><Text>{{Input}} on Stormfly</Text></Desc></Data> + 0 + false + + + 4271 + Snoggletog2018T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I guess Stormfly gave us the answer, huh? As you wish, my lady. Let's go into the Dragon Tactics hut and get a little warmed up!</Text><ID>935532</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Whoo! There's nothing quite like practicing a pincer maneuver to raise a good workout.</Text><ID>935533</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STSnoggletog1MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Enter the Dragon Tactics Battle</Text><ID>935538</ID></Title><Desc><Text>Enter the Dragon Tactics Battle</Text></Desc></Data> + 0 + false + + + 4272 + Snoggletog2018T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That was so fun. I'll reset the arena and get the place ready for Snotlout.@@Can you let him know that we'll be ready for his grand entrance when he makes his way over here?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>All right! Now I'm ready for my grand entrance. Hookfang and I will break through all the records you weaklings have set in the arena!</Text><ID>935537</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text></Desc></Data> + 0 + false + + + 4273 + Snoggletog2018T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>[i]No records? What do you mean, no records? Why would you even do Dragon Tactics if you aren't trying to get the highest score?[/i]@@Well, it'll still be worth the effort. Let's go do some Dragon Tactics. SNOTLOUT SNOTLOUT! OI OI OI!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Got'em! What a rush!@@I knew Astrid wouldn't set this up for a guy like me, so I used you to get me a shot at the spotlight. Thanks, {{Name}}. This was the perfect way to spend Snoggletog!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_STPortal</Value></Pair><Pair><Key>Name</Key><Value>STSnoggletog2MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Enter the Dragon Tactics battle</Text><ID>935538</ID></Title><Desc><Text>Enter the Dragon Tactics battle</Text></Desc></Data> + 0 + false + + + 4274 + Snoggletog2018T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>All right, Snotlout! We'll have to get everyone involved in the fun, now that we have the arena set up.@@Can you talk to Hiccup and see if he wants to take a turn at Dragon Tactics?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey! I'm really happy to see everyone having fun and working together. That's really the spirit of Snoggletog, you know: being together.@@I still have a few problems that need to be handled right away, but I'm sure I'll join you at Dragon Tactics soon enough! I'm sure Astrid has a few more scenarios that will challenge you. Have fun!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 205505 + true + 100 + 100 + + 0 + + + + 300 +

1

+ 0 + + 1 + 318 + 205505 + true + 300 + 300 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205505 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205505 + true + 50 + 50 + + 0 + +
+ false +
+ + 2689 + HiddenWorld01 + 61 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld01T00.unity3d/PfGrpHiddenWorld01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Hidden World!</Text><ID>935419</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2689 + 4275 + 0 + + + 1 + 2689 + 4276 + 0 + + + 1 + 2689 + 4277 + 0 + + + 1 + 2689 + 4278 + 0 + + + 1 + 2689 + 4279 + 0 + + + 1 + 2689 + 4430 + 0 + + + + 1 + 205506 + 0 + + 4275 + HiddenWorld01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>The Dragon Riders are looking for anyone to help aid them in surveying the extent of the damage that’s been dealt to the buildings.@@For more details, locate Astrid near the School!</Text><ID>935437</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I can't believe Stormheart's forces were able to sneak into the school. +I should have stopped this. This is my fault.</Text><ID>935438</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid about the chasm</Text><ID>935435</ID></Title><Desc><Text>Talk to Astrid about the chasm</Text><ID>935435</ID></Desc></Data> + 0 + false + + + 4276 + HiddenWorld01T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've sent word to our chief, but he's busy right now trying to find a path to a new home away from Berk. I want to have all the facts ready by the time he arrives. I'm going to rely on you, {{Name}}! Can you talk to Heather and find out what she knows?</Text><ID>935441</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I think that the cavern must have been hidden under the lake the whole time, and Harald's device just managed to crack open the entrance. Still, it's incredible that a manmade device was able to do so much damage to our home.@@The fact is that humans are able to change the world around us to suit our needs. Through farming, we Vikings change the Earth's geosphere. Through irrigation, we change the Earth's hydrosphere. Likewise, we change the atmosphere (the air itself) and the biosphere of the world through deforestation and overfishing.@@Harald's explosion was an... extreme example of altering our environment.</Text><ID>935442</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 4277 + HiddenWorld01T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWSnotlout</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>As the environment shifts, the ecosystem around the area must also change or perish. Organisms can flee to more hospitable locations or adapt over time to the changes.@@Snotlout has been investigating the cavern to find anything about the space below us. Will you please find him and talk to him? Maybe he's learned something new.</Text><ID>935445</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It's weird. Listen. I've seen one or two or fifty explosions in my day, as would anyone living near the Thorston twins. I've never seen an explosion leave such a giant hole.</Text><ID>935446</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4278 + HiddenWorld01T04 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid_03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>If I had to guess, Harald's device must have shattered the ceiling of the cavern. With all that space below us, the lake water probably just drained down. I bet if we go down there, we're going to find a whole host of crazy monsters. And we were all so clueless of the danger just below us! We're doomed, I tell you.@@Astrid won't listen to my sage advice. Can you find her and talk some sense into that thick head?</Text><ID>935449</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's... wow. +She's beautiful.</Text><ID>935450</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld01T04CS.unity3d/PfGrpHiddenWorld01T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Astrid_03</Value></Pair><Pair><Key>Name</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid near the chasm</Text><ID>935447</ID></Title><Desc><Text>Find Astrid near the chasm</Text><ID>935447</ID></Desc></Data> + 0 + false + + + 4279 + HiddenWorld01T05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid_03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is the Light Fury that Hiccup, Toothless and I met earlier. She was skittish around us then. I wonder if being with Toothless calmed her down.@@Can you see if you can get closer to her without her bolting? You'll need to hop on your grown dragon to fly closer.</Text><ID>935453</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_LightFury_Upper</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LightFury_Upper</Value></Pair><Pair><Key>Range</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get closer to the Light Fury</Text><ID>935570</ID></Title><Desc><Text>Get closer to the Light Fury</Text><ID>935570</ID></Desc></Data> + 0 + false + + + 4430 + HiddenWorld01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oof! Are you all right? </Text><ID>936651</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's take this slow. I don't think she wants us to enter that cave, so let's think of something else. +The real question is: why doesn't she want us down there?</Text><ID>936652</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 205506 + true + 100 + 100 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205506 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205506 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205506 + true + 200 + 200 + + 0 + +
+ false +
+ + 2690 + HiddenWorld02 + 11 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T00.unity3d/PfGrpHiddenWorld02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T08.unity3d/PfGrpHiddenWorld02T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Problem With Warlords</Text><ID>935420</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2689 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2690 + 4280 + 0 + + + 1 + 2690 + 4281 + 0 + + + 1 + 2690 + 4282 + 0 + + + 1 + 2690 + 4283 + 0 + + + 1 + 2690 + 4284 + 0 + + + 1 + 2690 + 4285 + 0 + + + 1 + 2690 + 4286 + 0 + + + 1 + 2690 + 4287 + 0 + + + 1 + 2690 + 4288 + 0 + + + 1 + 2690 + 4289 + 0 + + + 1 + 2690 + 4290 + 0 + + + 1 + 2690 + 4291 + 0 + + + 1 + 2690 + 4292 + 0 + + + + 1 + 205507 + 0 + + 4280 + HiddenWorld02T01 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T01.unity3d/PfGrpHiddenWorld02T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Toothless and Hiccup are the best option here for solving this riddle. She may not like Hiccup, but I saw how Toothless acted around her. They were making eyes at each other like a pair of teenagers!@@Hiccup is busy with the relocation efforts to New Berk, but I think I can drag him away for something this important. While I handle that, can you meet with our allies Dagur and Mala on Impossible Island? We need to make sure that they know that they might be in danger.</Text><ID>935457</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Impossible Island</Text><ID>929417</ID></Title><Desc><Text>Go to Impossible Island</Text><ID>929417</ID></Desc></Data> + 0 + false + + + 4281 + HiddenWorld02T02 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T01.unity3d/PfGrpHiddenWorld02T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Mala has been a frequent visitor to this island after she discovered the buildings of her ancestors here. She should be docked in one of the island's bays.</Text><ID>935460</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Oh! I didn't expect any reinforcements for hours at the earliest. You came at the perfect time to fight the warlords, {{Name}}. We were about to head out without you.</Text><ID>935461</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala</Text><ID>933578</ID></Title><Desc><Text>Talk to Mala</Text><ID>928347</ID></Desc></Data> + 0 + false + + + 4282 + HiddenWorld02T03 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T01.unity3d/PfGrpHiddenWorld02T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>We can save ships from certain death if we head out now. Dagur can fill you in while we finish prepping the boat.</Text><ID>935464</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Your expression says that Mala didn't give you much information. Typical lovely Mala, ha ha! It's what I love so much about her. She's very action oriented; she doesn't hesitate to jump into danger when lives are on the line.</Text><ID>935465</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur</Text><ID>929084</ID></Desc></Data> + 0 + false + + + 4283 + HiddenWorld02T04 + <Data><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_Mala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_Dagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubCenoteDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T01.unity3d/PfGrpHiddenWorld02T01</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I heard that the famed hunter Grimmel paid you all a visit on Berk. Well, he's not alone. He's now allied with a group of warlords who are dead set on destroying Berk and enslaving her dragons. They haven't started any fights with us yet. But don't worry: we're your allies through and through!@@The Defenders of the Wing spotted a few refugees ships being chased by those dastardly warlords, and we need to rescue them right away. {{Input}} on the steering wheel next to me and we'll go there right away!</Text><ID>935468</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Whoo! We're here barely in the nick of time.</Text><ID>935658</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubCenoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SteeringWheel</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSteeringWheel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the steering wheel next to Dagur</Text><ID>935466</ID></Title><Desc><Text>{{Input}} on the steering wheel next to Dagur</Text><ID>935466</ID></Desc></Data> + 0 + false + + + 4284 + HiddenWorld02T05 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>You and {{dragon name}} will be able to get to them much quicker than us. Can you get over to the refugee ship and protect them from the warlords' men? We'll be right behind you!</Text><ID>935471</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRefugee</NPC><Text>Oh! Thank goodness! You're a dragon rider of Berk, right? I know that you'll be able to help. When the warlords arrived at our doorstep, we tried to flee to stay away from the danger... but there were more ships waiting for us.</Text><ID>935472</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RefugeeBoatStart</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly over to the refugees</Text><ID>935469</ID></Title><Desc><Text>Fly over to the refugees</Text><ID>935469</ID></Desc></Data> + 0 + false + + + 4285 + HiddenWorld02T06 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld02T06.unity3d/PfGrpHiddenWorld02T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Have no fear, fair villager, because Dagur and his trusty ally are here to dispense justice and take names! I think I'll take the name of that Viking over there on the right. He seems like my favorite type of punching bag.@@Let's take the fight over to them, friend {{Name}}. We'll land right on their ship and kick their butts!</Text><ID>935475</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ah hah! That'll teach them to prey on helpless villagers.</Text><ID>935476</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HiddenWorldDT</Value></Pair><Pair><Key>Name</Key><Value>STHiddenWorld01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the warlords' men in Dragon Tactics</Text><ID>935473</ID></Title><Desc><Text>Defeat the Dragon Tactics battle</Text><ID>933766</ID></Desc></Data> + 0 + false + + + 4286 + HiddenWorld02T07 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>PfRefugeeBoat</Asset><Location>PfMarker_RefugeeBoatStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>PfBerserkerShip</Asset><Location>PfMarker_BerserkerBoat</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Sleuther and I are going to fly over to the rest of the enemy ships and fly interference for you. We'll draw their fire and keep them occupied while you get these brave Vikings to a safe location. Sounds good?@@So, {{input}} on the boat and lead them away from the fighting to my beautiful wife Mala! Good luck!</Text><ID>935478</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRefugee</NPC><Text>Thank you! Gods, thank you so much!</Text><ID>935479</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RefugeeBoatEnd</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>12</Value></Pair><Pair><Key>Proximity</Key><Value>30</Value></Pair><Pair><Key>NPC</Key><Value>PfRefugeeBoat</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the refugee ship and lead it to safety</Text><ID>935477</ID></Title><Desc><Text>Lead the ships away from the fighting and take them to Mala</Text><ID>941740</ID></Desc><Reminder><Text>Don't leave the ships behind!</Text><ID>936276</ID></Reminder><Failure><Text>Oh no! The ships were left behind.</Text><ID>936277</ID></Failure></Data> + 0 + false + + + 4287 + HiddenWorld02T08 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>That dear husband of mine seems to be having way too much fun over there. I'll have to sail that direction and give him some backup.@@Thank you for your aid. The Defenders of the Wing will keep an eye out on the movements of these warlords and let you know if they pose any concern. You can return to your School, knowing that we have your back.</Text><ID>935482</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to the School</Text><ID>923254</ID></Title><Desc><Text>Go back to the School</Text><ID>935480</ID></Desc></Data> + 0 + false + + + 4288 + HiddenWorld02T09 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup_03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Over here!</Text><ID>935485</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Hiccup_03</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hiccup</Text><ID>935483</ID></Title><Desc><Text>Find Hiccup</Text><ID>935483</ID></Desc></Data> + 0 + false + + + 4289 + HiddenWorld02T10 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. We looked everywhere for her without any success... and here she was, at our home all along. Okay, Toothless. Now's your chance to step up and show her what you're made of. No?@@I think Toothless is feeling a bit nervous. Can you {{input}} on him and offer him a reassuring hand?</Text><ID>935488</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWToothlessAlpha</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Toothless</Text><ID>930969</ID></Title><Desc><Text>{{Input}} on Toothless</Text><ID>931104</ID></Desc></Data> + 0 + false + + + 4290 + HiddenWorld02T11 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Come on, Toothless. Now's your chance to make a good third impression, right? {{Name}}, can you {{input}} on Toothless and lead him to the Light Fury?</Text><ID>935491</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld02T11CS.unity3d/PfGrpHiddenWorld02T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NightFury</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>12</Value></Pair><Pair><Key>NPC</Key><Value>PfDWToothlessAlpha</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Toothless and lead him to the Light Fury</Text><ID>935489</ID></Title><Desc><Text>{{Input}} on Toothless and lead him to the Light Fury</Text><ID>935489</ID></Desc><Reminder><Text>Lead Toothless to the Light Fury.</Text><ID>936282</ID></Reminder><Failure><Text>Oh no! You didn't lead Toothless to the Light Fury</Text><ID>936283</ID></Failure></Data> + 0 + false + + + 4291 + HiddenWorld02T12 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>DWLightFury</Asset><Location>PfMarker_LightFury</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoa! I guess that makes our decision for us! Let's fly down there after them and find out what's below us!</Text><ID>935494</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld02T12CS.unity3d/PfGrpHiddenWorld02T12CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the Light Fury into the cavern</Text><ID>935492</ID></Title><Desc><Text>Follow the Light Fury into the cavern</Text><ID>935492</ID></Desc></Data> + 0 + false + + + 4292 + HiddenWorld02T13 + <Data><Setup><Scene>HubHiddenWorldDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>My word. This is... this is beyond anything I could have imagined. Come close, {{Name}}. We should explore this place together.</Text><ID>935497</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It's strange, but somehow I'm reminded of the Bewilderbeast's sanctuary. Back when I lived alone among the dragons... +We are in a sacred place, little one.</Text><ID>935498</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 205507 + true + 200 + 200 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205507 + true + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205507 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205507 + true + 50 + 50 + + 0 + +
+ false +
+ + 2692 + HiddenWorld04 + 11 +

+ <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld04T00.unity3d/PfGrpHiddenWorld04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_HiddenWorldEret01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Warlord Camp</Text><ID>935614</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2691 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2692 + 4301 + 0 + + + 1 + 2692 + 4302 + 0 + + + 1 + 2692 + 4303 + 0 + + + 1 + 2692 + 4304 + 0 + + + 1 + 2692 + 4305 + 0 + + + 1 + 2692 + 4306 + 0 + + + 1 + 2692 + 4307 + 0 + + + 1 + 2692 + 4308 + 0 + + + + 1 + 205509 + 0 + + 4301 + HiddenWorld04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The warlords have been really busy while we were trying to relocate to New Berk. Mala's warning came at the right time. Eret went to spy on them and thinks he's found something. Can you talk to him at the Training Grounds? Be careful out there.</Text><ID>935584</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Listen mate. I'm not proud of it, but I worked a long time in the dragon trade. I know what it looks like when an organization is stopping by for a brief hunting trip or settling in for the long haul. These warlords... they mean to stay.</Text><ID>935585</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret at the Training Grounds</Text><ID>905099</ID></Title><Desc><Text>Talk to Eret at the Training Grounds</Text><ID>933489</ID></Desc></Data> + 0 + false + + + 4302 + HiddenWorld04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Our chief doesn't want a war, but we're going to have to defend ourselves. More importantly, we need to protect the dragons of this archipelago. We need more information on what they plan to do. I'll see you at Glacier Island!</Text><ID>935588</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Glacier Island</Text><ID>935586</ID></Title><Desc><Text>Visit Glacier Island</Text><ID>935878</ID></Desc></Data> + 0 + false + + + 4303 + HiddenWorld04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Don't worry. From what I've seen, their patrols don't come out this far. I don't think they feel safe when they venture out. Too scared of the angry, feral wild dragons, hm? Ha!@@Will you meet me on the hills overlooking the bay in Glacier Island?</Text><ID>935591</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I watched them for two days and two nights with nary a moment of rest to figure out how to defeat these invaders. And lucky for us, my eagle eyes spotted a certain scroll all those fellows were consulting! I'm sure we'll know what they're planning if we nab that scroll.</Text><ID>935592</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title><Desc><Text>Talk to Eret</Text><ID>935251</ID></Desc></Data> + 0 + false + + + 4304 + HiddenWorld04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>You just have to evade a hundred angry armed guards, locate the scroll in the middle of the camp, and get out safe. Easy, right? Joking aside, my friend. You are the stealthier than me. Skullcrusher and I will make sure that you're safe if any trouble comes along. {{dragon name}} can wait here with me, too.@@To get closest to the set of plans, you'll have to start north of camp. Stay close to the edge of the cliff at the start. When you find an opening, go into the heart of the camp. You can do it, {{Name}}!</Text><ID>935595</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EdgeOfCamp</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Sneak into the warlord camp</Text><ID>935593</ID></Title><Desc><Text>Sneak into the warlord camp</Text><ID>935593</ID></Desc></Data> + 0 + false + + + 4305 + HiddenWorld04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This looks like the opening Eret mentioned. You should make your way closer to the desk and grab the plans.</Text><ID>935598</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld04T04CS.unity3d/PfGrpHiddenWorld04T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HaraldEncounter</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Grab the map from the table without anyone noticing</Text><ID>935596</ID></Title><Desc><Text>Grab the map from the table without anyone noticing</Text><ID>935596</ID></Desc></Data> + 0 + false + + + 4306 + HiddenWorld04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well, well. We're in a curious pickle! Two rival mice sneaking into the cat's lair, hoping to get a piece of the cheese. I can't let you have that scroll, and I doubt you'll let me just walk away.@@I wish we could sit down like civilized folk and discuss our mutual enemies at Auction Island. In fact, you should come and talk to us. You'll be safe... if you can survive this, that is.</Text><ID>935601</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Ah! It seems the decision is out of our hands. Good luck, {{Name}}!</Text><ID>935602</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld04T05CS.unity3d/PfGrpHiddenWorld04T05CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title><Desc><Text>Talk to Harald</Text><ID>927532</ID></Desc></Data> + 0 + false + + + 4307 + HiddenWorld04T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Are you all right? Skullcrusher and I got you out as soon as the chaos happened, but it looks like Harald got away. +We've kicked over a hornet's nest, and we best flee before they sting us. Meet you back at Dragon's Edge? </Text><ID>935605</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>All's well that ends well? I think? Maybe? +They'll be on guard, now; we're going to have to try something else next time.</Text><ID>935606</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Retreat to Dragon's Edge</Text><ID>935603</ID></Title><Desc><Text>Visit Dragon's Edge</Text><ID>941420</ID></Desc></Data> + 0 + false + + + 4308 + HiddenWorld04T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}! How did your scouting trip go? Let's talk!</Text><ID>935609</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay. So. We didn't learn the warlords' plans, we don't know what Harald was up to, and we don't know where the warlords are going to attack next. +We've got some work to do...</Text><ID>935610</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 30 +

2

+ 0 + + 1 + 30 + 205509 + true + 30 + 30 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 205509 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205509 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205509 + true + 50 + 50 + + 0 + +
+ false +
+ + 2693 + HiddenWorld05 + 11 +

+ <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld05T00.unity3d/PfGrpHiddenWorld05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_Harald02_start</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Stormheart Conundrum</Text><ID>935615</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2692 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2693 + 4309 + 0 + + + 1 + 2693 + 4310 + 0 + + + 1 + 2693 + 4311 + 0 + + + 1 + 2693 + 4312 + 0 + + + 1 + 2693 + 4313 + 0 + + + 1 + 2693 + 4314 + 0 + + + 1 + 2693 + 4315 + 0 + + + + 1 + 205510 + 0 + + 4309 + HiddenWorld05T01 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid02_start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>How many times has Harald betrayed us? I don't trust him. But... If Harald's invitation can stop the fighting, we can't afford to let this opportunity pass us by. I know: we'll go together and watch each other's back! We'll head to Auction Island together.</Text><ID>935737</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ugh. I swear it even smells like trouble here. This place has a long history of the dragon trade... it's stained with the pain of dragons.</Text><ID>935738</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Auction Island</Text><ID>931262</ID></Title><Desc><Text>Go to Auction Island</Text><ID>929389</ID></Desc></Data> + 0 + false + + + 4310 + HiddenWorld05T02 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWHarald</Asset><Location>PfMarker_Harald02_start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay! Let's focus, get this done, and get the heck out of here. We need to make our way to Stormheart's throne. It's pretty ostentatious of her to place it at the highest part of this island, don't you think? Let's go!</Text><ID>935741</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>{{Name}}! I see you made it out of that death trap in one piece. How fortunate for both of us. Me? You and your dragon caused enough of a ruckus that I was able to get away without a fuss. Thanks!@@I see Astrid is here. My mistake. I thought I implied Stormheart wanted to talk to you and you alone when I said 'come alone.'</Text><ID>935742</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Harald02_start</Value></Pair><Pair><Key>Name</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Stormheart's throne</Text><ID>935739</ID></Title><Desc><Text>Visit Stormheart's throne</Text><ID>935739</ID></Desc></Data> + 0 + false + + + 4311 + HiddenWorld05T03 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid02_end</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nice try, Harald. You might want a chance to face a dragon rider on your own, but we stick together. Whatever Stormheart has to say, she can say to both of us.@@Let's get to the point. What do you want, Stormheart?</Text><ID>935745</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>'The enemy of my enemy is my friend.' An old saying, but appropriate. +The warlords will not stop until they capture every dragon in the archipelago. You must know that.@@Hiccup and I may never be allies, but there can be a temporary peace between us. If we stop fighting, you'll have time to protect your treasured dragons. I can focus my wrath against a foe who has dared to challenge my strength in the archipelago.</Text><ID>935746</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title><Desc><Text>Talk to Stormheart</Text><ID>935743</ID></Desc></Data> + 0 + false + + + 4312 + HiddenWorld05T04 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid02_end</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The warlords are dangerous, but that doesn't mean that you're any less dangerous, Stormheart. There is blood between us. Harald betrayed us. He attacked our island! We're still picking up the pieces.@@Hiccup believes that all people can change; if he were here, he might agree with you. Me? A lying snake is always a snake, and I would die before I let Berk come to harm.</Text><ID>935749</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Don't let your deserved hatred of me taint a good offer! Talk to me, {{Name}}. Astrid may have already hardened her heart against me, but I know you'd recognize good sense when you see it.</Text><ID>935750</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I learned a thing or two when I was pretending to join Berk's merry crew. Your primary concern is to protect dragons, right? Stormheart and I aren't out to enslave dragons. We don't want to hurt dragons at all. Shouldn't you be interested in doing anything you can to save dragons from the warlords?</Text><ID>935751</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title><Desc><Text>Talk to Harald</Text><ID>927532</ID></Desc></Data> + 0 + false + + + 4313 + HiddenWorld05T05 + <Data><Setup><Scene>HubAuctionIslandVanaheimDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid02_end</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Let's say this is all just a trap. What do you have to lose? You will have to fight the warlords at some point if you want to save dragons. If you have to fight the warlords anyway, why not turn your focus directly to them and know that Stormheart isn't planning anything against you for a time? A sigh of relief, as it were.@@Even Astrid must see the logic in this. Right, dear Astrid?</Text><ID>935754</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't like it. I hate to admit it… but he's got a point. Stormheart herself has never lied to us before. Just... Harald the snake here.</Text><ID>935755</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubAuctionIslandVanaheimDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 4314 + HiddenWorld05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>As a gesture of goodwill, my forces will no longer harass Berkian ships. Your fishing ships will be able to gather your nets without harassment. We will stop our attack on your caldera, what little there is left. My forces will smash the warlords' fleet, their most powerful weapon.@@It shall be a tough fight, but we will persevere if you attack their secret base at the right time. Take my offer to your leader Hiccup. Take it to your new secret location, wherever it may be. I hope that he has the will to do what must be done.</Text><ID>935758</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Let's go.</Text><ID>941101</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld05T07CS.unity3d/PfGrpHiddenWorld05T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to New Berk</Text><ID>936706</ID></Title><Desc><Text>Go to New Berk</Text><ID>936706</ID></Desc></Data> + 0 + false + + + 4315 + HiddenWorld05T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Is this your first time here? Quite a sight, isn't it? I don't think anyone ever expected to find this strange island in the middle of nowhere, but it's nice. I'm still trying to get used to the idea of living in the clouds. @@Let's find Hiccup and tell him the news.</Text><ID>935761</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid will disagree, but I know in my heart that we can stop the fighting between us and Stormheart if we set our minds to it. Maybe they have ulterior motives. Yes, they may try to betray us. But if this ends up being the first step in the road towards peace in the archipelago… what choice do we really have?</Text><ID>935762</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 205510 + true + 250 + 250 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205510 + true + 45 + 45 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205510 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205510 + true + 50 + 50 + + 0 + +
+ false +
+ + 2694 + HiddenWorld06 + 4 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_CliffSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld06T00.unity3d/PfGrpHiddenWorld06T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Home Sweet New Home</Text><ID>935612</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2693 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2694 + 4316 + 0 + + + 1 + 2694 + 4317 + 0 + + + 1 + 2694 + 4318 + 0 + + + 1 + 2694 + 4319 + 0 + + + 1 + 2694 + 4320 + 0 + + + 1 + 2694 + 4321 + 0 + + + 1 + 2694 + 4322 + 0 + + + 1 + 2694 + 4323 + 0 + + + 1 + 2694 + 4324 + 0 + + + 1 + 2694 + 4325 + 0 + + + 1 + 2694 + 4326 + 0 + + + 1 + 2694 + 4327 + 0 + + + 1 + 2694 + 4328 + 0 + + + + 1 + 205514 + 0 + + 4316 + HiddenWorld06T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'll confer with Valka and Gobber and try to see it from their eyes. Don't worry; if I'm getting too gung ho – as I sometimes can get – I'm sure Astrid will pull me back to reality.@@This is your first time at New Berk, right? Welcome to our home! It doesn't look like much right now, but everyone has grand plans for their houses. Why don't you take a look around and get settled in? I suggest starting by the cliffs out of the mesa. You can get a feel for the beauty of this place.</Text><ID>935678</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yo! Yo!</Text><ID>935679</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CliffSnotlout</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CliffSnotlout</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Snotlout at New Berk</Text><ID>935676</ID></Title><Desc><Text>Find Snotlout at New Berk</Text><ID>935676</ID></Desc></Data> + 0 + false + + + 4317 + HiddenWorld06T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I need your help on a matter of highest priority. Come to me right now, or the safety of New Berk will be completely shattered beyond saving!</Text><ID>935682</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Good. I'm glad someone is taking me seriously on this.@@I'm sure Hiccup's probably straining his arm patting himself on the back so hard. 'Oh, look at me, I've found a sanctuary where dragons can be safe.' Yeah, so I don't see dragon hunter ships making it up here. But what about us humans? We're sheared sheep waiting for the slaughter!</Text><ID>935683</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CliffSnotlout</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4318 + HiddenWorld06T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>What we need is something out of the classic playbook. It's gotta be something that screams 'Berk' and also 'fierce Viking,' all in one. What we need is one of Gobber's siege machines. Then we can protect ourselves from any attackers who try to scale the cliffs.@@If you fly around I'm sure you can find Gobber; he's standing in front of his precious forge.</Text><ID>935686</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Watch your step! We're not done setting up yet. It'd be a lot easier to move around if Grump would move out of the way, you lazy bundle of charcoal.</Text><ID>935687</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Gobber</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Gobber</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the blacksmith</Text><ID>935684</ID></Title><Desc><Text>Visit the blacksmith</Text><ID>935684</ID></Desc></Data> + 0 + false + + + 4319 + HiddenWorld06T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>So, {{Name}}, what can I do for you? Can't imagine Hiccup sent you here with a new idea. I'm sure he has twelve ideas just bouncing around in his head already. He just seems a little preoccupied with the Light Fury and all.@@Listen to me go on and on! Come on here and tell ol Gobber what you need.</Text><ID>935690</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Will wonders never cease? Snotlout Jorgensen with a good idea all on his own. I never thought I'd see the day. </Text><ID>935691</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 4320 + HiddenWorld06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ever since I took up dragon dentistry, I haven't flexed my siege weapon skills. You know what they say, though. Making a deadly weapon is just like riding a yak: you might get gored but you never forget.@@Let's take a look inside the forge and see what we can dig up. Maybe I can resurrect my dear old catapult, Big Bertha! Oh, how I've missed you so.</Text><ID>935694</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Fishlegs? What're you doing?</Text><ID>935695</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BlacksmithInside</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BlacksmithInside</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go inside to look at the forge</Text><ID>935692</ID></Title><Desc><Text>Go inside to look at the forge</Text><ID>935692</ID></Desc></Data> + 0 + false + + + 4321 + HiddenWorld06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sorry! Sorry, sorry! It's just Fishmeat again, being a little crank machine. Come on, get out here! +{{Name}}! Oh, thank Freya. You're just the person who can help me out. Please talk to me.</Text><ID>935698</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld06T06CS.unity3d/PfGrpHiddenWorld06T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Sometimes I think I've torn off more than I can chew with this little guy. He's just so active and playful and has neverending energy! How do other dragon moms do this?</Text><ID>935699</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4322 + HiddenWorld06T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld06T07.unity3d/PfGrpHiddenWorld06T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FurnaceFishlegs</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Fishmeat just doesn't want to take his nap even though it's way past his bedtime. He set fire to my favorite pair of gloves and then flew off to explore!@@We have no idea what could possibly be waiting in the wilderness so it's just not safe for him to go off on his own. I managed to chase him into the building, but now I can't get him out from under that table. Can you get him out, please?</Text><ID>935702</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There you are, you naughty boy! Thank you so much, {{Name}}. Thank you!</Text><ID>935703</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>Furnace</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>Furnace</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the forge</Text><ID>935274</ID></Title><Desc><Text>{{Input}} on the forge</Text><ID>935700</ID></Desc></Data> + 0 + false + + + 4323 + HiddenWorld06T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FurnaceFishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>What. A. Thrilling. Adventure. +Now that you've pulled out our little baby, I'm sure Fishlegs can get that dragon out of my shop. Now, Fishlegs.@@I have most of the mats for a catapult in this crate, but I'm missing most of the wooden pieces. We must've used them on all the new buildings. If you find a forest near here, we should be able to get this weapon done!</Text><ID>935706</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableTrees</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ChoppableTrees</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the closest forest</Text><ID>935704</ID></Title><Desc><Text>Look for the closest forest</Text><ID>935704</ID></Desc></Data> + 0 + false + + + 4324 + HiddenWorld06T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Those trees seem the sturdy type, similar to those at Berk. You should gather 6 wooden logs from the trees.</Text><ID>935709</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableTrees</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Chop 6 wood logs</Text><ID>935707</ID></Title><Desc><Text>Collect 6 wood logs</Text><ID>941743</ID></Desc></Data> + 0 + false + + + 4325 + HiddenWorld06T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should bring the logs back to Gobber at the smithy.</Text><ID>935712</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Perfect! This will give the right structure and bend for those heavy duty situations. You've got a good eye for wood.</Text><ID>935713</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 6 wood logs to Gobber</Text><ID>935710</ID></Title><Desc><Text>Bring 6 wood logs to Gobber</Text><ID>935710</ID></Desc></Data> + 0 + false + + + 4326 + HiddenWorld06T11 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld06T11.unity3d/PfGrpHiddenWorld06T11</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Now. This catapult will need a stable foundation to withstand the force of the projectile being shot out!@@Whenever we look to create a solution, it's integral to talk to others and discuss options to figure out the best method. After all, we all have different minds and different experiences that have shaped us; talking through different ideas can allow us to find an answer that incorporates the best possibilities.@@So while I finish this up, can you go back to Snotlout and dig a spot near the edge of the cliff? We can then use that spot as the base.</Text><ID>935716</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That's not a bad hole. Not quite as good as when I dig them, but not bad for someone else.</Text><ID>935717</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DigSpot</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>digSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dig a spot near the edge of the cliff</Text><ID>935714</ID></Title><Desc><Text>Dig a spot near the edge of the cliff</Text><ID>935714</ID></Desc></Data> + 0 + false + + + 4327 + HiddenWorld06T12 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_CliffRuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_CliffTuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Drat... I see the disaster twins coming by to mock us. You need to talk to Tuffnut and get them out of here before they destroy our awesome plan.</Text><ID>935720</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>We're here on much more interesting business. More mischievous business.</Text><ID>935721</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>A hole? Oh no. That's not what we're here for.</Text><ID>935722</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CliffTuffnut</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 4328 + HiddenWorld06T13 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWGobber</Asset><Location>PfMarker_DigSpotGobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's right, sister. We're just hanging low after doing something quite devilish to Fishlegs. It might just drive him off the deep end! +Speaking of someone 'off the deep end': I think Gobber's trying to catch your attention. +</Text><ID>935725</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld06T13CS.unity3d/PfGrpHiddenWorld06T13CS</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Isn't she a beaut? I'm getting maudlin just looking at her. Oh, my girl, I look forward to the day when I can see you destroy our enemies as they try to ransack our town.</Text><ID>935726</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 30 +

2

+ 0 + + 1 + 30 + 205514 + true + 30 + 30 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 205514 + true + 250 + 250 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205514 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205514 + true + 50 + 50 + + 0 + +
+ false +
+ + 2695 + HiddenWorld07 + 3 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld07T00.unity3d/PfGrpHiddenWorld07T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>A Small Problem</Text><ID>935621</ID></Title><Desc><Text>A Small Problem</Text><ID>935621</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2694 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2695 + 4338 + 0 + + + 2 + 2695 + 2696 + 0 + + + 1 + 2695 + 4339 + 0 + + + 2 + 2695 + 2698 + 0 + + + 1 + 2695 + 4341 + 0 + + + 1 + 2695 + 4342 + 0 + + + 1 + 2695 + 4343 + 0 + + + 1 + 2695 + 4344 + 0 + + + 2 + 2695 + 2701 + 0 + + + 1 + 2695 + 4346 + 0 + + + 1 + 2695 + 4347 + 0 + + + + 1 + 205517 + 0 + + 2696 + HiddenWorld07T02 + 3 +

2695

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld07T03.unity3d/PfGrpHiddenWorld07T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Look for Fishmeat at the cave</Text><ID>935616</ID></Title><Desc><Text>Look for Fishmeat at the cave</Text><ID>935616</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2696 + 4330 + 0 + + + + 1 + 0 + 0 + + 4330 + HiddenWorld07T02 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Fishlegs roped you in to his little scavenger hunt too? I can't believe we're doing this instead of something more productive. If you ask me, Fishlegs coddles his babies way too much. They're dragons, not little birds! They can take care of themselves.</Text><ID>935765</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cave</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Cave</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Fishmeat at the cave</Text><ID>935616</ID></Title><Desc><Text>Look for Fishmeat at the cave</Text><ID>935617</ID></Desc></Data> + 0 + false + + false + + + 2698 + HiddenWorld07T04 + 3 +

2695

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Look for the brambles</Text><ID>935618</ID></Title><Desc><Text>Look for the brambles</Text><ID>935618</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2698 + 4340 + 0 + + + + 1 + 0 + 0 + + 4340 + HiddenWorld07T04 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>{{Name}}! Good. I need your help. Doesn't this group of brambles look like they're covering for a hiding dragon? If I were a tiny, young Gronckle baby, this is where I would burrow deep into the ground. Oh, to be a Gronckle baby! What a peaceful life.</Text><ID>935768</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BucketDig</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the brambles</Text><ID>935618</ID></Title><Desc><Text>Look for the brambles</Text><ID>935619</ID></Desc></Data> + 0 + false + + false +
+ + 2701 + HiddenWorld07T09 + 3 +

2695

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2701 + 4345 + 0 + + + + 1 + 205640 + 0 + + 4345 + HiddenWorld07T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should {{input}} on Fishmeat to place him in your Backpack for safekeeping. Thankfully, he seems to like traveling in small containers.</Text><ID>935771</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGronckleBaby</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGronckleBaby</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Fishmeat</Text><ID>935769</ID></Title><Desc><Text>{{Input}} on Fishmeat</Text><ID>935769</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 15844 + + 1 + 5766 + 205640 + true + 1 + 1 + + 0 + +
+ false +
+ + 4338 + HiddenWorld07T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Speaking of ransacking the town: Do you have any idea what's got a bee in Fishlegs's bonnet? He's tearing up the town. He's going to undo all the progress we've made so far if someone doesn't put an end to this weird behavior. I nominate you! Please, talk to Fishlegs and calm that man down!</Text><ID>935774</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm sorry, I'm sorry. Have you seen Fishmeat? I almost had him down for his nap when Tuffnut made his Zippleback fire on a bag of corn being stored nearby. The loud noises woke my baby up, and he went shooting off to Odin-knows-where! I've looked everywhere. @@He's so young, and he could get in serious danger. Ohh, I knew I shouldn't have let him out of his pouch today! Can you help me find him around the island?</Text><ID>935775</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4339 + HiddenWorld07T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld07T03.unity3d/PfGrpHiddenWorld07T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I suppose I'm just prolonging our suffering at this point. Let's see if Fishmeat is stuck behind these fallen branches. Can you chop the way free with your axe?</Text><ID>935778</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>No luck. I'll let Fishlegs know we're coming back empty-handed. Good luck on the next stop!</Text><ID>935779</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>CaveBlocker</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>CaveBlocker</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the wood blocks out of the way</Text><ID>935776</ID></Title><Desc><Text>Chop the wood blocks out of the way</Text><ID>935776</ID></Desc></Data> + 0 + false + + + 4341 + HiddenWorld07T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld07T05.unity3d/PfGrpHiddenWorld07T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I think my bucket is way too big to dig a space out for our subterranean dragon friend. Can you do it?</Text><ID>935782</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Looks like we've just uncovered some dirt. That's unfortunate; my bucket sense doesn't lead me wrong often. Alas! The search must go on.</Text><ID>935783</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>digSpot</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>digSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dig at the spot</Text><ID>935780</ID></Title><Desc><Text>Dig at the spot</Text><ID>935780</ID></Desc></Data> + 0 + false + + + 4342 + HiddenWorld07T06 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GrumpHall</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Fishmeat at the meeting hall</Text><ID>935784</ID></Title><Desc><Text>Look for Fishmeat at the meeting hall</Text><ID>935784</ID></Desc></Data> + 0 + false + + + 4343 + HiddenWorld07T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWGrump</Asset><Location>PfMarker_GrumpHall</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}, Grump is in the way while we're trying to put everything into place in the Great Hall. Can you {{input}} on him and lead him to the forge?</Text><ID>935788</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>There you are, you big lump o' Grump! Where have you been! I need this forge lit right away and working so that we can meet the high demand!</Text><ID>935789</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Blacksmith</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>14</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrump</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Grump and lead him to the forge</Text><ID>935786</ID></Title><Desc><Text>{{Input}} on Grump and lead him to the forge</Text><ID>935786</ID></Desc><Reminder><Text>Lead Grump to the Forge!</Text><ID>936287</ID></Reminder><Failure><Text>Oh no! You failed! +</Text><ID>936288</ID></Failure></Data> + 0 + false + + + 4344 + HiddenWorld07T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Thanks for bringing him back. By the way, are you still looking for Fishmeat? This sort of thing is why animals have evolved to exhibit group behavior!@@Being part of a group means that even young, foolish dragons like Fishmeat have a better chance to survive his erratic behavior and get the food and shelter he needs to survive. Groups can form because of genetic relatedness, physical proximity, or other factors. Our crusade to help dragons is definitely an 'other factor' here, eh?@@Anyway, I think I saw the little baby fly over the edge of the cliff. Have you tried looking for him below the ridge, on the face of the cliffs?</Text><ID>935792</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishmeatHiding</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Fishmeat below the cliffs</Text><ID>935790</ID></Title><Desc><Text>Look for Fishmeat below the cliffs</Text><ID>935790</ID></Desc></Data> + 0 + false + + + 4346 + HiddenWorld07T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should bring Fishmeat back to Fishlegs before he somehow wiggles free and hides again.</Text><ID>935795</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! You found him! Thank you so much! Th- hmm. I feel déjà vu right now. Where did you go, Fishmeat? You had me so scared! Don't you do something like that to your dad ever again!</Text><ID>935796</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>15844</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fishmeat</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver Fishmeat to Fishlegs</Text><ID>935793</ID></Title><Desc><Text>Deliver Fishmeat to Fishlegs</Text><ID>935793</ID></Desc></Data> + 0 + false + + + 4347 + HiddenWorld07T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm glad you managed to find my little baby in time because I was looking for you to take over the search. Hiccup needs your help right away on important Berk business. He looked serious! You should talk to him right away.@@Thank you for saving Fishmeat, {{Name}}. I won't ever forget it.</Text><ID>935799</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, it looks like the decision is out of our hands. I've been invited to a parley under a white flag... and I need you there by my side.</Text><ID>935800</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205517 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205517 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205517 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205517 + true + 350 + 350 + + 0 + +
+ false +
+ + 2697 + HiddenWorld08 + 4 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld08T00.unity3d/PfGrpHiddenWorld08T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Parley</Text><ID>935622</ID></Title><Desc><Text>Parley</Text><ID>935622</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2695 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2697 + 4332 + 0 + + + 1 + 2697 + 4333 + 0 + + + 1 + 2697 + 4334 + 0 + + + 1 + 2697 + 4335 + 0 + + + 1 + 2697 + 4336 + 0 + + + 1 + 2697 + 4348 + 0 + + + 1 + 2697 + 4349 + 0 + + + 1 + 2697 + 4350 + 0 + + + 1 + 2697 + 4351 + 0 + + + 1 + 2697 + 4353 + 0 + + + 1 + 2697 + 4354 + 0 + + + 1 + 2697 + 4355 + 0 + + + 1 + 2697 + 4356 + 0 + + + 1 + 2697 + 4357 + 0 + + + 1 + 2697 + 4358 + 0 + + + 1 + 2697 + 4359 + 0 + + + + 1 + 205648 + 0 + + 4332 + HiddenWorld08T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Grimmel invited Stormheart, me, and you to talk under a white flag. He wants a three-way conversation about dragons and the archipelago, and get this... he's invited us to Berk. The cheek, right?@@We'll go when you're ready; Have my back out there, {{Name}}, and I promise I'll cover yours. +Valka? What is it?</Text><ID>935803</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Don't take this as a challenge to your authority. Hiccup, as our chieftain you cannot go to Berk under any circumstances. In the best scenario, you'll be surrounded by your enemies. In the worst scenario, they'll try to capture you and Toothless. Someone else can go for you.</Text><ID>935804</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 4333 + HiddenWorld08T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's a flag of truce! Do you think Grimmel would betray such a time-honored tradition?</Text><ID>935807</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I could see him letting you arrive untouched, then all his men chase you down right as you leave Berk. Are you willing to bet Toothless's life on Grimmel's honor?</Text><ID>935808</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>... +Okay, I'll give in. {{Name}}, you'll have to be Berk's representative. Please take Eret as backup, just in case. Can you meet him by his boat at the Training Grounds? </Text><ID>935809</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Training Grounds</Text><ID>935805</ID></Title><Desc><Text>Go to the Training Grounds</Text><ID>929555</ID></Desc></Data> + 0 + false + + + 4334 + HiddenWorld08T03 + <Data><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should see if Eret is near his boat at the docks.</Text><ID>935812</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>This is going to be our toughest mission yet. I'm glad it's you and me on this mission, instead of some of our more... temperamental Vikings.</Text><ID>935813</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title><Desc><Text>Talk to Eret</Text><ID>935251</ID></Desc></Data> + 0 + false + + + 4335 + HiddenWorld08T04 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld08T06a.unity3d/PfGrpHiddenWorld08T06a</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>For what it's worth, I agree with both Valka and Hiccup. I don't think Grimmel will violate the sanctity of the white flag agreement, but we need to stay on our toes and keep our eyes open.@@Let's get onto my ship and head over to Berk, my friend.</Text><ID>935816</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfEretsBoat_TrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Jump on his boat</Text><ID>935814</ID></Title><Desc><Text>Jump on his boat</Text><ID>935814</ID></Desc></Data> + 0 + false + + + 4336 + HiddenWorld08T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>I see our esteemed chieftain couldn't make it. Pity. I would have liked a chance to see his dragon friend again in person. Well, it is only a matter of time.@@Please, come my way. Our other guest should be arriving momentarily.</Text><ID>935819</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld08T06CS.unity3d/PfGrpHiddenWorld08T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Welcome, my lady. It is a pleasure to see you after our... earlier disagreements. I'm sure we'll be able to come to a happy middle ground.</Text><ID>935820</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>We shall see.</Text><ID>935821</ID><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrimmel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Grimmel</Text><ID>935848</ID></Title><Desc><Text>Talk to Grimmel</Text><ID>935848</ID></Desc></Data> + 0 + false + + + 4348 + HiddenWorld08T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Now that all parties are here, let us begin. Please, let us make our way up to the town hall. There's no need to discuss such heavy matters by the docks, after all!</Text><ID>935824</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Peculiar buildings on this island. I appreciate the draconic styling, though I think it would be better served with a few nice pelts hanging by the doors. Say - Monstrous Nightmare scales, hanging with a loop of Speed Stinger claws. He he. Wouldn't you agree?</Text><ID>935825</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Grimmel02</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrimmel</Value></Pair><Pair><Key>Spline</Key><Value>Grimmel01</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Grimmel and follow him</Text><ID>935844</ID></Title><Desc><Text>{{Input}} on Grimmel and follow him</Text><ID>935830</ID></Desc><Reminder><Text>Hurry up and follow Grimmel!</Text><ID>936291</ID></Reminder><Failure><Text>Oh no! He left you behind!</Text><ID>936299</ID></Failure></Data> + 0 + false + + + 4349 + HiddenWorld08T07 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_StormHeart02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I am not here to discuss home furnishings. Can we discuss the matters at hand?</Text><ID>935828</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Your warlords are spreading their influence deeper into the archipelago. The further north you go, the more you will encroach into my lands. I do not take challenges lightly.</Text><ID>935829</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title><Desc><Text>Talk to Stormheart</Text><ID>935743</ID></Desc></Data> + 0 + false + + + 4350 + HiddenWorld08T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Ah! And there we come to the crux of the matter. Please, let us resume the discussion.</Text><ID>935832</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Grimmel03</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrimmel</Value></Pair><Pair><Key>Spline</Key><Value>Grimmel02</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Grimmel and follow him</Text><ID>935844</ID></Title><Desc><Text>{{Input}} on Grimmel and follow him</Text><ID>935830</ID></Desc><Reminder><Text>Keep up with Grimmel!</Text><ID>936293</ID></Reminder><Failure><Text>Oh no! He left you behind!</Text><ID>936299</ID></Failure></Data> + 0 + false + + + 4351 + HiddenWorld08T09 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_StormHeart03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>An interesting offer. Let me think about it, Grimmel. Let me speak to you, {{Name}}.</Text><ID>935835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>If Grimmel is truly a mercenary for hire by the warlords, this means that he and I will have little reason to butt heads after this. This would leave only you and Grimmel to fight.</Text><ID>935836</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>But must it be that way?</Text><ID>936097</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title><Desc><Text>Talk to Stormheart</Text><ID>935743</ID></Desc></Data> + 0 + false + + + 4353 + HiddenWorld08T11 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld08T11.unity3d/PfGrpHiddenWorld08T11</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_StormHeart03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Ah! That might be the hammer Gobber has been missing in New Berk. You should pick it up.</Text><ID>935842</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>But I had... forgotten... that you lived on this island. How is it to return to your home, filled by your enemies?</Text><ID>935843</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTool</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab Gobber's tool</Text><ID>935840</ID></Title><Desc><Text>Grab Gobber's tool</Text><ID>935840</ID></Desc></Data> + 0 + false + + + 4354 + HiddenWorld08T12 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_StormHeart03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>It must have been a quick evacuation indeed, to escape before I could find the Night Fury. Though, it's no matter. Please, let us continue. There is no reason for us to fight, {{Name}}, if we can come to an understanding today. Tell me when you're ready.</Text><ID>935846</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>I don't think the statue does this great chief justice. Do you miss him? Stoick was a mountain of a Viking who protected Berk by the sheer force of presence. Even his enemies respected him. @@His replacement is unfortunately no equal.</Text><ID>935847</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld08T12CS.unity3d/PfGrpHiddenWorld08T12CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Grimmel04</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrimmel</Value></Pair><Pair><Key>Spline</Key><Value>Grimmel03</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Grimmel and follow him</Text><ID>935844</ID></Title><Desc><Text>{{Input}} on Grimmel and follow him</Text><ID>935830</ID></Desc><Reminder><Text>Stay close to Grimmel!</Text><ID>936298</ID></Reminder><Failure><Text>Oh no! He left you behind!</Text><ID>936299</ID></Failure></Data> + 0 + false + + + 4355 + HiddenWorld08T13 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>PfDWGrimmel</Asset><Location>PfMarker_Grimmel04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>PfDWPirateQueen</Asset><Location>PfMarker_StormHeart04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Foolish, Grimmel. One knows to never underestimate the tamer of the Alpha. +I have much to ponder once I get back to the Tempest. We shall speak again.</Text><ID>935850</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Then I will not stop you. {{Name}}, a final word if you please.</Text><ID>935851</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Take my offer to Hiccup. If Hiccup and Toothless fight me one on one, we will end our crusade. It is a serious offer. All this pain can end with the smallest sacrifice, and is that not a chieftain's job?</Text><ID>935852</ID><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrimmel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Grimmel</Text><ID>935848</ID></Title><Desc><Text>Talk to Grimmel</Text><ID>935848</ID></Desc></Data> + 0 + false + + + 4356 + HiddenWorld08T14 + <Data><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Remember all that you have heard, {{Name}}, and tell Hiccup every last detail. Tell him to consider it with any offers he may have heard, here and elsewhere.@@Grimmel, I hope--for your sake--that we will not be forced to cross swords. You would not like the result.</Text><ID>935855</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Thank all the seas, you're back! I was starting to think I had to storm the town.</Text><ID>935856</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfEretsBoat</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Eret's ship</Text><ID>935853</ID></Title><Desc><Text>Return to Eret's ship</Text><ID>935853</ID></Desc></Data> + 0 + false + + + 4357 + HiddenWorld08T15 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld08T15.unity3d/PfGrpHiddenWorld08T15</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Let's get out of here while we still have the chance, mate. Hop on board.</Text><ID>935859</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PortalTrigger01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Board Eret's ship</Text><ID>935857</ID></Title><Desc><Text>Board Eret's ship</Text><ID>935857</ID></Desc></Data> + 0 + false + + + 4358 + HiddenWorld08T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should get the news to Hiccup right away.</Text><ID>935862</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm glad you're safe, {{Name}}. If facing Grimmel will end all this nonsense, I'm all for it! I know that Toothless and I can handle anyone in a fair fight.</Text><ID>935863</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 4359 + HiddenWorld08T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No. No way. Absolutely not. Hiccup, that is not happening.</Text><ID>935866</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great job with the meeting, {{Name}}. You did Berk proud. +There is no way we are going to risk our chieftain and the dragon alpha in a rigged fight against Grimmel. Did we all forget that Grimmel has hunted down all the other Night Furies in the world??@@No. We'll find another way.</Text><ID>935867</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>15879</ItemID><Quantity>1</Quantity></RemoveItem><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205648 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205648 + true + 200 + 200 + + 0 + +
+ + 60 +

12

+ 0 + + 1 + 1207 + 205648 + true + 60 + 60 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205648 + true + 350 + 350 + + 0 + +
+ false +
+ + 2699 + HiddenWorld09 + 11 +

+ <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld09T00.unity3d/PfGrpHiddenWorld09T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Throwing the First Punch</Text><ID>935626</ID></Title><Desc><Text>Throwing the First Punch</Text><ID>935626</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2697 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2699 + 4360 + 0 + + + 1 + 2699 + 4361 + 0 + + + 2 + 2699 + 2703 + 0 + + + 2 + 2699 + 2704 + 0 + + + 2 + 2699 + 2706 + 0 + + + 1 + 2699 + 4365 + 0 + + + 1 + 2699 + 4366 + 0 + + + 1 + 2699 + 4367 + 0 + + + 1 + 2699 + 4368 + 0 + + + 1 + 2699 + 4428 + 0 + + + + 1 + 205638 + 0 + + 2703 + HiddenWorld09T03A + 11 +

2699

+ <Data><Offer><Type>Popup</Type><ID>936081</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>All right! Stormheart's finally coming through in the clutch. We gotta take advantage of this distraction! Shoot down that tower and neuter their defense!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld09T03.unity3d/PfGrpHiddenWorld09T03</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>936082</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Woo-hoo! Let's show everyone how it's done!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Shoot the Towers</Text><ID>935872</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2703 + 4362 + 0 + + + 1 + 2703 + 4386 + 0 + + + 1 + 2703 + 4387 + 0 + + + 1 + 2703 + 4388 + 0 + + + + 1 + 0 + 0 + + 4362 + HiddenWorld09T03B + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Tower03_Container</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Tower03_4362</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Towers</Text><ID>935872</ID></Title><Desc><Text>Shoot the Towers</Text><ID>935870</ID></Desc></Data> + 0 + false + + + 4386 + HiddenWorld09T03C + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Tower01_Container</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Tower01_4386</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Towers</Text><ID>935872</ID></Title><Desc><Text>Shoot the Towers</Text><ID>935870</ID></Desc></Data> + 0 + false + + + 4387 + HiddenWorld09T03D + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Tower02_Container</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Tower02_4387</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Towers</Text><ID>935872</ID></Title><Desc><Text>Shoot the Towers</Text><ID>935870</ID></Desc></Data> + 0 + false + + + 4388 + HiddenWorld09T03E + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>Tower04_Container</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Tower04_4388</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Towers</Text><ID>935872</ID></Title><Desc><Text>Shoot the Towers</Text><ID>935870</ID></Desc></Data> + 0 + false + + false + + + 2704 + HiddenWorld09T04A + 11 +

2699

+ <Data><Offer><Type>Popup</Type><ID>936083</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Wonderful work, {{Name}}, but there's much more to do. These cowards have trapped so many dragons to fight for them. We need to free them right now. We'll land, avoid the warlords' men and break open the traps!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld09T04.unity3d/PfGrpHiddenWorld09T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>936084</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Wonderful. Fly free!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Title><Text>Free captured dragons</Text><ID>935625</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2704 + 4363 + 0 + + + 1 + 2704 + 4389 + 0 + + + + 1 + 0 + 0 + + 4363 + HiddenWorld09T04B + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cage4363</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DragonCage01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free the captured dragons</Text><ID>935875</ID></Title><Desc><Text>Free the captured dragons</Text><ID>935873</ID></Desc></Data> + 0 + false + + + 4389 + HiddenWorld09T04C + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cage4389</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>DragonCage02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free the captured dragons</Text><ID>935875</ID></Title><Desc><Text>Free the captured dragons</Text><ID>935873</ID></Desc></Data> + 0 + false + + false +
+ + 2706 + HiddenWorld09T05A + 11 +

2699

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Grimmel's nearly alone - and if we can just get his guards away from him, we'll be able to corner him and force him to give up his quest against Toothless. I'm going to fly cover while you draw the guards away from him. Shoot the entrance and focus their attention!</Text><ID>936085</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld09T05.unity3d/PfGrpHiddenWorld09T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Shoot the Entrance</Text><ID>936199</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2706 + 4364 + 0 + + + 1 + 2706 + 4397 + 0 + + + + 1 + 0 + 0 + + 4364 + HiddenWorld09T05B + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Fire4364</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Draw the guards away from Grimmel</Text><ID>935876</ID></Title><Desc><Text>Draw the guards away from Grimmel</Text><ID>935876</ID></Desc></Data> + 0 + false + + + 4397 + HiddenWorld09T05C + <Data><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Fire4397</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>Flag02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Draw the guards away from Grimmel</Text><ID>935876</ID></Title><Desc><Text>Draw the guards away from Grimmel</Text><ID>935876</ID></Desc></Data> + 0 + false + + false +
+ + 4360 + HiddenWorld09T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Grimmel has made it dead clear that he's never going to stop coming after us. We need to take the fight to him right away, while we have the advantage. If we stop him now, he'll need to take some time to get back to full strength. That'll be all the time we need to get dragons to a safe place.@@Eret has been monitoring their camp at Glacier Island, and he says that their defenses are weaker right now than they have ever been. Now's the time. One decisive strike!</Text><ID>936107</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld09T01CS.unity3d/PfGrpHiddenWorld09T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There they are...</Text><ID>936108</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Glacier Island</Text><ID>935878</ID></Title><Desc><Text>Visit Glacier Island</Text><ID>935878</ID></Desc></Data> + 0 + false + + + 4361 + HiddenWorld09T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I see their reinforcements on the horizon! We need to start right now. {{Name}}, please help Snotlout attack the guards and keep them from defending Grimmel!</Text><ID>936110</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld09T02CS.unity3d/PfGrpHiddenWorld09T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>ExteriorShotLocation</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>ExteriorSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot a portion of the camp</Text><ID>935880</ID></Title><Desc><Text>Shoot a portion of the camp</Text><ID>935880</ID></Desc></Data> + 0 + false + + + 4365 + HiddenWorld09T06 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld09T06.unity3d/PfGrpHiddenWorld09T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yeah, it's time to divide and conquer! Hookfang and I are here to back you up. Let's kick these butts and go after Grimmel, all in one go!</Text><ID>936112</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld09T04CS.unity3d/PfGrpHiddenWorld09T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld09T05CS.unity3d/PfGrpHiddenWorld09T05CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>We've done it! But... wait... what is going on?</Text><ID>936113</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CampEntrance</Value></Pair><Pair><Key>Name</Key><Value>STHiddenWorld02MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics battle</Text><ID>935882</ID></Title><Desc><Text>Defeat the Dragon Tactics battle</Text><ID>933766</ID></Desc></Data> + 0 + false + + + 4366 + HiddenWorld09T07 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Valkacamp</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That treacherous... {{Name}}, Stormheart's running away with her tail between her legs! We need to press the attack right now before the warlords figure out what's going on. Valka is about to face Grimmel right now. Hurry, help her out!</Text><ID>936115</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld09T06CS.unity3d/PfGrpHiddenWorld09T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>You do-gooders are quite amusing. You think that you can stop innovators like me from using dragons to invent new wonders. When will you learn? You cannot stop progress. All that awaits you is inevitable failure.</Text><ID>936116</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Valkacamp</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land next to Valka</Text><ID>935884</ID></Title><Desc><Text>Land next to Valka</Text><ID>935884</ID></Desc></Data> + 0 + false + + + 4367 + HiddenWorld09T08 + <Data><Setup><Scene>GlacierIslandDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Valkacamp</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>My dear Cloudjumper... no. Please. I do not know what he has injected you with, but you are stronger than this. Please, fight it off. {{Name}}, help me break him out of this hypnosis. Approach him, reach your hand out, and {{input}} on his head.</Text><ID>936118</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld09T07CS.unity3d/PfGrpHiddenWorld09T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Cloudjumper_Fallen</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCloudjumper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Cloudjumper</Text><ID>935886</ID></Title><Desc><Text>{{Input}} on Cloudjumper</Text><ID>935886</ID></Desc></Data> + 0 + false + + + 4368 + HiddenWorld09T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Are you all right? I'm so sorry to have put you in harm's way. We've managed to hold Grimmel's forces back, but it'll only be a matter of time before they come after more dragons. If you feel good enough to fly, make your way to New Berk. We'll hold them back.</Text><ID>936120</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Retreat to New Berk</Text><ID>935975</ID></Title><Desc><Text>Regroup at New Berk</Text><ID>941744</ID></Desc></Data> + 0 + false + + + 4428 + HiddenWorld09T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, Thor. Oh, Thor!</Text><ID>936611</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I can't believe it. We faced him, straight on... and we lost. Is this the end?</Text><ID>936612</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205638 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205638 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205638 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205638 + true + 350 + 350 + + 0 + +
+ false +
+ + 2700 + HiddenWorld10 + 12 +

+ <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld10T00.unity3d/PfGrpHiddenWorld10T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld10T00a.unity3d/PfGrpHiddenWorld10T00a</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Where Do We Go From Here?</Text><ID>935630</ID></Title><Desc><Text>Where Do We Go From Here?</Text><ID>935630</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2699 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2700 + 4369 + 0 + + + 1 + 2700 + 4370 + 0 + + + 1 + 2700 + 4371 + 0 + + + 1 + 2700 + 4372 + 0 + + + 1 + 2700 + 4373 + 0 + + + 1 + 2700 + 4374 + 0 + + + 1 + 2700 + 4375 + 0 + + + 1 + 2700 + 4376 + 0 + + + 1 + 2700 + 4377 + 0 + + + 1 + 2700 + 4378 + 0 + + + 1 + 2700 + 4379 + 0 + + + 1 + 2700 + 4380 + 0 + + + 1 + 2700 + 4381 + 0 + + + 1 + 2700 + 4382 + 0 + + + 1 + 2700 + 4383 + 0 + + + 2 + 2700 + 2702 + 0 + + + 1 + 2700 + 4385 + 0 + + + + 1 + 205639 + 0 + + 2702 + HiddenWorld10T16 + 12 +

2700

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2702 + 4384 + 0 + + + + 1 + 0 + 0 + + 4384 + HiddenWorld10T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You must be tired, but there's really no time to waste. I think I saw Windshear and Heather fly into the town. I'm surprised you two didn't come together, since you were both working on the cure! Can you talk to her and see what's going on?</Text><ID>935892</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I have… something. It's similar to the cure we made for the Grimora venom, with a few special tweaks.</Text><ID>935893</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + false + + + 4369 + HiddenWorld10T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It's game over, man. It's game over! +Grimmel beat us. Stormheart left us for dead. Cloudjumper, the third strongest dragon after Toothless and Hookfang, didn't make it. I never thought that we'd lose this badly.@@How do we move on from this? We're going to get wrecked! +Valka! She's smart. She'll know how to act from here!</Text><ID>935896</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Poor Cloudjumper. To be struck low like this at the hands of a maniac like Grimmel. We must save him. We must!</Text><ID>935897</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 4370 + HiddenWorld10T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I'm sorry, but I need a moment to gather myself. Cloudjumper has been my constant companion and friend for many years. The sight of him losing his head and struggling against Grimmel's Deathgripper poison... That image will stay with me for years.@@Can you talk to Hiccup and see if we can figure out a way to clear Cloudjumper's head?</Text><ID>935900</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Stormheart uses Grimora poison, a debilitating substance that makes dragons attack all humans. Grimmel supposedly uses Deathgripper poison, which makes its victims listen to the words of the person who administrates it.@@But... Cloudjumper didn't attack you right away, and Grimmel didn't give him any orders. So, it couldn't have been either of those poisons. Right?</Text><ID>935901</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 4371 + HiddenWorld10T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What if...? +No, no. I don't want to make any crazy guesses. Can you ask Heather for her advice? If you tell her the symptoms that you saw in Cloudjumper, she might be able to deduce a way to neutralize the poison.</Text><ID>935904</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It sounds like Cloudjumper was exhibiting some of the symptoms of Grimora poison and some of the symptoms of Deathgripper venom. Maybe he used a new concoction that mimics effects from the two original formulae? We're going to need something new to help our dragon.</Text><ID>935905</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 4372 + HiddenWorld10T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>We need have to experiment to figure out a way to neutralize this new threat. The worst part is... we don't have any of it! We're going to be flying blind. We'll just have to solve it together. +Let's go to the School!</Text><ID>935908</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the School</Text><ID>935906</ID></Title><Desc><Text>Go to the School</Text><ID>935906</ID></Desc></Data> + 0 + false + + + 4373 + HiddenWorld10T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm going to gather some tools from my Lab before we head out. The cave below the School might have the answers we need. Hiccup and Astrid said that when they went to the Hidden World with Stormfly, it looked remarkably like our cave. Since that's where dragons live, I bet we can find something in the environment that will help Cloudjumper.@@Can you tell our Headmaster what we're about to do?</Text><ID>935911</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Goodness! We haven't been able to explore much or secure the area. It could be very dangerous down there.</Text><ID>935912</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text><ID>922008</ID></Title><Desc><Text>Talk to the Headmaster</Text><ID>922008</ID></Desc></Data> + 0 + false + + + 4374 + HiddenWorld10T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Still, I am confident that you and Heather will be able to watch each other's backs. I will make sure to protect the entrance to the entrance to the Hidden World from here, as unwieldy that name sounds!@@(Perhaps, since it is a cave that could lead us into the Hidden World, we can call it the Hidden World Annex! Ha ha.) +Thorspeed!</Text><ID>935915</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Hidden World Annex</Text><ID>935913</ID></Title><Desc><Text>Enter the Hidden World Annex</Text><ID>935913</ID></Desc></Data> + 0 + false + + + 4375 + HiddenWorld10T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Stay close, Windshear. We'll need to move and explore together if we want to find the antidote. {{Name}}, come over here and talk to me when you're ready to go on.</Text><ID>935918</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>When we try to improve on an object or tool, we need to figure out the exact parameters of the problem at hand. Only once we know that, we'll be able to make a proper solution. This might require us to refine what we know about what our tool can do so that we know where to upgrade it.@@We know that Grimora venom is primarily cured with large amounts of saline. Originally, just a little bit was enough to get the Grimora off the victim, but we required more once the venom was separated from the parasites and made into a concentrated form. We're looking for something that will counteract the Deathgripper venom's effects.</Text><ID>935919</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 4376 + HiddenWorld10T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well, we have to start somewhere! Why don't we start with the shiniest thing? That pillar over there seems to really catch the eye. See you there!</Text><ID>935922</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It's so interesting to me that such a variety of life and organisms can thrive. It's almost like a whole different world, full of animals and vegetation that use different forms of energy to survive.@@Life finds a way to thrive, even in the most extreme conditions. This cave doesn't reach direct sunlight, so you would think that it's hard for life to grow. Only the organisms that adapted to the severe conditions have lived and reproduced here.</Text><ID>935923</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Crystal</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the formation of crystals</Text><ID>935920</ID></Title><Desc><Text>Look at the formation of crystals</Text><ID>935920</ID></Desc></Data> + 0 + false + + + 4377 + HiddenWorld10T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I don't think we can use these crystals to help Cloudjumper. (Though, I'm certain Snotlout would want to take some to make a killing on the market.) Look; there are some mushrooms there that could be what we need. Let's take a closer look, shall we?</Text><ID>935926</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Mushrooms are well adapted to thrive in a dark area with no direct sunlight. They can grow and flourish without any sunlight! They often can grow while receiving filtered light. Since they have no skin, they can't retain moisture as well as plants. They need to live in humid areas; this cave seems perfect for it!</Text><ID>935927</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MushroomPatch1</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the formation of mushrooms</Text><ID>935924</ID></Title><Desc><Text>Look at the formation of mushrooms</Text><ID>935924</ID></Desc></Data> + 0 + false + + + 4378 + HiddenWorld10T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh! That's the Light Fury, isn't it? I wonder what she's doing here. I heard that Toothless was spending a lot of time with her. Do you think he's somehow convinced her that we're trying to help dragons?@@You've had more experience with her, so I'll let you handle the interaction. Can you get closer to her and see exactly what she wants?</Text><ID>935930</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld10T10CS.unity3d/PfGrpHiddenWorld10T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LightfuryPatch01</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Light Fury</Text><ID>935928</ID></Title><Desc><Text>Approach the Light Fury</Text><ID>935928</ID></Desc></Data> + 0 + false + + + 4379 + HiddenWorld10T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Ah… what a shame that she doesn't want to help. + +Or wait! What is that, right where she was standing? +</Text><ID>935933</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Wow! I've never seen mushrooms like these outside this cave. The previous mushrooms we saw could have possibly been found in other areas, but this species is completely new. It has bioluminescence.</Text><ID>935934</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MushroomPatch2</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the new mushrooms</Text><ID>936133</ID></Title><Desc><Text>Look at the new mushrooms</Text><ID>936133</ID></Desc></Data> + 0 + false + + + 4380 + HiddenWorld10T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well. We won't know unless we try, right? And I have a good feeling about this one, so I'd love to form a hypothesis around this specimen. Let's take some home. Can you chop the mushroom down and gather a few pieces for us?</Text><ID>935937</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMushrooms</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMushrooms</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the mushrooms</Text><ID>935935</ID></Title><Desc><Text>Chop the mushrooms</Text><ID>935935</ID></Desc></Data> + 0 + false + + + 4381 + HiddenWorld10T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Great! Give them to me, please, and then we can get out of here.</Text><ID>935940</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Perfect. These mushrooms are even better than I first thought. I'm going to love examining them in the Lab.</Text><ID>935941</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>15881</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom for Antidote</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the mushrooms to Heather</Text><ID>935938</ID></Title><Desc><Text>Give the mushrooms to Heather</Text><ID>935938</ID></Desc></Data> + 0 + false + + + 4382 + HiddenWorld10T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The Light Fury is still standing nearby. Could Heather be right? Could the Light Fury have intended for you to find this mushroom? +You should walk forward and try to show your appreciation. Perhaps she'd allow you to {{input}} on her head.</Text><ID>935944</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLightFury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Light Fury</Text><ID>935942</ID></Title><Desc><Text>{{Input}} on the Light Fury</Text><ID>936944</ID></Desc></Data> + 0 + false + + + 4383 + HiddenWorld10T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You never fail to impress me, {{Name}}. The Light Fury doesn't seem like she wants to blast you to pieces, so that's definitely an improvement. I'll go to the Lab and whip up something; when I'm finished, I'll meet you at New Berk. Have a safe flight!</Text><ID>935947</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Welcome back! +It's tough just waiting for people to go out and accomplish things for you. I'm so used to being hands on, but without Toothless by my side I have to stay here and just… wait.</Text><ID>935948</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to New Berk</Text><ID>935945</ID></Title><Desc><Text>Go back to New Berk</Text><ID>936780</ID></Desc></Data> + 0 + false + + + 4385 + HiddenWorld10T17 + <Data><Offer><Type>Popup</Type><ID>935951</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Unfortunately, we won't know if it's working until we try it out on the battlefield. I think we could find a few volunteers to go with us, and I bet a certain lady is very anxious to get her dragon friend back. Can you see if she's ready?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>935952</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I appreciate your speed on this, {{Name}}. Every second that Cloudjumper stays under that evil man's thrall is a moment too long. We must go at once.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924670</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205639 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205639 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205639 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205639 + true + 350 + 350 + + 0 + +
+ false +
+ + 2705 + HiddenWorld11 + 45 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld11T00.unity3d/PfGrpHiddenWorld11T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Against a Bully</Text><ID>935632</ID></Title><Desc><Text>Against a Bully</Text><ID>935632</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2700 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2705 + 4390 + 0 + + + 1 + 2705 + 4391 + 0 + + + 1 + 2705 + 4392 + 0 + + + 1 + 2705 + 4393 + 0 + + + 1 + 2705 + 4394 + 0 + + + 1 + 2705 + 4395 + 0 + + + 1 + 2705 + 4396 + 0 + + + 1 + 2705 + 4429 + 0 + + + + 1 + 205641 + 0 + + 4390 + HiddenWorld11T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I wish that we had a chance to test your antidote in a less volatile situation, but time conspires against us. Astrid has spotted Grimmel headed to New Berk… with Cloudjumper under his thrall. He must not be allowed to arrive at our haven.@@He must not succeed. Let's take the fight to him in the safety of the open waters, before he can reach our home.</Text><ID>935955</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Valka in the seas</Text><ID>935953</ID></Title><Desc><Text>Find Valka in the seas</Text><ID>935953</ID></Desc></Data> + 0 + false + + + 4391 + HiddenWorld11T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Here they come! We'll try to buy you as much time as you need to throw the antidote onto Cloudjumper. Tell Valka the plan while we start the attack!</Text><ID>935958</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I see. This could possibly work. I only wish that I could help more than simply waiting with an escape plan.</Text><ID>935959</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 4392 + HiddenWorld11T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, we don't have time for philosophizing and dillydallying! Come join me and Astrid in destroying these attack ships!</Text><ID>935962</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld11T03CS.unity3d/PfGrpHiddenWorld11T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfBattleBoatMission</Value></Pair><Pair><Key>Name</Key><Value>PfBattleBoatMission</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Sink the lead ship</Text><ID>935960</ID></Title><Desc><Text>Sink the lead ship</Text><ID>935960</ID></Desc></Data> + 0 + false + + + 4393 + HiddenWorld11T04 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld11T04.unity3d/PfGrpHiddenWorld11T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Astrid! No! +Is she all right? We need to help her. I'll give you cover fire!</Text><ID>935965</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's okay. It's okay; he just grazed me. I can fight. +Oh, boy. We sure could use a little calming down from Valka's big friend here.</Text><ID>935966</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AstridHurt</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land next to Astrid</Text><ID>936141</ID></Title><Desc><Text>Land next to Astrid</Text><ID>936141</ID></Desc></Data> + 0 + false + + + 4394 + HiddenWorld11T05 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld11T04.unity3d/PfGrpHiddenWorld11T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld11T05.unity3d/PfGrpHiddenWorld11T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I wish we had time to try the antidote now, but I need your help to repel these dragons! Join me and we'll beat these dragons back for good.</Text><ID>935969</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Yes! Now you'll have a clear line of attack on Cloudjumper.</Text><ID>935970</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DTTrigger</Value></Pair><Pair><Key>Name</Key><Value>STHiddenWorld03MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics Battle</Text><ID>935882</ID></Title><Desc><Text>Defeat the Dragon Tactics Battle</Text><ID>935882</ID></Desc></Data> + 0 + false + + + 4395 + HiddenWorld11T06 + <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld11T06.unity3d/PfGrpHiddenWorld11T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld11T04.unity3d/PfGrpHiddenWorld11T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Uh-oh. Looks like we've grabbed his attention… and Stormfly's not healthy enough to take on the fight. You're going to need to throw the antidote onto him. He's locked his attention on you, though, so you'll have to fly swift and evade the fireballs. You can do it! </Text><ID>935973</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>No!</Text><ID>935974</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld11T07CS.unity3d/PfGrpHiddenWorld11T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>DissolveSphere</Value></Pair><Pair><Key>Name</Key><Value>Dissolve</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Get close while Cloudjumper shoots fireballs at you</Text><ID>936143</ID></Title><Desc><Text>Get close while Cloudjumper shoots fireballs at you</Text><ID>936143</ID></Desc></Data> + 0 + false + + + 4396 + HiddenWorld11T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Enough! We need to get out of here before we get wounded more. Everyone, retreat to New Berk!</Text><ID>935977</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Retreat to New Berk</Text><ID>935975</ID></Title><Desc><Text>Retreat to New Berk</Text><ID>935975</ID></Desc></Data> + 0 + false + + + 4429 + HiddenWorld11T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm so glad you're safe!</Text><ID>936616</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You look like it didn't go well. I'm so sorry I couldn't be there with you. +But. +I think the battle might have been better for us than you think. Something interesting's happened.</Text><ID>936617</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205641 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205641 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205641 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205641 + true + 350 + 350 + + 0 + +
+ false +
+ + 2707 + HiddenWorld12 + 4 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld12T00.unity3d/PfGrpHiddenWorld12T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StableAdjacent</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Did It Work?</Text><ID>935634</ID></Title><Desc><Text>Did It Work?</Text><ID>935634</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2705 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2707 + 4398 + 0 + + + 1 + 2707 + 4399 + 0 + + + 1 + 2707 + 4400 + 0 + + + 1 + 2707 + 4401 + 0 + + + 1 + 2707 + 4402 + 0 + + + 1 + 2707 + 4403 + 0 + + + 1 + 2707 + 4404 + 0 + + + 1 + 2707 + 4405 + 0 + + + 1 + 2707 + 4406 + 0 + + + + 1 + 205642 + 0 + + 4398 + HiddenWorld12T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Snotlout filled me in when he came back from the battle. You did a great job, {{Name}}—you really did. We'll get another chance to free Cloudjumper soon enough, I promise. After all, we only had a prototype to see if it would work. We tried it out in the field, and now we have more information about how it performs.@@It wasn't a total bust, though! If you head on over to the stables, you might see an interesting surprise. +</Text><ID>936147</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StableAdjacent</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the stables</Text><ID>935978</ID></Title><Desc><Text>Go to the stables</Text><ID>935978</ID></Desc></Data> + 0 + false + + + 4399 + HiddenWorld12T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hey there, big guy... Fishmeat and I aren't going to hurt you. Let us come a little closer and help you clean your wounds. +{{Name}}! You can help me!</Text><ID>935982</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Your Grimmel poison antidote was a success! I think. I assume you hit this guy with your antidote? This Deathgripper landed here a little bit ago, disoriented. He won't let anyone get close to him. So, not great. @@He's not attacking us so that's definitely an improvement.</Text><ID>935983</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4400 + HiddenWorld12T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Maybe he'll let you approach him. Thor knows that he won't get comfortable with anyone else!</Text><ID>935986</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You did it! Yes, you did it! </Text><ID>935987</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DeathGripper01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathGripper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Deathgripper</Text><ID>935984</ID></Title><Desc><Text>{{Input}} on the Deathgripper</Text><ID>935984</ID></Desc></Data> + 0 + false + + + 4401 + HiddenWorld12T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We just need to change your antidote to work a little faster, I think. We got lucky that this dragon landed here in his confusion, rather than anywhere else.@@It's not uncommon for early prototypes to fail. We can make progress because we ask questions, test objects, make observations, and gather the information that will lead to success. This process that we're doing right now - testing the antidote on another dragon, then seeing the results - will lead to us creating the best antidote we can.@@I'll tell Heather as soon as I feed this big guy and brush him down. Can you tell Astrid? She hasn't taken losing to Grimmel very well.</Text><ID>936151</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm glad we managed to salvage something from that disaster. I wish that we could have rescued Cloudjumper, or stopped Grimmel, or… I don't know. I hate knowing that we faced them again in open battle and couldn't beat them. How can we protect all dragons if we can't beat our foes?</Text><ID>936152</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 4402 + HiddenWorld12T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm wallowing, aren't I? Sorry. It's not a good look. Don't worry; I'll shake this off and be ready to face Grimmel the next time. We'll beat him together, you and me.@@Speaking of shaking it off... Snotlout has been thinking for hours now and that can't be a great sign. Can you check up on him and make sure he doesn't have some ridiculous plan in mind?</Text><ID>935992</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I walked past Astrid just a few minutes ago and she seemed to be deep in thought. I am, too. I have the most important matters being solved in my head.@@I have a great plan for my home here at New Berk. You've been to my masterpiece at Dragon's Edge, right? Well, how do you really improve on genius? I'll be reconstructing that here and somehow making it even sturdier, flashier, and just better than the original. </Text><ID>935993</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout</Text><ID>905093</ID></Desc></Data> + 0 + false + + + 4403 + HiddenWorld12T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yeah, good old Snotlout will be ready to flourish here in New Berk. All we have to do is defeat the bad guys, save the dragons, be the heroes, yada yada. I'm ready. Hookfang and I are looking forward to our... re-rematch with Grimmel!@@You don't have to worry about me. You should have your eyes on Ruffnut and her nutty brother. Who knows if she's ready for the fight?</Text><ID>935996</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Ha! Snotlout said that? What a goof. Of course he'd try to throw blame in our direction instead. </Text><ID>935997</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>927529</ID></Desc></Data> + 0 + false + + + 4404 + HiddenWorld12T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>While Snotlout has been lazing about his future mansion, Tuffnut and I have been diligently researching how to best improve on your antidote.@@(What? We have layers, just like... delicious pies.) +If you talk to Tuffnut, he'll be able to tell you more. +</Text><ID>936156</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Listen here, bub. There's clearly something wrong with your antidote since it didn't take effect immediately on the battlefield. We can't have that, if we want this to be useful against Grimmel. It is our duty - nay, it is our destiny! - to figure out how this works.</Text><ID>936000</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 4405 + HiddenWorld12T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So. From our calculations, the solution is to improve the speed in which the antidote takes effect. We let Mulch know that was the problem. I hope he's had enough time to figure it out! Can you ask him?</Text><ID>936003</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>The twins are right! I didn't think I'd be saying that in my lifetime.</Text><ID>936004</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch</Text><ID>923238</ID></Desc></Data> + 0 + false + + + 4406 + HiddenWorld12T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Gobber and Heather were on the same wavelength as the twins. I hope they've been able to make progress! They're at the center of the town if you want to follow up on them.</Text><ID>936007</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Aye! Heather and I think we've figured it out. The best lesson is one learned in the field, don't you agree? I think the next time around, we'll have a much better time rescuing those dragons.</Text><ID>936008</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205642 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 205642 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205642 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205642 + true + 350 + 350 + + 0 + +
+ false +
+ + 2708 + HiddenWorld13 + 3 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld13T00.unity3d/PfGrpHiddenWorld13T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWMulch</Asset><Location>PfMarker_DefenseMulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_CliffSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Defending Our Home</Text><ID>935638</ID></Title><Desc><Text>Defending Our Home</Text><ID>935638</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2707 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2708 + 4407 + 0 + + + 2 + 2708 + 2709 + 0 + + + 1 + 2708 + 4409 + 0 + + + 1 + 2708 + 4410 + 0 + + + 1 + 2708 + 4411 + 0 + + + 1 + 2708 + 4412 + 0 + + + 1 + 2708 + 4413 + 0 + + + 1 + 2708 + 4414 + 0 + + + 1 + 2708 + 4427 + 0 + + + 1 + 2708 + 4415 + 0 + + + 2 + 2708 + 2710 + 0 + + + 1 + 2708 + 4417 + 0 + + + + 1 + 205645 + 0 + + 2709 + HiddenWorld13T02 + 3 +

2708

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2709 + 4408 + 0 + + + + 1 + 0 + 0 + + 4408 + HiddenWorld13T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Well, no time to test things. We're gonna have to jump in headfirst into battle and hope that the catapult does the job. (Of course she will - look who created her!)@@Before I rush into battle prep, Hiccup said he had the latest version of the antidote ready. Find him and figure out the plan!</Text><ID>936011</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We got a problem. I was going to administer the antidote for Cloudjumper, but Toothless is still nowhere to be found. Someone else is going to get close enough to Cloudjumper without being shot out of the sky.@@Are you sure you want to do it? It's going to be dangerous. I can't ask you to volunteer.</Text><ID>936012</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>922535</ID></Desc></Data> + 0 + false + + false + + + 2710 + HiddenWorld13T10 + 3 +

2708

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>13T10</Text><ID>935637</ID></Title><Desc><Text>13T10</Text><ID>935637</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2710 + 4416 + 0 + + + + 1 + 205652 + 0 + + 4416 + HiddenWorld13T10 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWCloudjumper</Asset><Location>PfMarker_CliffCloudjumper</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_CliffHiccup</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_CliffValka</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>They're retreating! We did it! Amazing work, {{Name}}! Will you meet me down there?</Text><ID>936015</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I can't praise you enough for your heroics. I shouldn't have bothered worrying, though; you looked like you were having a great time fooling Grimmel's forces.@@And I shouldn't forget about your dragon buddy. They looked amazing out there, zipping past the enemy with ease! What's his name?</Text><ID>936016</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 15914 + + 1 + 5777 + 205652 + true + 1 + 1 + + 0 + +
+ false +
+ + 4407 + HiddenWorld13T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Your hard work has borne fruit: delicious deadly wooden fruit, that is! The beaut is ready, but I'd love to calibrate it against airborne enemies. Can ya and {{dragon name}} meet me down by the catapults?</Text><ID>936019</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Look at the horizon. Is that a... swarm of dragons headed toward us?</Text><ID>936020</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld13T01CS.unity3d/PfGrpHiddenWorld13T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DigSpotGobber</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the defense emplacements</Text><ID>936161</ID></Title><Desc><Text>Visit the defense emplacements</Text><ID>936161</ID></Desc></Data> + 0 + false + + + 4409 + HiddenWorld13T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>How about you, big guy? Do you want to help us out? +{{Name}}, this Deathgripper might trust you since you saved him. Will you get closer to the dragon, show him your hand, and carefully {{input}} on him?</Text><ID>936163</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good. Now with any luck, you'll be able to blend right in with the enslaved Deathgrippers in Grimmel's army. We might have a chance after all.</Text><ID>936164</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DeathGripper</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDeathGripperMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Deathgripper and mount him</Text><ID>936021</ID></Title><Desc><Text>{{Input}} on the Deathgripper and mount him</Text><ID>936021</ID></Desc></Data> + 0 + false + + + 4410 + HiddenWorld13T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We'll engage his forces in the front to give you the distraction you need to get to Cloudjumper. If you follow the waterfall, you might be able to slip past his guards. +Good luck!</Text><ID>936025</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WaterfallTop</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the waterfall</Text><ID>936023</ID></Title><Desc><Text>Fly to the waterfall</Text><ID>936023</ID></Desc></Data> + 0 + false + + + 4411 + HiddenWorld13T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>According to Hiccup, you might be able to avoid being spotted if you fly to the bottom of the waterfall. You should go down the waterfall while keeping close to the ground.</Text><ID>936028</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BottomWaterfall</Value></Pair><Pair><Key>Range</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the bottom of the waterfall</Text><ID>936026</ID></Title><Desc><Text>Fly to the bottom of the waterfall</Text><ID>936026</ID></Desc></Data> + 0 + false + + + 4412 + HiddenWorld13T06 + <Data><Offer><Type>Popup</Type><Asset>PfMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The battle is raging! With all the fighting going on, you might be able to slip past them and get close enough to use the antidote on Cloudjumper. You should fly below and around the invading army.</Text><ID>936031</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_OceanLandmark</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly behind the invaders</Text><ID>936029</ID></Title><Desc><Text>Fly behind the invaders</Text><ID>936029</ID></Desc></Data> + 0 + false + + + 4413 + HiddenWorld13T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There! Cloudjumper's at the front of the battle. You might be able to get the jump on him if you fly above the airship and approach him from behind.</Text><ID>936034</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>And what do you think you're doing on this ship, little rider? </Text><ID>936035</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AboveAirship</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach Cloudjumper from above the airship</Text><ID>936032</ID></Title><Desc><Text>Approach Cloudjumper from above the airship</Text><ID>936032</ID></Desc></Data> + 0 + false + + + 4414 + HiddenWorld13T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>Try anything you would like. Please, indulge yourself! There is nothing you can do to change this unchangeable fact: +your precious Stormcutter is mine.</Text><ID>936038</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld13T09CS.unity3d/PfGrpHiddenWorld13T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CloudjumperFlying</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCloudjumperFlying</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Use the antidote from behind Cloudjumper</Text><ID>936036</ID></Title><Desc><Text>Use the antidote from behind Cloudjumper</Text><ID>936036</ID></Desc></Data> + 0 + false + + + 4415 + HiddenWorld13T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>What? +But... how? How could you possibly...?</Text><ID>936041</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGrimmel</NPC><Text>It seems I underestimated you. I will give you a victor's due and retreat from the battlefield. Rest assured: I will be better prepared the next time our paths cross. My congratulations to you and your master Hiccup. Savor it; this will surely be the last time.</Text><ID>936042</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld13T11CS.unity3d/PfGrpHiddenWorld13T11CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGrimmel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Grimmel</Text><ID>935848</ID></Title><Desc><Text>Talk to Grimmel</Text><ID>935848</ID></Desc></Data> + 0 + false + + + 4417 + HiddenWorld13T11 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWCloudjumper</Asset><Location>PfMarker_CliffCloudjumper</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_CliffHiccup</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_CliffValka</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well it's very nice to meet you. Thanks for saving Cloudjumper with {{Name}}. We won't forget it.@@There are a hundred things to wrap up before we can call this place our home, and my attention is needed elsewhere. Valka asked me to send you her way; can you talk to her while I wrap a few things up?</Text><ID>936045</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Cloudjumper! My old and faithful companion. My heart is full, now that you've regained your senses.@@No dragon should ever be enslaved, and you've shattered the chains that weighed down my proud friend. I could never thank you enough for what you've done today, {{Name}}.</Text><ID>936046</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 4427 + HiddenWorld13T08.5 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld13T08.unity3d/PfGrpHiddenWorld13T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good job! Looks like you got him. We need to press the advantage and give Cloudjumper time to fight off the venom. Let's give Grimmel the fight of his life!</Text><ID>936568</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>DragonTacticsTrigger</Value></Pair><Pair><Key>Name</Key><Value>STHiddenWorld04MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Complete the Dragon Tactics battle</Text><ID>936566</ID></Title><Desc><Text>Complete the Dragon Tactics battle</Text><ID>936566</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205645 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205645 + true + 200 + 200 + + 0 + +
+ + 60 +

12

+ 0 + + 1 + 1207 + 205645 + true + 60 + 60 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205645 + true + 350 + 350 + + 0 + +
+ false +
+ + 2711 + HiddenWorld14 + 45 +

+ <Data><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfGrpHiddenWorld14T00.unity3d/PfGrpHiddenWorld14T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfDWHeadmaster.unity3d/PfDWHeadmaster</Asset><Location>PfMarker_Headmaster</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>The Fate of the Hidden World</Text><ID>935642</ID></Title><Desc><Text>The Fate of the Hidden World</Text><ID>935642</ID></Desc><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDwDragonsD3Quest</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2708 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2711 + 4418 + 0 + + + 1 + 2711 + 4419 + 0 + + + 1 + 2711 + 4420 + 0 + + + 1 + 2711 + 4421 + 0 + + + 1 + 2711 + 4422 + 0 + + + 2 + 2711 + 2712 + 0 + + + 1 + 2711 + 4424 + 0 + + + 1 + 2711 + 4425 + 0 + + + + 1 + 205646 + 0 + + 2712 + HiddenWorld14T06 + 45 +

2711

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2712 + 4423 + 0 + + + + 1 + 205651 + 0 + + 4423 + HiddenWorld14T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissiionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Listen. The solution is easy, right? Come to me and we can talk about it.</Text><ID>936049</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissiionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We've always taught the students of the School to treat dragons with respect. We want to learn about dragons so we can live together in harmony. Well, Grimmel and his dangerous allies don't believe that. We need to make sure they never breach the sanctity of the Hidden World Annex.</Text><ID>936050</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolHiddenWorldDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid</Text><ID>905090</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 15900 + + 1 + 5776 + 205651 + true + 1 + 1 + + 0 + +
+ false + + + 4418 + HiddenWorld14T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I wish that dragons could live without fear of the warlords, Grimmel's machinations, and Stormheart's clutches. While these enemies roam the archipelago, I fear that our job will never be over.@@There are many problems to solve, and the first we should address is the Hidden World Annex. I will bring Hiccup there so that we can address it right away. Can you head to the School while he wraps up his duties here?</Text><ID>936053</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the School</Text><ID>935906</ID></Title><Desc><Text>Go to the School</Text><ID>935906</ID></Desc></Data> + 0 + false + + + 4419 + HiddenWorld14T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Ah! A messenger of news -- good news, I hope. Please, come here and regale me with the tales of New Berk. Did Heather reach New Berk in time? Did the antidote work? Are our dragons safe?</Text><ID>936056</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>As much as I hope that is the last time we hear of Grimmel, I know in my heart that is not the case. A man like that will only stop when he has accomplished his goals. We cannot let him do so; nay, we will not let him. </Text><ID>936057</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text><ID>922008</ID></Title><Desc><Text>Talk to the Headmaster</Text><ID>922008</ID></Desc></Data> + 0 + false + + + 4420 + HiddenWorld14T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Valka is right. The Hidden World Annex will be a tasty target to our enemies. We cannot keep it hidden forever. Enemy ships probe our defenses every week and it will only be a matter of time before they find this cave entrance.@@If they find the Annex, they can find the Hidden World... and that is unacceptable. Let us enter the Annex and join Astrid and the others there.</Text><ID>936060</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>My word! +The beauty of this strange and mysterious place takes my breath away each time I see it. It astounds me that it was below our School this whole time. </Text><ID>936061</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hidden World Annex</Text><ID>936058</ID></Title><Desc><Text>Go to the Hidden World Annex</Text><ID>936058</ID></Desc></Data> + 0 + false + + + 4421 + HiddenWorld14T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Ah! The chief is already here. Good. With the decision maker here, we can come to an agreement and get moving on implementing the solution quickly. +Valka! All is well?</Text><ID>936064</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Thank you, Heyral. Cloudjumper is shaken, but it will take more than the likes of Grimmel to shatter his spirit.</Text><ID>936065</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 4422 + HiddenWorld14T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Cloudjumper took a flight around New Berk to clear his head and now he seems as dedicated and strong as ever. He wanted to thank you himself, {{Name}}. Would you talk to him?</Text><ID>936068</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CloudjumperStart</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCloudjumper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Talk to Cloudjumper</Text><ID>936066</ID></Title><Desc><Text>Talk to Cloudjumper</Text><ID>936066</ID></Desc></Data> + 0 + false + + + 4424 + HiddenWorld14T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This will be the start of a new organization: the Defenders of the Hidden World. Our job will be to protect the Annex and protect dragons everywhere. Once the students of the School of Dragons learn enough about dragons to be able to defend them, they'll join us.</Text><ID>936071</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I wish that it didn't have to be this way. I wish that dragons could live in harmony but we can't change our world. What we can do is keep everyone safe.</Text><ID>936072</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 4425 + HiddenWorld14T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Someday Toothless will need to leave us as the Alpha of all dragons, but that day isn't today. We're going to work together to defend the world we love. Right, Toothless?</Text><ID>936075</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpHiddenWorld14T09CS_FAO.unity3d/PfGrpHiddenWorld14T09CS_FAO</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Toothless</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Talk to Toothless</Text><ID>936073</ID></Title><Desc><Text>Talk to Toothless</Text><ID>936179</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 205646 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205646 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205646 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205646 + true + 350 + 350 + + 0 + +
+ false +
+ + 2714 + Curse01 + 61 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse01T00.unity3d/PfGrpCurse01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmithINT</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Gobble Problem</Text><ID>936684</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2714 + 4433 + 0 + + + 1 + 2714 + 4434 + 0 + + + 1 + 2714 + 4435 + 0 + + + 1 + 2714 + 4436 + 0 + + + 1 + 2714 + 4437 + 0 + + + 1 + 2714 + 4438 + 0 + + + 1 + 2714 + 4439 + 0 + + + 1 + 2714 + 4440 + 0 + + + 1 + 2714 + 4441 + 0 + + + 1 + 2714 + 4442 + 0 + + + 1 + 2714 + 4443 + 0 + + + 1 + 2714 + 4444 + 0 + + + 1 + 2714 + 4445 + 0 + + + 1 + 2714 + 4446 + 0 + + + 1 + 2714 + 4447 + 0 + + + + 1 + 205781 + 0 + + 4433 + Curse01T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Was Gobber right to be superstitious about the Hobgobblers?@@A brave young viking is needed to help get to the heart of the problem being caused in New Berk.</Text><ID>936708</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse01T04CS.unity3d/PfGrpCurse01T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to New Berk</Text><ID>936706</ID></Title><Desc><Text>Go to New Berk</Text><ID>936706</ID></Desc></Data> + 0 + false + + + 4434 + Curse01T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Ah! My old and dear friend! Perhaps you have some answers for this topsy-turvy situation. Please, come here; you'll see exactly what I'm talking about.</Text><ID>936711</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Look at all these Hobgobblers nesting here! It’s like they appeared overnight, and I’ve never seen so many together at once. We're going to trip over them everywhere we go on this island!</Text><ID>936712</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4435 + Curse01T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Some animals are prone to moving in groups. For example, birds will always travel together in a flock when they forage for food or fly. This helps protect each individual bird from larger predators. These creatures do this automatically, though no one tells them to do so; this is an example of [c][3eebff]emergent behavior[/c][ffffff].@@Birds, fish, bacteria, insects, and some dragons do this as well! Still, this amount of herding into one area seems unnatural to me!@@I've heard that an abnormal amount of Hobgobblers is huddled together at the top of the hill overlooking the waterfalls. Can you check it out?</Text><ID>936715</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HobgobblerSheep</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the... 'unique' Hobgobblers</Text><ID>936713</ID></Title><Desc><Text>Find the... 'unique' Hobgobblers</Text><ID>936713</ID></Desc></Data> + 0 + false + + + 4436 + Curse01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Whoever made these Hobgobbler costumes must be behind this. You should look for more evidence of unusual happenings around New Berk.</Text><ID>936718</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HobgobblerBait</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for other things out of the ordinary</Text><ID>936716</ID></Title><Desc><Text>Look for the Hobgobbler Bait</Text><ID>941670</ID></Desc></Data> + 0 + false + + + 4437 + Curse01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hobgobbler bait?! There are only two people on New Berk that could possibly have engineered this. You should talk to Ruffnut right away.</Text><ID>936721</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>How dare you insinuate that something so crude and inelegant could be done by me, the greatest prankster in the known world? +It was Tuffnut.</Text><ID>936722</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 4438 + Curse01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>It’s all for a very noble purpose. Who do you think is the mastermind who can push Gobber over the edge? He’s so scared of these Hobgobblers, and it’s going to be hilarious when he loses his mind. Do you think he’ll start gnawing on his wooden leg, like a baby? Gods, I hope so.@@Trust me. I’m going to win this bet against Tuffnut. My sheep costumes were so much better than his stupid boxes.@@Can you do me a favor? We need an impartial judge. Can you talk to Gobber and see if he's going crazy?</Text><ID>936725</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>It's not too late! Every Viking for themselves! Get out of New Berk before you fall into the grasp of the Hobgobblers!</Text><ID>936726</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 4439 + Curse01T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse01T07.unity3d/PfGrpCurse01T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Well. +No, you're not physically in danger. Still, everyone knows that Hobgobblers are a cursed omen! Only bad luck and horrifying disasters follow in their wake.@@It's starting already! The little devils have Skulder surrounded. Get over there and save him!</Text><ID>936729</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Backbridge</Value></Pair><Pair><Key>Name</Key><Value>STCurseofHGMap01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics battle</Text><ID>935882</ID></Title><Desc><Text>Defeat the Dragon Tactics battle</Text><ID>933766</ID></Desc></Data> + 0 + false + + + 4440 + Curse01T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word! Thank you for rescuing me from my plight! Whew... I need a break. </Text><ID>936732</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It all happened so quickly. I dropped my backpack. A Hobgobbler sat on it, then another, and another and another and... +I don't even know where they all came from!</Text><ID>936733</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4441 + Curse01T09 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well! That was Gobber's biggest fear: being covered in Hobgobblers? That was nothing! I'm definitely not cursed. Can you talk to Gobber and reassure him?</Text><ID>936736</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse01T09CS.unity3d/PfGrpCurse01T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GobberBlacksmithINT</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Reassure Gobber</Text><ID>936734</ID></Title><Desc><Text>Visit the Hobgobblers</Text><ID>941671</ID></Desc></Data> + 0 + false + + + 4442 + Curse01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah! My worst nightmare come to life, right before my eyes! +{{Name}}, you're doomed! You need to act now or it will be too late for you. You need to follow these instructions to the letter! Odin, I hope it’s not too late…</Text><ID>936739</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>The Curse of the Hobgobbler has consumed many a brave Viking over the years. It's their way of torturing good people, for their own twisted pleasure! There's only one documented way of releasing the curse, {{Name}}. Are you ready?@@First, you have to venture to the fires of Outpost Island. Then, at the highest summit, you must turn in a circle three times, throwing salt over opposite shoulders on each rotation. Spit on the ground in front of you and rub it into the dirt with your boot, and...</Text><ID>936740</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber (again)</Text><ID>936737</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 4443 + Curse01T11 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_HiddenWorldEntry</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It really doesn’t seem like Gobber's going to stop any time soon. You should talk to Tuffnut, the other perpetrator of this prank, to see what you can do.</Text><ID>936743</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Here to spoil my fun, are you? It's all in the name of – +Wait. You're telling me that [c][3eebff]you[/c][ffffff] made Gobber flip his lid? You mean [c][3eebff]you won our bet[/c][ffffff]? I can't believe it. Ruffnut is going to be so mad.</Text><ID>936744</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Tuffnut at New Berk</Text><ID>936741</ID></Title><Desc><Text>Find Tuffnut at New Berk</Text><ID>941672</ID></Desc></Data> + 0 + false + + + 4444 + Curse01T12 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_HiddenWorldEntry</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Well! +Helmet off to you, prank thief. You've won this round.@@Now, Astrid's already made me promise to get rid of all these Hobgobblers from our home. I've been sorta shoving all of them down this hole Ruffnut found. Do you wanna see them?</Text><ID>936747</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Yessir-ry, this cave can hold dozens of Hobgobblers. We've rolled forty dragons down this tunnel and it doesn't even look close to being full.</Text><ID>936748</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiddenWorldHole</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the rolling Hobgobblers to the cave</Text><ID>936745</ID></Title><Desc><Text>Look at the cave</Text><ID>941673</ID></Desc></Data> + 0 + false + + + 4445 + Curse01T13 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_HiddenWorldEntry</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_HiddenWorldEntry02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGrpCurse01T13.unity3d/PfDWGrpCurse01T13</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hmm. Where’d they go? I don't see any dragons…</Text><ID>936751</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wait! {{Name}}, give me a moment! +@@I missed out on your adventures last time, and as much as I hate to admit it, you’ve given me a taste for the derring-do. Will you allow me to join you? Let's explore this tunnel cave!</Text><ID>936752</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the cave</Text><ID>936749</ID></Title><Desc><Text>Enter the cave</Text><ID>936749</ID></Desc></Data> + 0 + false + + + 4446 + Curse01T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>This.. must be the land that Hiccup and Astrid found with Stormfly. +[c][3eebff]The Hidden World[/c][ffffff]. The home of dragons. +My word.@@Beautiful. Let's spread out and explore this place, yes?</Text><ID>936755</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiddenWorldTunnel</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the Hidden World</Text><ID>936753</ID></Title><Desc><Text>Explore the Hidden World</Text><ID>936753</ID></Desc></Data> + 0 + false + + + 4447 + Curse01T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}! Over here!</Text><ID>935485</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Look! There are nearly as many Hobgobblers here as there were in New Berk. I believe that we've found where they've all been going!</Text><ID>936759</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist in the Hidden World</Text><ID>936756</ID></Title><Desc><Text>Talk to the Archaeologist in the Hidden World</Text><ID>936756</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 205781 + true + 350 + 350 + + 0 + + + + 65 +

2

+ 0 + + 1 + 633 + 205781 + true + 65 + 65 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205781 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205781 + true + 50 + 50 + + 0 + +
+ false +
+ + 2717 + Curse02 + 25 +

+ <Data><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpCurse02T00.unity3d/PfGrpCurse02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse02T06.unity3d/PfGrpCurse02T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Exploring the Hidden World</Text><ID>936685</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2714 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2717 + 4450 + 0 + + + 1 + 2717 + 4451 + 0 + + + 1 + 2717 + 4452 + 0 + + + 1 + 2717 + 4453 + 0 + + + 1 + 2717 + 4454 + 0 + + + 1 + 2717 + 4455 + 0 + + + 1 + 2717 + 4456 + 0 + + + + 1 + 205782 + 0 + + 4450 + Curse02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The dragon homeland is fascinating, don't you think? This place is so different from where we live. We can figure out how this strange place could be the natural habitat of Hobgobblers. For example, if we can take a closer look at that cave wall, maybe we can figure out more about dragons!</Text><ID>936762</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These structures on the wall of this cave are classic examples of [c][3eebff]speleothems[/c][ffffff], or cave formations. Minerals wash up in one place by water, through drips, condensation, flows, or ponds. They calcify together and gathered into deposits.@@After hundreds of years they create formations. These formations can only form in caves, because the chemical reactions that create them only occur in those conditions. The different types of water movement create different cave formations, like stalactites, stalagmites, and columns!</Text><ID>936763</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveStructure</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the cave structure</Text><ID>936760</ID></Title><Desc><Text>Visit the cave structure</Text><ID>936760</ID></Desc></Data> + 0 + false + + + 4451 + Curse02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>The strangest thing about being in the Hidden World, for me, is that it doesn't feel like we're underground! It's so humid and full of water. We're dealing with a whole different beast altogether, my friend.@@I wonder if the humidity is the reason for the gorgeous fauna. Let's examine the coral!</Text><ID>936766</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Coral may look like rock formations, but they're actually living creatures! Coral are invertebrates that generally live underwater. They form the reefs that line the bottom of oceans. The humidity and the water here at the Hidden World must be enough for them to thrive. Amazing!</Text><ID>936767</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Coral</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the coral structure</Text><ID>936764</ID></Title><Desc><Text>Look at the coral structure</Text><ID>936764</ID></Desc></Data> + 0 + false + + + 4452 + Curse02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Gods, I'm so excited! I can't feel my fingers. Is this normal?</Text><ID>936770</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You have the patience of a hero to follow this scatterbrain all across this cavern. Still, I can't help myself! I feel like I could spend a thousand years down here and I would still uncover a mind blowing scientific discovery every morning!</Text><ID>936771</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4453 + Curse02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Take those gorgeous rock formations in the other chamber as an example. Do you think they could all be crystals? Let's get a closer look!</Text><ID>936774</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>These are solids that have a very intricate structure of a crystal lattice at the fundamentally smallest levels! The structure of these giant, gorgeous crystals form flat faces with sharp angles. It's the most beautiful form of natural geometry in the world, don't you think?</Text><ID>936775</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Rocks</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the rock formations</Text><ID>936772</ID></Title><Desc><Text>Look at the rock formations</Text><ID>936772</ID></Desc></Data> + 0 + false + + + 4454 + Curse02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh! Speaking of amazing finds: this little guy has the same striations as the one you found at New Berk. Do you think it's the same dragon?@@I can't believe he's followed you all the way here. Why don't you reach out with your hand and {{input}} on the top of his head? I'm so excited to see how a Hobgobbler reacts to someone he truly likes!</Text><ID>936778</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That's... underwhelming. +Perhaps I was mistaken?</Text><ID>936779</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse02T05CS.unity3d/PfGrpCurse02T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Unique</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobbler_Unique</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4455 + Curse02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well! Never mind. +In the immortal words of Berkian generals long past: mission accomplished. We can head back to New Berk, aglow with victory. Onward and forward, my good friend!</Text><ID>936782</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse02T06CS.unity3d/PfGrpCurse02T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to New Berk</Text><ID>935945</ID></Title><Desc><Text>Go back to New Berk</Text><ID>936780</ID></Desc></Data> + 0 + false + + + 4456 + Curse02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word! Is it just me or are there more here than ever? Hiccup must know what to do!</Text><ID>936785</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Hobgobblers left for a little bit, especially when you followed them into the cave... but they came right back. Something is drawing them here to New Berk. Back to the drawing board!</Text><ID>936786</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 205782 + true + 250 + 250 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205782 + true + 45 + 45 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205782 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 205782 + true + 350 + 350 + + 0 + +
+ false +
+ + 2718 + Curse03 + 4 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberBlacksmithINT</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse03T00.unity3d/PfGrpCurse03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>More and More and More</Text><ID>936686</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2717 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2718 + 4457 + 0 + + + 1 + 2718 + 4458 + 0 + + + 1 + 2718 + 4459 + 0 + + + 1 + 2718 + 4460 + 0 + + + 1 + 2718 + 4461 + 0 + + + 1 + 2718 + 4462 + 0 + + + 1 + 2718 + 4463 + 0 + + + 1 + 2718 + 4464 + 0 + + + + 1 + 205783 + 0 + + 4457 + Curse03T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Alchemist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The twins have really done it this time! Ugh. +We need to figure this out before we're all overrun with Hobgobblers. Can you see what Heather recommends we do?</Text><ID>936789</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I have a few ideas that I want to explore, but first: I think this little guy was waiting for you to return. Do you know him?</Text><ID>936790</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather</Text><ID>920768</ID></Desc></Data> + 0 + false + + + 4458 + Curse03T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Alchemist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>If he's followed you across three islands, this dragon must have imprinted on you! Sometimes, animals can learn that a specific animal or person is worth its trust.@@Baby birds, for instance, don't know who they are when they hatch; they need to visually imprint on their parents to figure out who they are.@@We don't know how or why these animals imprint on humans, but this guy must have locked on you. Will you reach your hand out and {{input}} on the Hobgobbler?</Text><ID>936793</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh. Okay...</Text><ID>936794</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse03T02CS.unity3d/PfGrpCurse03T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Unique</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobbler_Unique</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4459 + Curse03T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Alchemist</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I apologize for interrupting you two, but Gobber has a 'cornered prey' look in his eyes. (I know it very well, considering how often I felt that way around all these scary dragons before you helped me!)@@No one is more qualified to talk to him than you, {{Name}}. Can you see if you can talk him down from the ledge?</Text><ID>936797</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah! +Where do they [c][3eebff]come from[/c][ffffff]?? I swear they just blink into life!</Text><ID>936798</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 4460 + Curse03T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Gobber_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>These little devils must come from Hel itself, from the way that they poof into being and just multiply. They're not normal, I tell you! Valka needs to know about their abilities, so she can fix this. Go! Go!</Text><ID>936801</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It's so interesting to have all these Hobgobblers here in one place, isn't it? From what I hear, New Berk isn't the only place. They're appearing everywhere around the archipelago. +They're spreading.</Text><ID>936802</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka</Text><ID>924492</ID></Desc></Data> + 0 + false + + + 4461 + Curse03T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Valka_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I'll speak to Astrid and see where else these lovely rascals have been spotted. Can you talk to Fishlegs and find out what he believes about the situation?</Text><ID>936805</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Hobgobblers are able to spread so quickly around the archipelago because they have evolved to have increased fertility. They hatch more eggs, so that Hobgobblers maximize the possibility that their young will survive to reproduce themselves.@@All animals are different, but as a general rule, bigger animals tend to reproduce less than smaller ones.</Text><ID>936806</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 4462 + Curse03T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Fishlegs_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I wish that we could keep all the dragons safe here, but there's just too many of them! They're starting to annoy the other dragons, too. Fishmeat nearly snarled at one, and I don't want him to pick up bad habits!@@Wait - what are they doing over there at the fountain?</Text><ID>936809</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I can't tell if they're taking over or if they just don't care we're here.</Text><ID>936810</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Fountain</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the fountain</Text><ID>936807</ID></Title><Desc><Text>Look at the fountain</Text><ID>936807</ID></Desc></Data> + 0 + false + + + 4463 + Curse03T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse03T07.unity3d/PfGrpCurse03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Speaking of Fishmeat, have you seen him anywhere? Oh gosh, what if he's gotten into trouble? Please find him for me!</Text><ID>936813</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It seems like at least one dragon is enjoying the presence of the Hobgobblers...</Text><ID>936814</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse03T07CS.unity3d/PfGrpCurse03T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GobberBlacksmithINT</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Fishmeat</Text><ID>938977</ID></Title><Desc><Text>Look for Fishmeat</Text><ID>938965</ID></Desc></Data> + 0 + false + + + 4464 + Curse03T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Listen! {{Name}}, you're going about this all the wrong way. Forget about Fishlegs's baby. Get over here and listen to my wisdom.</Text><ID>936817</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You gotta do things the right way if you want to see progress. You can't expect to climb a mountain without the right tools, right? I'll teach you what you need to know to lead these Hobgobblers. Allow me to be your sherpa.</Text><ID>936818</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>927586</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 205783 + true + 75 + 75 + + 0 + + + + 250 +

1

+ 0 + + 1 + 268 + 205783 + true + 250 + 250 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205783 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205783 + true + 50 + 50 + + 0 + +
+ false +
+ + 2719 + Curse04 + 16 +

+ <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpCurse04T00.unity3d/PfGrpCurse04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse04T04.unity3d/PfGrpCurse04T04</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpCurse04T00A.unity3d/PfGrpCurse04T00A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>FarmingDO</Scene><Asset>RS_DATA/PfGrpCurse04T00B.unity3d/PfGrpCurse04T00B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Way of the Hob</Text><ID>936696</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2718 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2719 + 4465 + 0 + + + 1 + 2719 + 4466 + 0 + + + 1 + 2719 + 4467 + 0 + + + 1 + 2719 + 4468 + 0 + + + 1 + 2719 + 4469 + 0 + + + 2 + 2719 + 2720 + 0 + + + 1 + 2719 + 4471 + 0 + + + 1 + 2719 + 4472 + 0 + + + 1 + 2719 + 4473 + 0 + + + 2 + 2719 + 2721 + 0 + + + 2 + 2719 + 2722 + 0 + + + 1 + 2719 + 4476 + 0 + + + 1 + 2719 + 4477 + 0 + + + 1 + 2719 + 4478 + 0 + + + 1 + 2719 + 4479 + 0 + + + 1 + 2719 + 4480 + 0 + + + 1 + 2719 + 4481 + 0 + + + 1 + 2719 + 4482 + 0 + + + 1 + 2719 + 4483 + 0 + + + + 1 + 205822 + 0 + + 2720 + Curse04T06 + 16 +

2719

+ <Data><Offer><Type>Popup</Type><ID>936688</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Sigh. It's my lot in life. +These Hobgobblers have been waiting for their chance to shine. They're eager to have your presence with them! Well, I think they're eager.@@Now, from what I've heard, Tuffnut has put you through your paces with a series of exercises. However, no exercise can replace face to face time with the dragons themselves. Will you find the gathering of Hobgobblers and {{input}} on them, one by one?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Arch_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>923854</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well done!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>{{Input}} on the Hobgobblers</Text><ID>936687</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2720 + 4470 + 0 + + + 1 + 2720 + 4528 + 0 + + + 1 + 2720 + 4529 + 0 + + + 1 + 2720 + 4530 + 0 + + + 1 + 2720 + 4531 + 0 + + + 1 + 2720 + 4532 + 0 + + + + 1 + 0 + 0 + + 4470 + Curse04T06a + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfHobgobblerClick_01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobblerClick_01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4528 + Curse04T06b + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfHobgobblerClick_02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobblerClick_02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4529 + Curse04T06c + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfHobgobblerClick_03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobblerClick_03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4530 + Curse04T06d + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfHobgobblerClick_04</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobblerClick_04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4531 + Curse04T06e + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfHobgobblerClick_05</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobblerClick_05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4532 + Curse04T06f + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfHobgobblerClick_06</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobblerClick_06</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hobgobbler</Text><ID>937013</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + false + + + 2721 + Curse04T10 + 16 +

2719

+ <Data><Offer><Type>Popup</Type><ID>936692</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thanks to the twins's prank, these poor sheep have been scared out of their minds! And, well, they've also been scared out of everything else. They've left sheep droppings everywhere!@@You have your shovel, right? Find the sheep droppings and bury them. They're starting to stink!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>936693</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>You're a saint for taking this chore off Tuffnut's hands!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Bury sheep poop</Text><ID>936691</ID></Title><Desc><Text>Bury sheep poop</Text><ID>936691</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2721 + 4474 + 0 + + + 1 + 2721 + 4526 + 0 + + + 1 + 2721 + 4527 + 0 + + + 1 + 2721 + 4533 + 0 + + + 1 + 2721 + 4534 + 0 + + + 1 + 2721 + 4535 + 0 + + + 1 + 2721 + 4536 + 0 + + + 1 + 2721 + 4537 + 0 + + + + 1 + 0 + 0 + + 4474 + Curse04T10a + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop01</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4526 + Curse04T10b + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop02</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4527 + Curse04T10c + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop03</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4533 + Curse04T10d + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop04</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4534 + Curse04T10e + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop05</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>For Thor's sake, there's so much poop</Text><ID>936839</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4535 + Curse04T10f + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop06</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop06</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4536 + Curse04T10g + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop07</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop07</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + + 4537 + Curse04T10h + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfBuryPoop08</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfBuryPoop08</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shovel the poop</Text><ID>936845</ID></Title><Desc><Text>Shovel the poop</Text><ID>936833</ID></Desc></Data> + 0 + false + + false +
+ + 2722 + Curse04T11 + 16 +

2719

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2722 + 4475 + 0 + + + + 1 + 205848 + 0 + + 4475 + Curse04T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thanks so much for your help. I really appreciate you taking the time while so many people need your attention! I think Gobber was looking for you next.</Text><ID>936849</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Working on such accursed scales wasn't fun! Here you go. Keep it close; I'm sure you'll need it to survive whatever Tuffnut is planning for you in the future!</Text><ID>936850</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 13717 + + 1 + 5935 + 205848 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 16585 + + 1 + 5906 + 205848 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 16586 + + 1 + 5907 + 205848 + true + 1 + 1 + + 0 + +
+ false +
+ + 4465 + Curse04T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse04T01.unity3d/PfGrpCurse04T01</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Tuffnut_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Follow my instructions to the letter, and you will have the strength and spiritual attunement to lead the Hobgobblers. First! These dragons left scales all around New Berk. Find them and grab them!</Text><ID>936853</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Excellent! Extra points on your collection form. Use those quads! Use them!</Text><ID>936854</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfHobgobblerScale</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Hobgobbler scales</Text><ID>936851</ID></Title><Desc><Text>Find the Hobgobbler scales</Text><ID>936851</ID></Desc></Data> + 0 + false + + + 4466 + Curse04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Be a shame if we don't put your nice pile of scales to good use. Put it in Gobber's waiting hands!</Text><ID>936857</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>There ya are! Tuffnut told me you'd be coming. This better work to get all those cursed dragons out of here...</Text><ID>936858</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>16628</Value></Pair><Pair><Key>ItemDescription</Key><Value>Pile of Hobgobbler Scales</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the Hobgobbler scales to Gobber</Text><ID>936855</ID></Title><Desc><Text>Give the Hobgobbler scales to Gobber</Text><ID>941674</ID></Desc></Data> + 0 + false + + + 4467 + Curse04T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Gobber_Hob02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>The way I see it, the faster you jump through Tuffnut's hoops the faster you'll be done with his silliness. He's waiting for you by the waterfall. Stand in front of him!</Text><ID>936861</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Well done, my very young apprentice.</Text><ID>936862</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Curse04(4467)</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Stand before Tuffnut at New Berk</Text><ID>936859</ID></Title><Desc><Text>Stand before Tuffnut at New Berk</Text><ID>936859</ID></Desc></Data> + 0 + false + + + 4468 + Curse04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Second! Embrace the calm of the Hobgobbler. She has seen it all. Done it all. The world could burn and the only thing we'd see in her eyes is the reflection of the blaze. {{Input}} on me, sit there, and channel the spirit of the Hobgobbler.</Text><ID>936867</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>[c][3eebff]PERFECTION![/c][ffffff]</Text><ID>936868</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse04T04CS.unity3d/PfGrpCurse04T04CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>More! + +MAXIMUM CALM!</Text><ID>936869</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Curse04(4467)</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TuffnutObjective</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the Hobgobbler and stay still</Text></Title><Desc><Text>Look at the Hobgobbler and stay still</Text></Desc><Reminder><Text>Come on... stay there, my friend!</Text><ID>936865</ID></Reminder><Failure><Text>You moved!</Text><ID>936866</ID></Failure></Data> + 0 + false + + + 4469 + Curse04T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_HiddenWorldEntry03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That was intense! I need a break. +Talk to Skulder by the Hidden World cave, okay?</Text><ID>936872</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>What am I, the backup plan?</Text><ID>936873</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4471 + Curse04T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut_House</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Please, go back to Tuffnut and let him know you've aced my challenge.</Text><ID>936876</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You don't seem very tired. +Aww... I was hoping Skulder would wear you out with some hard manual labor!</Text><ID>936877</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to Tuffnut</Text><ID>936874</ID></Title><Desc><Text>Come back to Tuffnut</Text><ID>936874</ID></Desc></Data> + 0 + false + + + 4472 + Curse04T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Tuffnut_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfMissionVisit.unity3d/PfMissionVisit</Asset><Location>PfMarker_MountHob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Are you ready? You look ready. Let's go! Moment of truth, {{Name}}: {{input}} on the Hobgobbler and mount him. Keep all my lessons in mind. You're going to need them to survive this harrowing experience!</Text><ID>936880</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So far so good!</Text><ID>936881</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_MountHob</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHobgobblerMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Hobgobbler</Text><ID>936878</ID></Title><Desc><Text>{{Input}} on the Hobgobbler</Text><ID>936791</ID></Desc></Data> + 0 + false + + + 4473 + Curse04T09 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Sheep</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay! Third: right before you came over here, this Hobgobbler dropped something among all those sheep over there. Fly over there and handle the situation, my young disciple!</Text><ID>936884</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Tuffnut sent you? Good. I was starting to think he was trying to wiggle out of his promises.</Text><ID>936885</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Sheep</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the sheep gathering at New Berk</Text><ID>936882</ID></Title><Desc><Text>Fly to the sheep gathering at New Berk</Text><ID>936882</ID></Desc></Data> + 0 + false + + + 4476 + Curse04T12 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Gobber_Hob02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good! Now you are armored for the job. Now we need you to spread the seeds of your knowledge all across the archipelago, and handle the Hobgobblers everywhere!@@I've taken the liberty of letting them know you're coming to save the day. Put that armor on, my friend, and go to the Lookout. The Botanist is waiting for you.</Text><ID>936888</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Lookout in your new armor</Text><ID>936886</ID></Title><Desc><Text>Go to the Lookout</Text><ID>929705</ID></Desc></Data> + 0 + false + + + 4477 + Curse04T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should look for the Botanist.</Text><ID>936891</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>There you are! I've been waiting for you for ages. I love these little guys, but they're overstaying their welcome.</Text><ID>936892</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Botanist</Text><ID>923207</ID></Title><Desc><Text>Talk to the Botanist</Text><ID>923207</ID></Desc></Data> + 0 + false + + + 4478 + Curse04T14 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpCurse04T14.unity3d/PfGrpCurse04T14</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Botanist_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>These adorable babies are eating everything and being a terrible burden on everyone. I need you to grab all the babies! They're the green ones. I can handle the Broad Wings!</Text><ID>936895</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Name</Key><Value>Hob</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab all the green baby Hobgobblers in the Lookout</Text><ID>936893</ID></Title><Desc><Text>Find all the baby Hobgobblers</Text><ID>941676</ID></Desc></Data> + 0 + false + + + 4479 + Curse04T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>I knew I could count on you, {{Name}}. You're reliable. Ruffnut is waiting for you at Zippleback Island. Also - next time you see Tuffnut, tell him I'm not a message board! He can pass on his own notes next time.</Text><ID>936898</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Zippleback Island</Text><ID>930024</ID></Title><Desc><Text>Go to Zippleback Island</Text><ID>930024</ID></Desc></Data> + 0 + false + + + 4480 + Curse04T16 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yo! Yo! Over here, Tuffnut's Disciple!</Text><ID>936901</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You came here just in time. Things are getting really riled up here!</Text><ID>936902</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 4481 + Curse04T17 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Ruffnut_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I was trying to gather as many Hobgobblers here from the other nearby islands so that my group is bigger than Tuffnut's, but one of them found some dragon root from Odin-knows-where. We need to take the dragon root before it drives them all bonkers!</Text><ID>936905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse04T17CS.unity3d/PfGrpCurse04T17CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_4481</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Dragon Root</Text><ID>936903</ID></Title><Desc><Text>Find the Dragon Root</Text><ID>936903</ID></Desc></Data> + 0 + false + + + 4482 + Curse04T18 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpCurse04T18.unity3d/PfGrpCurse04T18</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Oh no! Hang in there, {{Name}}, they're coming after the dragon root! You can't let them have it. Fend them off!</Text><ID>936908</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_4482</Value></Pair><Pair><Key>Name</Key><Value>STCurseofHGMap02DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Guard the dragon root and defeat the Dragon Tactics battle</Text><ID>936906</ID></Title><Desc><Text>Defeat the Dragon Tactics battle</Text><ID>933766</ID></Desc></Data> + 0 + false + + + 4483 + Curse04T19 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Whew. Are you doing okay?</Text><ID>936911</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That was a close one... I'm super impressed.</Text><ID>936912</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 205822 + true + 35 + 35 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 205822 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 205822 + true + 200 + 200 + + 0 + +
+ + 400 +

8

+ 0 + + 1 + 1750 + 205822 + true + 400 + 400 + + 0 + +
+ false +
+ + 2723 + Curse05 + 13 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Backbridge</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse05T00.unity3d/PfGrpCurse05T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_NearMaze01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>PfDWMudrakerMuddie</Asset><Location>PfMarker_NearMaze02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpCurse05T08.unity3d/PfGrpCurse05T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Long Road Home</Text><ID>936697</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2719 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2723 + 4484 + 0 + + + 1 + 2723 + 4485 + 0 + + + 1 + 2723 + 4486 + 0 + + + 1 + 2723 + 4487 + 0 + + + 1 + 2723 + 4488 + 0 + + + 1 + 2723 + 4489 + 0 + + + 1 + 2723 + 4490 + 0 + + + 1 + 2723 + 4491 + 0 + + + 1 + 2723 + 4492 + 0 + + + 1 + 2723 + 4493 + 0 + + + + 1 + 205823 + 0 + + 4484 + Curse05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You'd think averting one crisis is good enough for a full day, but what do I know? Astrid thinks that we need to send everyone back to their homes. Luckily, that's Tuffnut's burden. Find him and talk to him, will ya?</Text><ID>936915</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You did it, {{Name}}. You are a graduate of the Tuffnut Gifted School of the Gobbler. +Now go out there and make me proud.</Text><ID>936916</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut at New Berk</Text><ID>938881</ID></Title><Desc><Text>Talk to Tuffnut at New Berk</Text><ID>938881</ID></Desc></Data> + 0 + false + + + 4485 + Curse05T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler02</Asset><Location>PfMarker_Tuffnut_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I've seen a steady conga line of Hobgobblers headed here from other islands. Our disciples have done a great job herding them through the cave while you were out there dousing fires! I think Skulder is watching the migration. Will you talk to him?</Text><ID>936919</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It would have gone a lot smoother if Tuffnut had lifted a single finger to help out! I suppose I should have expected it.</Text><ID>936920</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4486 + Curse05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Forgive my grumblings. Most of the Hobgobblers have been incredibly sweet and docile as we've herded them through the cave. However, the stragglers are being incredibly stubborn. Perhaps you would have better luck moving them?</Text><ID>936923</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiddenWorldEntry03</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the straggler Hobgobblers</Text><ID>936921</ID></Title><Desc><Text>Go to the Hobgobblers</Text><ID>941677</ID></Desc></Data> + 0 + false + + + 4487 + Curse05T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHobgobblerNPC.unity3d/PfDWHobgobblerNPC</Asset><Location>PfMarker_HiddenWorldEntry03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's the Hobgobbler who's been following you around! You should take him to the cave. {{Input}} on him.</Text><ID>936928</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>You've done it! Now we'll be able to get rid of the last Hobgobblers on this island!</Text><ID>936929</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiddenWorldTunnel</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHobgobblerNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on the Hobgobbler and take him to the cave</Text><ID>936924</ID></Title><Desc><Text>{{Input}} on the Hobgobbler and take him to the cave</Text><ID>936924</ID></Desc><Reminder><Text>Don't leave the dragon behind!</Text><ID>936926</ID></Reminder><Failure><Text>Oh no! You left the Hobgobbler behind!</Text><ID>936927</ID></Failure></Data> + 0 + false + + + 4488 + Curse05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I'll meet you at the Hidden World, my friend. I'll usher the last Hobgobblers as we go through!</Text><ID>936932</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HiddenWorldTunnel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hidden World</Text><ID>936930</ID></Title><Desc><Text>Go to the Hidden World</Text><ID>936930</ID></Desc></Data> + 0 + false + + + 4489 + Curse05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well, now they're... here. I hope no one will be offended by the mess. +How about we fly deeper into the Hidden World and see what's going on?</Text><ID>936935</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I don't remember seeing this many Hobgobblers in here last time...</Text><ID>936936</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Deeper</Value></Pair><Pair><Key>Range</Key><Value>45</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly deeper into the Hidden World</Text><ID>936933</ID></Title><Desc><Text>Fly deeper into the Hidden World</Text><ID>936933</ID></Desc></Data> + 0 + false + + + 4490 + Curse05T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Oh no! It looks like Toothless is being overwhelmed by Hobgobblers! +Can you fly over there and help him out?</Text><ID>936939</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpCurse05T08CS.unity3d/PfGrpCurse05T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Throne</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to Toothless</Text><ID>936937</ID></Title><Desc><Text>Fly to Toothless</Text><ID>936937</ID></Desc></Data> + 0 + false + + + 4491 + Curse05T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Is... is the alpha upset with us for causing all this trouble in his kingdom? +Can you find out? </Text><ID>936942</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wonderful! I'm so relieved. I'm not sure my heart could take disappointment from the king of all dragons. +Wait. When he was... and when they... hmm...</Text><ID>936943</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Throne</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWToothlessAlpha</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Talk to Toothless</Text><ID>936073</ID></Title><Desc><Text>Talk to Toothless</Text><ID>936179</ID></Desc></Data> + 0 + false + + + 4492 + Curse05T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>It looks like the Archaeologist will mutter to himself for a bit longer. You should {{input}} on the Light Fury; maybe she'll tolerate your presence here this time?</Text><ID>936946</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ThroneLightfury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Light Fury</Text><ID>935942</ID></Title><Desc><Text>{{Input}} on the Light Fury</Text><ID>936944</ID></Desc></Data> + 0 + false + + + 4493 + Curse05T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wait a second. +Eureka, I've figured it out! Let me tell you my plan, {{Name}}!</Text><ID>936949</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Did you watch when Toothless commanded the Hobgobblers away from him? They should have scattered. Instead, they all flew toward the same place. That must be where the Hobgobbler nest must be! We can make things right again.</Text><ID>936950</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 205823 + true + 250 + 250 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205823 + true + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205823 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205823 + true + 50 + 50 + + 0 + +
+ false +
+ + 2731 + Curse07 + 16 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse07T00.unity3d/PfGrpCurse07T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_GobberBlacksmithToothless</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Curse, Broken</Text><ID>936700</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWCurseExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2730 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2731 + 4521 + 0 + + + 2 + 2731 + 2732 + 0 + + + 1 + 2731 + 4523 + 0 + + + 1 + 2731 + 4524 + 0 + + + 1 + 2731 + 4525 + 0 + + + + 1 + 205843 + 0 + + 2732 + Curse07T02 + 16 +

2731

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Find the Hobgobbler</Text><ID>936699</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2732 + 4522 + 0 + + + + 1 + 205852 + 0 + + 4522 + Curse07T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>UniqueHobgobbler</Asset><Location>PfMarker_Hiccup_Hob</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, maybe not all of them. There's a surprise waiting for you at the wagon where you first 'fell' for a certain someone... +Why don't you go take a look?</Text><ID>937043</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Hiccup_Hob</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHobgobbler_Unique</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find the Hobgobbler and {{input}} on him</Text><ID>937041</ID></Title><Desc><Text>Find the Hobgobbler</Text><ID>936699</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 16650 + + 1 + 5926 + 205852 + true + 1 + 1 + + 0 + +
+ false + + + 4521 + Curse07T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It was a partnership for the ages, {{Name}}. Me, with the brains. You, with the muscle. Together we became one with the Hobgobbler and accomplished impossible things! Hiccup wishes he was so well attuned with dragons!@@One last order from me, my dutiful student: rub it into Hiccup's face! Ha ha ha.</Text><ID>937046</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's fine by me. I was starting to get worried they'd get out of control! I'm just glad all those Hobgobblers are out of our hair.</Text><ID>937047</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup</Text><ID>905081</ID></Desc></Data> + 0 + false + + + 4523 + Curse07T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It's heartwarming to see you two bonding. +Tuffnut's weird taunts aside, you really did become an amazing advocate for Hobgobblers. You can be really proud of all that you've done for New Berk.@@Do me a favor: can you let Ruffnut know she's not off the hook just yet? There will be consequences. Oh yes, there [c][3eebff]will[/c][ffffff] be consequences.</Text><ID>937050</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Aww man. I lose the first prank war of New Berk [c][3eebff]and[/c][ffffff] Hiccup's going to be a stickler for the rules this time? This sucks.</Text><ID>937051</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>927529</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 4524 + Curse07T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You win some and you lose some. And you won this won! You freaked Gobber out more than we ever could. So I'll have to get my vengeance on you during the next prank war, okay? Be prepared, buddy.@@Oh, and Skulder wanted to talk to you or something? He doesn't look as pale as he usually does after our little escapades. Progress.</Text><ID>937054</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>When we first met, I was deathly afraid of Terrible Terror sneezes. I've now flown through the home of dragons on the back of my own dragon friend. Thank you, {{Name}}. You are a great friend and an amazing partner. You'll make an adventurer out of timid old me in no time!</Text><ID>937055</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>925972</ID></Title><Desc><Text>Talk to the Archaeologist</Text><ID>930250</ID></Desc></Data> + 0 + false + + + 4525 + Curse07T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpCurse07T05.unity3d/PfGrpCurse07T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>One thing still bothers me about this whole affair: Gobber. For a dragon dentist, he is quite distrusting of such a harmless dragon! Do you think he still believes you are cursed?</Text><ID>937058</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I can't believe you're safe. Who'd have thought that a single Viking could overcome the greatest curse of all? It's amazing. Maybe I've had them wrong all along. Even this little gnawer is a cute one, isn't he? Maybe I should give them a fair chance...</Text><ID>937059</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber</Text><ID>927580</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 205843 + true + 100 + 100 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 205843 + true + 300 + 300 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205843 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205843 + true + 50 + 50 + + 0 + +
+ false +
+ + 2776 + Dreadfall2019Q01 + 61 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Avalanche</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q01T08.unity3d/PfGrpDreadfall2019Q01T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q01T00.unity3d/PfGrpDreadfall2019Q01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dreadfall's Revenge [2019]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20897 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2776 + 5665 + 0 + + + 1 + 2776 + 5666 + 0 + + + 1 + 2776 + 5667 + 0 + + + 2 + 2776 + 2777 + 0 + + + 1 + 2776 + 5671 + 0 + + + 2 + 2776 + 2778 + 0 + + + 2 + 2776 + 2779 + 0 + + + 2 + 2776 + 2780 + 0 + + + 1 + 2776 + 5675 + 0 + + + + 1 + 205990 + 0 + + 2777 + Dreadfall2019Q01T04C + 61 +

2776

+ <Data><Offer><Type>Popup</Type><ID>937089</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Can you do me a favor and take a quick look around the island? Maybe you can discover whatever intrusion into this island must have set them off. Keep an eye out for things that you've never seen here before.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Look for a disturbance</Text><ID>937088</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2777 + 5668 + 0 + + + 1 + 2777 + 5669 + 0 + + + 1 + 2777 + 5670 + 0 + + + + 1 + 0 + 0 + + 5668 + Dreadfall2019Q01T04A + <Data><End><Type>Popup</Type><ID>938997</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Nothing here...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NestingSite</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for things out of the ordinary</Text><ID>938995</ID></Title><Desc><Text>Look for things out of the ordinary.</Text><ID>938996</ID></Desc></Data> + 0 + false + + + 5669 + Dreadfall2019Q01T04B + <Data><End><Type>Popup</Type><ID>939000</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hmm, nothing here either...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiddenCoveHiccup</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the island for things that might be spooking the Speed Stingers</Text><ID>939001</ID></Title><Desc><Text>Search the island for things that might be spooking the Speed Stingers.</Text><ID>939002</ID></Desc></Data> + 0 + false + + + 5670 + Dreadfall2019Q01T04C + <Data><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Misc03Toothless</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the island for things that might be spooking the Speed Stingers</Text><ID>939001</ID></Title><Desc><Text>Search the island for things that might be spooking the Speed Stingers.</Text><ID>939002</ID></Desc></Data> + 0 + false + + false + + + 2778 + Dreadfall2019Q01T06 + 61 +

2776

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Give Fishlegs the gas</Text><ID>937090</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2778 + 5672 + 0 + + + + 1 + 205975 + 0 + + 5672 + Dreadfall2019Q01T06 + <Data><Offer><Type>Popup</Type><ID>939005</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Whatever it is, Fishlegs would probably be really excited to see it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939006</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Fascinating! If I had to make a hypothesis now, I'd say that this was some sort of gas similar to the Flightmare defense mechanism. It's not quite the same thing, though. What other dragon could have made this? I'll make a more informed hypothesis once I take it back home and study its components.@@Oh! I forgot. Gobber sent you?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>16772</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mysterious Gas</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the object to Fishlegs</Text><ID>939003</ID></Title><Desc><Text>Give Fishlegs the object.</Text><ID>939004</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 8023 + + 1 + 6132 + 205975 + true + 1 + 1 + + 0 + +
+ false +
+ + 2779 + Dreadfall2019Q01T07 + 61 +

2776

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Give Gobber the sugar</Text><ID>937091</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2779 + 5673 + 0 + + + + 1 + 205976 + 0 + + 5673 + Dreadfall2019Q01T07 + <Data><Offer><Type>Popup</Type><ID>939009</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm so sorry that I didn't give this to you earlier! I came to Icestorm Island to get my stash of sugar for Gobber's secret recipe when I got distracted by the Speed Stingers' odd behavior. This much should be enough to keep Gobber busy for a long time.@@Let's both get back to New Berk! We have a lot of work ahead of us. (Isn't it so exciting??) Gobber will be happy to see so much of the ingredient, I bet!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939010</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Finally! I thought I'd never finish my culinary masterpiece.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>8023</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sugar</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Gobber the sugar in New Berk</Text><ID>939007</ID></Title><Desc><Text>Give Gobber the sugar in New Berk.</Text><ID>939008</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 16667 + + 1 + 6133 + 205976 + true + 1 + 1 + + 0 + +
+ false +
+ + 2780 + Dreadfall2019Q01T08 + 61 +

2776

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Click on the sheep</Text><ID>937092</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2780 + 5674 + 0 + + + + 1 + 205977 + 0 + + 5674 + Dreadfall2019Q01T08 + <Data><Offer><Type>Popup</Type><ID>939013</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Delicious, isn't it? They'll be a favorite with the laddies, that's for sure. Fishlegs and I are going to raise morale and bring this beloved holiday to our new home, all with these candies! We're going to hold a contest to see how many candies each Viking can gather. You can turn them in to earn amazing prizes!@@Here's a good example. You see that mischievous sheep? {{Input}} on her!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939014</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Yes! You'll get a good yield of candy from these skeleton sheep if you put them in your farm!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SkeletonSheep</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSkeletonSheep</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the skele-sheep</Text><ID>939011</ID></Title><Desc><Text>{{Input}} on the skele-sheep.</Text><ID>939012</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 16667 + + 1 + 6134 + 205977 + true + 1 + 1 + + 0 + +
+ false +
+ + 5665 + Dreadfall2019Q01T01 + <Data><Offer><Type>Popup</Type><ID>939017</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Dreadfall is here again; as I grow older, it surprises me how quickly time passes us by! I couldn't imagine the Berk that was celebrating dragons in the way that we do for Dreadfall. It's an improvement.@@This year will be our first Dreadfall at New Berk. Fishlegs and Gobber had something special cooked up for us. Will you talk to Gobber and see if he's ready? I can't wait to see what they've prepared for us!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939018</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>No! Nothing's ready yet! Fishlegs might have planned this whole Dreadfall celebration out, but he's gone missing when I need him most.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title><Desc><Text>Talk to Gobber.</Text><ID>923241</ID></Desc></Data> + 0 + false + + + 5666 + Dreadfall2019Q01T02 + <Data><Offer><Type>Popup</Type><ID>939021</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Missing? Absolutely not, dear Gobber. I spotted Fishlegs headed out toward Icestorm Island. He looked very intent on whatever was on his mind.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>939022</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>There you go, {{Name}}. Can you find Fishlegs and tell him to finish out our plans for Dreadfall? +Now as I was saying, Eret...</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>939023</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! I'm so glad you made it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Avalanche</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Fishlegs at Icestorm Island</Text><ID>925839</ID></Title><Desc><Text>Go to Icestorm Island.</Text><ID>939107</ID></Desc></Data> + 0 + false + + + 5667 + Dreadfall2019Q01T03 + <Data><Offer><Type>Popup</Type><ID>939026</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm trying to get a good look at the local fauna on this island. It's breathtakingly fascinating! These Speed Stingers have been living on the top of this island for years now, but something's changed. You'll see what I mean!@@Get on your dragon and fly above the summit of the mountain to get a closer look. Be careful; these dragons will attack on sight!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939027</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I can't tell what they're doing! I would almost say that the Speed Stingers are on high alert for danger, but what could possibly be threatening them?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_IceWorldLake</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at the Speed Stingers at the summit</Text><ID>939024</ID></Title><Desc><Text>Look at the Speed Stingers at the summit.</Text><ID>939025</ID></Desc></Data> + 0 + false + + + 5671 + Dreadfall2019Q01T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q01T05.unity3d/PfGrpDreadfall2019Q01T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939030</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Wait! What is that?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWGas</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the mysterious gas</Text><ID>939028</ID></Title><Desc><Text>Pick up the gas.</Text><ID>939029</ID></Desc></Data> + 0 + false + + + 5675 + Dreadfall2019Q01T09 + <Data><Offer><Type>Popup</Type><ID>939033</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>G-g-g-g-g-ghost! +GHOSTS! EVERYONE! + +Run for your lives!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939034</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Old Berk is haunted, {{Name}}! All our sins, returned for vengeance! We're doomed!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBucket</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Bucket</Text><ID>923073</ID></Title><Desc><Text>Talk to Bucket.</Text><ID>928731</ID></Desc></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 205990 + false + 35 + 35 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 205990 + false + 250 + 250 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 205990 + false + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205990 + false + 50 + 50 + + 0 + +
+ + 50 +

6

+ 16667 + + 1 + 6147 + 205990 + false + 50 + 50 + + 0 + +
+ false +
+ + 2781 + Dreadfall2019Q02 + 5 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_SnoggletogRuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_DreadfallHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q02T00.unity3d/PfGrpDreadfall2019Q02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>GHOSTS! [2019]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2776 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2781 + 5676 + 0 + + + 1 + 2781 + 5677 + 0 + + + 1 + 2781 + 5678 + 0 + + + 1 + 2781 + 5679 + 0 + + + 1 + 2781 + 5680 + 0 + + + 1 + 2781 + 5681 + 0 + + + 1 + 2781 + 5682 + 0 + + + 1 + 2781 + 5683 + 0 + + + 1 + 2781 + 5684 + 0 + + + 1 + 2781 + 5685 + 0 + + + + 1 + 205983 + 0 + + 5676 + Dreadfall2019Q02T01 + <Data><Offer><Type>Popup</Type><ID>939037</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>G-ghost! The bucket on my head has grown two sizes too small! I - I - mercy! +Mulch can explain!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939038</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>Good old Bucket can sometimes dream of fanciful things, but this time, I saw it too! I'm so scared! Bucket and I went back to Berk to help set up some Dreadfall activities when we saw it. Heard it.@@Bones! Flying through the air! The skies opened up, as if Thor himself were warning us away. We left as soon as possible.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMulch</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mulch</Text><ID>927461</ID></Title><Desc><Text>Talk to Mulch.</Text><ID>928564</ID></Desc></Data> + 0 + false + + + 5677 + Dreadfall2019Q02T02 + <Data><Offer><Type>Popup</Type><ID>939041</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMulch</NPC><Text>We're both very familiar with Boneknappers, of course. That was where my mind went first when Bucket approached me about this... but no. It wasn't like any Boneknapper I've ever seen. A ghost!@@We need to stay away from that accursed place. That place is dead to me! It served us well but now it's dead. Can you let Astrid know we won't be able to finish our tasks?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939042</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Bucket and Mulch are being ridiculous. They think there are ghosts at Berk? After all they've seen and done?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5678 + Dreadfall2019Q02T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_GobberBlacksmith</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939045</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There's no way that it's actually a ghost out there. We'll go there right now and show Bucket there's nothing to be afraid of. +Wait - what is it, Fishlegs?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939046</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I hate to dampen your enthusiasm, Astrid, but you promised me you'd help me seed the race tracks and Flight Club levels for candy! I'd get someone else to do it, but you and Stormfly already know every inch of those tracks!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 5679 + Dreadfall2019Q02T04 + <Data><Offer><Type>Popup</Type><ID>939049</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Shoot, I forgot. It's important that Flight Club and racing have candy rewards for Dreadfall! {{Name}}, can you talk to Hiccup? Please make sure Hiccup and Bucket go to Berk with you; we need to ease Bucket's illogical worries.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939050</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm glad to help! Bucket, are you ready to head out?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 5680 + Dreadfall2019Q02T05 + <Data><Offer><Type>Popup</Type><ID>939053</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>I don't like it... +but I go where the chieftain wills. (Please protect me, Thor!) +To old Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Berk</Text><ID>930816</ID></Title><Desc><Text>Go to Berk.</Text><ID>930817</ID></Desc></Data> + 0 + false + + + 5681 + Dreadfall2019Q02T06 + <Data><Offer><Type>Popup</Type><ID>939056</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It feels so weird walking through these buildings again. Memories are rushing in... but this place doesn't feel the same without all my friends and dragons here with me. Berk really is the people, don't you think? +Bucket, how are you doing?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939057</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>No ghosts yet. Bucket is golden. +I can tell Mulch that the maze is ready to go! People will be able to run through the maze and hunt its secrets to earn a ton of candy! More candy than anyone can ever handle!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogRuffnut</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Bucket</Text><ID>939054</ID></Title><Desc><Text>Find Bucket.</Text><ID>939055</ID></Desc></Data> + 0 + false + + + 5682 + Dreadfall2019Q02T07 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939060</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait. I hear something by the old Great Hall. Meet me there, Vikings!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDreadfall2019Q02T07CS.unity3d/PfGrpDreadfall2019Q02T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Valka</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the old Great Hall in Berk</Text><ID>939058</ID></Title><Desc><Text>Fly to the old Great Hall in Berk.</Text><ID>939059</ID></Desc></Data> + 0 + false + + + 5683 + Dreadfall2019Q02T08 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q02T08.unity3d/PfGrpDreadfall2019Q02T08</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939063</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Uh oh! She's trying to protect her territory! Come close to me so we can defend each other!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDreadfall2019Q02T08CS.unity3d/PfGrpDreadfall2019Q02T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Valka</Value></Pair><Pair><Key>Name</Key><Value>STDreadfall01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Dragon Tactics battle</Text><ID>935882</ID></Title><Desc><Text>Defeat the Dragon Tactics battle.</Text><ID>935187</ID></Desc></Data> + 0 + false + + + 5684 + Dreadfall2019Q02T09 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939066</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whew! Are you doing okay, {{Name}}? What a ferocious dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939067</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I've never seen a dragon like her before. She looked sort of like a Boneknapper, but she looked like she manipulated electric energies like a Skrill. She looked like she could be a hybrid of those two dragons...@@Could she have been the reason the Speed Stingers were riled up at Icestorm Island?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 5685 + Dreadfall2019Q02T10 + <Data><Offer><Type>Popup</Type><ID>939070</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBucket</NPC><Text>Boy, am I'm glad that Mulch and I weren't chased away by a ghost. It was just an undiscovered dragon that no one had ever seen before. +Do you see something in the water?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939071</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What. Was. That? I think it was sailing toward the Training Grounds... +Okay. Let's not worry about that for now. For now, we should make sure to enjoy the Dreadfall activities that Fishlegs and co have set up for us! Let's get some candies!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpDreadfall2019Q02T10CS.unity3d/PfGrpDreadfall2019Q02T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BeachToBoat</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look at something odd over the Berk bay</Text><ID>939068</ID></Title><Desc><Text>Visit the Berk bay.</Text><ID>939069</ID></Desc></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 205983 + false + 300 + 300 + + 0 + + + + 65 +

2

+ 0 + + 1 + 633 + 205983 + false + 65 + 65 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205983 + false + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205983 + false + 50 + 50 + + 0 + +
+ + 100 +

6

+ 16667 + + 1 + 6150 + 205983 + false + 100 + 100 + + 0 + +
+ false +
+ + 2782 + Dreadfall2019Q03 + 10 +

+ <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q03T00.unity3d/PfGrpDreadfall2019Q03T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Return of the Dagur [2019]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2781 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2782 + 5686 + 0 + + + 1 + 2782 + 5687 + 0 + + + 1 + 2782 + 5688 + 0 + + + 1 + 2782 + 5689 + 0 + + + 1 + 2782 + 5690 + 0 + + + 1 + 2782 + 5691 + 0 + + + 1 + 2782 + 5692 + 0 + + + 1 + 2782 + 5693 + 0 + + + + 1 + 205985 + 0 + + 5686 + Dreadfall2019Q03T01 + <Data><Offer><Type>Popup</Type><ID>939074</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I always get anxious when my plans begin to unfold, but it looks like my worries are unfounded this time. Dreadfall is going great! People are really getting into the spirit of things.@@Astrid is the only holdout; she hasn't been gathering any candy. Will you talk to her and see what's going on? Maybe you can convince her to join the fun.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939075</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've been thinking about the mysterious dragon you and Hiccup ran into at old Berk, {{Name}}. I think there might be a way to make sure that the dragon is friendly.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5687 + Dreadfall2019Q03T02 + <Data><Offer><Type>Popup</Type><ID>939078</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I don't know if it's a Skrill or if it's a Boneknapper, or some new dragon with both of their features. Either way, it could spell trouble for us. The Skrill we've faced have been aggressive and territorial, and the Boneknapper was cantankerous too. I've been watching old Berk, but she's nowhere to be found. @@ Hiccup told me he'd ask around if she's been sighted around the archipelago; can you talk to him and see if he has any leads?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939079</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I've had dragon riders fly all around the archipelago, but no luck yet I'm afraid.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 5688 + Dreadfall2019Q03T03 + <Data><Offer><Type>Popup</Type><ID>939082</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I asked Fishlegs to reach out to our allies among the Berserkers and the Defenders of the Wing. Maybe they've had a little bit more luck. Can you ask him if they've responded yet?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939083</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh! A letter came from Mala earlier today but I forgot about it in all the hubbub. You see, I've been helping sort out this Daily Job Board! During Dreadfall, we're encouraging all Berkians to come and help out our fellow Vikings. (All for a healthy amount of candies, of course.) You should check it out!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 5689 + Dreadfall2019Q03T04 + <Data><Offer><Type>Popup</Type><ID>939086</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There I go, getting distracted again! Sorry, sorry sorry. Let's see... oh, actually, it's from Dagur! He's using her stationary now? Aww, way too cute.@@Okay! It sounds like they found a dragon that sort of fits our description and they're going to be bringing her to the Training Grounds. Maybe they've already arrived? Sorry for the late delivery of the letter!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Training Grounds</Text><ID>935805</ID></Title><Desc><Text>Go to the Training Grounds.</Text><ID>929556</ID></Desc></Data> + 0 + false + + + 5690 + Dreadfall2019Q03T05 + <Data><Offer><Type>Popup</Type><ID>939089</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Now, where could Dagur be?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939090</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>{{Name}}! +I'm so pleased to see you! I'm always saying that you're my third favorite Viking. Aren't I always saying that, love dove?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfBerserkerShip</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Dagur</Text><ID>939087</ID></Title><Desc><Text>Look for Dagur.</Text><ID>939088</ID></Desc></Data> + 0 + false + + + 5691 + Dreadfall2019Q03T06 + <Data><Offer><Type>Popup</Type><ID>939093</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>That you are, my fierce flame. It's just as well that you're here, {{Name}}. Our dragon hasn't been too cooperative on the way over here.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939094</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>My darling Mala was the one to discover the one you were looking for. We were out searching for Skrills to join the Berserkers when we came across her. We think she was trying to become friends with a Skrill at Glacier Island, but the Skrill was having none of it. No fault of our mystery dragon; Skrill just are very territorial!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur.</Text><ID>931908</ID></Desc></Data> + 0 + false + + + 5692 + Dreadfall2019Q03T07 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_DreadfallHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_DreadfallToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939097</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>We call her the Skrillknapper. I believe the species is called the Voltknapper, but with our ancient ties with the Skrill, the name felt more appropriate. Dagur was able to calm her down enough to lead her here.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>939098</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Oh yes, we Berserkers are naturally in tune with Skrills. It's a gift that I'm only happy to use for your benefit.@@Oh! Our darling anger lightning ball seems to have flown over there. You should talk to her!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>939099</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallHiccup</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the Skrillknapper</Text><ID>939095</ID></Title><Desc><Text>Fly to the Skrillknapper.</Text><ID>939096</ID></Desc></Data> + 0 + false + + + 5693 + Dreadfall2019Q03T08 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_DreadfallHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_DreadfallToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939102</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Skrillknapper, huh? That sounds appropriate... +I think if you approach her slowly, she'd let you get closer. Can you get close and {{input}} on her?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939103</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great job! +I don't think you've trained her yet, but she seems a lot calmer now. Thanks to you, we'll be able to get closer and study this new type of dragon. It's so exciting!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SkrillknapperLanded</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSkrillknapperLanded</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Skrillknapper</Text><ID>939100</ID></Title><Desc><Text>{{Input}} on the Skrillknapper.</Text><ID>939101</ID></Desc></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 205985 + false + 350 + 350 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 205985 + false + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 205985 + false + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205985 + false + 50 + 50 + + 0 + +
+ + 150 +

6

+ 16667 + + 1 + 6148 + 205985 + false + 150 + 150 + + 0 + +
+ false +
+ + 2783 + Dreadfall2019Q04 + 10 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpDreadfall2019Q04T00.unity3d/PfGrpDreadfall2019Q04T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dangers in the Ice [2019]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2782 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2783 + 5694 + 0 + + + 1 + 2783 + 5695 + 0 + + + 1 + 2783 + 5696 + 0 + + + 2 + 2783 + 2784 + 0 + + + 1 + 2783 + 5698 + 0 + + + 1 + 2783 + 5699 + 0 + + + + 1 + 205986 + 0 + + 2784 + Dreadfall2019Q04T04 + 10 +

2783

+ <Data><Offer><Type>Popup</Type><ID>937097</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Speed Stingers are touchy dragons to begin with, but this dragon they're fighting seems just as angry...@@Wait - is that dragon - he sort of looks like a Speed Stinger too! +No - first things first - {{Name}}, drive that mystery dragon away from the Speed Stingers! Shoot him with fireballs!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>937098</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Yeah!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Shoot the dragon away from the Speed Stingers!</Text><ID>939105</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 5 + + 1 + 2784 + 5697 + 0 + + + + 1 + 0 + 0 + + 5697 + Dreadfall2019Q04T04 + <Data><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWFlightstinger</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFlightstinger</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the dragon away from the Speed Stingers!</Text><ID>939105</ID></Title><Desc><Text>Shoot the dragon away from the Speed Stingers!</Text><ID>939105</ID></Desc></Data> + 0 + false + + false + + + 5694 + Dreadfall2019Q04T01 + <Data><Offer><Type>Popup</Type><ID>939108</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Dreadfall has been a well-oiled machine for this entire month, thanks in large part to your help. Everyone is getting in on the fun! It's so good to see.@@Still, I can't stop thinking about the mystery we left on Icestorm Island. Now that our chores are done, we can indulge our curiosity, don't you think? See you at Icestorm Island!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Icestorm Island</Text><ID>938981</ID></Title><Desc><Text>Go to Icestorm Island.</Text><ID>939107</ID></Desc></Data> + 0 + false + + + 5695 + Dreadfall2019Q04T02 + <Data><Offer><Type>Popup</Type><ID>939111</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don't know why, but I feel really uneasy right now. I wonder if everything is okay? Can you humor me and check in on the Speed Stingers? I remember that they were pretty disturbed the last time we were here. Maybe they sensed the danger before.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GeothermalEntrance</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the summit of Icestorm Island</Text><ID>939109</ID></Title><Desc><Text>Fly to the summit of Icestorm Island.</Text><ID>939110</ID></Desc></Data> + 0 + false + + + 5696 + Dreadfall2019Q04T03 + <Data><Offer><Type>Popup</Type><ID>939114</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What?! Where did they all go?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939115</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! Be careful... they're ready to strike!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StingerBattle</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Speed Stingers</Text><ID>939112</ID></Title><Desc><Text>Look for the Speed Stingers.</Text><ID>939113</ID></Desc></Data> + 0 + false + + + 5698 + Dreadfall2019Q04T05 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939118</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oops. I think we've worn out our welcome. Back to the camp, {{Name}}? +Let's go!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpDreadfall2019Q04T04CS.unity3d/PfGrpDreadfall2019Q04T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939119</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>That dragon tore out of here like his hair is on fire! Is everything okay? He was spraying Flightmare gas all over the place, though he didn't look like any Flightmare I've ever seen.@@(I could be wrong, though; I ducked and covered as soon as he appeared. He didn't look happy!)</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Astrid</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get away from the Speed Stingers to the camp</Text><ID>939116</ID></Title><Desc><Text>Get away from the Speed Stingers.</Text><ID>939117</ID></Desc></Data> + 0 + false + + + 5699 + Dreadfall2019Q04T06 + <Data><Offer><Type>Popup</Type><ID>939122</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Could he have been a hybrid dragon, just like the one you met at the Training Grounds? We need to let Hiccup know right away!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939123</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. That's incredible! It's like a new tidal wave of change happening all across the archipelago. We'll have to keep an eye out for new dragons wherever we go... though maybe we should be more careful with that one, hmm? He sounds like we need to approach him with caution.@@Oh - and good job finding him, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at New Berk</Text><ID>939120</ID></Title><Desc><Text>Talk to Hiccup at New Berk.</Text><ID>939121</ID></Desc></Data> + 0 + false + + + 200 +

1

+ 0 + + 1 + 218 + 205986 + false + 200 + 200 + + 0 + +
+ + 85 +

2

+ 0 + + 1 + 523 + 205986 + false + 85 + 85 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 205986 + false + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 205986 + false + 50 + 50 + + 0 + +
+ + 200 +

6

+ 16667 + + 1 + 6149 + 205986 + false + 200 + 200 + + 0 + +
+ false +
+ + 2786 + DreadfallMaze 2019 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>DreadfallMaze 2019 T01</Text><ID>937100</ID></Title></Data> + false + 0 + + + 5 + 09-01-2019 12:00:00,12-01-2019 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2786 + 5701 + 0 + + + + 1 + 205991 + 0 + + 5701 + DreadfallMaze 2019 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get to the end of the Dreadfall maze</Text><ID>939124</ID></Title><Desc><Text>Get to the end of the Dreadfall maze.</Text><ID>939125</ID></Desc></Data> + 0 + false + + + 250 +

6

+ 16667 + + 1 + 6151 + 205991 + true + 250 + 250 + + 0 + + + false +
+ + 2787 + DreadfallMaze 2019 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dreadfall 2019 Quest 2</Text><ID>937101</ID></Title></Data> + false + 0 + + + 5 + 09-01-2019 12:00:00,12-01-2019 12:00:00 + 0 + false + + + 3 + 2786 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2787 + 5702 + 0 + + + + 1 + 205992 + 0 + + 5702 + DreadfallMaze 2019 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>HauntedHouseDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Finish the Dreadfall Maze</Text><ID>939126</ID></Title><Desc><Text>Finish the Dreadfall Maze.</Text><ID>939127</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 16774 + + 1 + 6152 + 205992 + true + 1 + 1 + + 0 + + + false +
+ + 2790 + MainReward1 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>First Event Reward</Text><ID>937102</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2790 + 5711 + 0 + + + + 1 + 206009 + 206008 + + 5711 + MainReward1 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>17830</Value></Pair><Pair><Key>ItemDescription</Key><Value>Common Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Get your Main Reward</Text><ID>939133</ID></Title><Desc><Text>Get your Main Reward</Text><ID>939133</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 17861 + + 1 + 7537 + 206009 + true + 1 + 1 + + 0 + + + false +
+ + 2806 + MainReward2 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward2</Text><ID>937108</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2806 + 5748 + 0 + + + + 1 + 206013 + 0 + + 5748 + MainReward2 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward2</Text><ID>937108</ID></Title></Data> + 0 + false + + + 1 +

6

+ 17860 + + 1 + 7538 + 206013 + true + 1 + 1 + + 0 + + + false +
+ + 2807 + MainReward3 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward3</Text><ID>937109</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2807 + 5749 + 0 + + + + 1 + 206014 + 0 + + 5749 + MainReward3 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17862 + + 1 + 7542 + 206014 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17863 + + 1 + 7543 + 206014 + true + 1 + 1 + + 0 + +
+ false +
+ + 2808 + MainReward4 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward4</Text><ID>937110</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2808 + 5750 + 0 + + + + 1 + 206015 + 0 + + 5750 + MainReward4 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17830</Value></Pair><Pair><Key>ItemDescription</Key><Value>Common Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>150</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17866 + + 1 + 7540 + 206015 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17867 + + 1 + 7541 + 206015 + true + 1 + 1 + + 0 + +
+ false +
+ + 2809 + MainReward5 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward5</Text><ID>937111</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2809 + 5751 + 0 + + + + 1 + 206016 + 0 + + 5751 + MainReward5 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17830</Value></Pair><Pair><Key>ItemDescription</Key><Value>Common Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>250</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17887 + + 1 + 7550 + 206016 + true + 1 + 1 + + 0 + + + false +
+ + 2810 + MainReward6 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward6</Text><ID>937112</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2810 + 5752 + 0 + + + + 1 + 206017 + 0 + + 5752 + MainReward6 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17830</Value></Pair><Pair><Key>ItemDescription</Key><Value>Common Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>250</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>100</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17880 + + 1 + 7546 + 206017 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17881 + + 1 + 7547 + 206017 + true + 1 + 1 + + 0 + +
+ false +
+ + 2811 + MainReward7 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward7</Text><ID>937113</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2811 + 5753 + 0 + + + + 1 + 206018 + 0 + + 5753 + MainReward7 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>200</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17868 + + 1 + 7551 + 206018 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17869 + + 1 + 7552 + 206018 + true + 1 + 1 + + 0 + +
+ false +
+ + 2812 + MainReward8 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward8</Text><ID>937114</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2812 + 5754 + 0 + + + + 1 + 206108 + 0 + + 5754 + MainReward8 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>200</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17874 + + 1 + 7553 + 206108 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17875 + + 1 + 7554 + 206108 + true + 1 + 1 + + 0 + +
+ false +
+ + 2813 + MainReward9 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward9</Text><ID>937115</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2813 + 5755 + 0 + + + + 1 + 206019 + 0 + + 5755 + MainReward9 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17831</Value></Pair><Pair><Key>ItemDescription</Key><Value>Uncommon Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>250</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type></Data> + 0 + false + + + 1 +

6

+ 17893 + + 1 + 7606 + 206019 + true + 1 + 1 + + 0 + + + false +
+ + 2815 + MainReward11 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward11</Text><ID>939136</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2815 + 5743 + 0 + + + + 1 + 206021 + 0 + + 5743 + MainReward11 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>133</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17833</Value></Pair><Pair><Key>ItemDescription</Key><Value>Epic Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>51</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward11</Text><ID>939136</ID></Title></Data> + 0 + false + + + 1 +

6

+ 16806 + + 1 + 7558 + 206021 + true + 1 + 1 + + 0 + + + false +
+ + 2816 + MainReward12 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward12</Text><ID>939137</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2816 + 5744 + 0 + + + + 1 + 206022 + 0 + + 5744 + MainReward12 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>159</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17833</Value></Pair><Pair><Key>ItemDescription</Key><Value>Epic Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>77</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17834</Value></Pair><Pair><Key>ItemDescription</Key><Value>Legendary Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward12</Text><ID>939137</ID></Title></Data> + 0 + false + + + 1 +

6

+ 17865 + + 1 + 7559 + 206022 + true + 1 + 1 + + 0 + + + false +
+ + 2817 + MainReward13 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward13</Text><ID>937106</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2817 + 5745 + 0 + + + + 1 + 206023 + 0 + + 5745 + MainReward13 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17832</Value></Pair><Pair><Key>ItemDescription</Key><Value>Rare Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>320</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17833</Value></Pair><Pair><Key>ItemDescription</Key><Value>Epic Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>117</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17834</Value></Pair><Pair><Key>ItemDescription</Key><Value>Legendary Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>23</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward13</Text><ID>937106</ID></Title></Data> + 0 + false + + + 1 +

6

+ 17902 + + 1 + 7590 + 206023 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17903 + + 1 + 7591 + 206023 + true + 1 + 1 + + 0 + +
+ false +
+ + 2818 + MainReward14 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2818 + 5746 + 0 + + + + 1 + 206109 + 0 + + 5746 + MainReward14 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17833</Value></Pair><Pair><Key>ItemDescription</Key><Value>Epic Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>266</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17834</Value></Pair><Pair><Key>ItemDescription</Key><Value>Legendary Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>109</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward14</Text><ID>939139</ID></Title></Data> + 0 + false + + + 1 +

6

+ 12366 + + 1 + 7589 + 206109 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17890 + + 1 + 7588 + 206109 + true + 1 + 1 + + 0 + +
+ false +
+ + 2819 + MainReward15 + 57 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>MainReward15</Text><ID>939141</ID></Title></Data> + false + 0 + + + 5 + 01-06-2019 12:00:00,01-30-2020 07:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2819 + 5747 + 0 + + + + 1 + 206025 + 0 + + 5747 + MainReward15 + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17833</Value></Pair><Pair><Key>ItemDescription</Key><Value>Gingerbread Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>228</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>17834</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothless Cookie</Value></Pair><Pair><Key>Quantity</Key><Value>214</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>MainReward15</Text><ID>939141</ID></Title><Desc><Text>MainReward15</Text><ID>939141</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 12366 + + 1 + 7587 + 206025 + true + 1 + 1 + + 0 + + + + 1 +

6

+ 17889 + + 1 + 7586 + 206025 + true + 1 + 1 + + 0 + +
+ false +
+ + 2836 + 2019 Snoggletog01 + 61 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2019Q01T00.unity3d/PfGrpSnoggletog2019Q01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Bringing Family Home</Text><ID>937063</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20898 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2836 + 5788 + 0 + + + 1 + 2836 + 5789 + 0 + + + 1 + 2836 + 5790 + 0 + + + 1 + 2836 + 5791 + 0 + + + 1 + 2836 + 5792 + 0 + + + 1 + 2836 + 5793 + 0 + + + 1 + 2836 + 5794 + 0 + + + + 1 + 206115 + 0 + + 2936 + 2019 Snoggletog01 + 16 +

2836

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2019Q01T00.unity3d/PfGrpSnoggletog2019Q01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Bringing Family Home</Text><ID>937063</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-06-2019 08:00:00,01-23-2020 07:59:59 + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2936 + 5788 + 0 + + + 1 + 2936 + 5789 + 0 + + + 1 + 2936 + 5790 + 0 + + + 1 + 2936 + 5791 + 0 + + + 1 + 2936 + 5792 + 0 + + + 1 + 2936 + 5793 + 0 + + + 1 + 2936 + 5794 + 0 + + + + 1 + 206338 + 0 + + 6073 + 2020SnoggletogK01T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Maze</Text><ID>938773</ID></Title><Desc><Text>Go to the Maze.</Text><ID>928853</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206338 + true + 150 + 150 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 206338 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206338 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206338 + true + 50 + 50 + + 0 + +
+ + 500 +

6

+ 18569 + + 1 + 7970 + 206338 + true + 500 + 500 + + 0 + +
+ false + + + 5788 + 2019Snoggletog01T01 + <Data><Offer><Type>Popup</Type><ID>938510</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Can you believe it? Time seems to be racing along with Speed Stinger legs this year! We had such a successful Dreadfall celebration - with a lot of thanks due to Astrid and myself, if you'd permit me to pat myself on the back. @@But! Snoggletog is on us, and it's so important to celebrate everything we've accomplished now. Can you find Astrid and talk to her about our plans for our home during this holiday?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938511</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I love Snoggletog so much. To me, it's an opportunity to celebrate the bonds that hold us together - love, family, friendship, and neighbors.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5789 + 2019Snoggletog01T02 + <Data><Offer><Type>Popup</Type><ID>938514</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I think it's only right for us to plan another big party so everyone can join in and have fun with us! I'm sure that would bring us all closer together.@@Hiccup told me he was going to be headed to Scuttleclaw Island to meet Toothless. I told him I was going to meet him, but all this talk about Snoggletog makes me want to whip up a batch of my famous yaknog! @@Will you go there in my stead? +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938515</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Nice to see you here! Is Astrid coming, too?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiccupStart</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hiccup at Scuttleclaw Island</Text><ID>938512</ID></Title><Desc><Text>Find Hiccup at Scuttleclaw Island.</Text><ID>938513</ID></Desc></Data> + 0 + false + + + 5790 + 2019Snoggletog01T03 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938520</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh! Well, if Astrid is making her yaknog, I think we'd be best staying as long as we can! Ha ha. Just kidding. +(Sort of.)@@Let's go! {{Input}} on me and I'll find our way to Toothless. +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938521</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey there, bud.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiccupEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>6</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Spline</Key><Value>Spline_Snoggletog</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Hiccup and follow him</Text><ID>939770</ID></Title><Desc><Text>{{Input}} on Hiccup and follow him.</Text><ID>939771</ID></Desc><Reminder><Text>Don't get left behind!</Text><ID>938722</ID></Reminder><Failure><Text>Stay close to Hiccup!</Text><ID>938519</ID></Failure></Data> + 0 + false + + + 5791 + 2019Snoggletog01T04 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938524</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Light Fury has had her problems with us in the past... but we've had a lot of adventures together, huh? I hope we've proven to her that we're her allies.@@{{Name}}, will you reach out to her with your hand and {{input}} on her?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q01T03CS.unity3d/PfGrpSnoggletog2019Q01T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLightfury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLightfury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Light Fury</Text><ID>935942</ID></Title><Desc><Text>{{Input}} on the Light Fury.</Text><ID>936136</ID></Desc></Data> + 0 + false + + + 5792 + 2019Snoggletog01T05 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938527</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Huh. Toothless wants to take us somewhere! Let's see what they want to show us. {{Input}} on the Light Fury and mount her.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_LightfuryMounted</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLightFuryMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Light Fury</Text><ID>938525</ID></Title><Desc><Text>Mount the Light Fury.</Text><ID>938526</ID></Desc></Data> + 0 + false + + + 5793 + 2019Snoggletog01T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938530</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Here we go. Let's fly around and see what it is they are, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q01T06CS.unity3d/PfGrpSnoggletog2019Q01T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NightlightNest</Value></Pair><Pair><Key>Range</Key><Value>24</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly towards the impromptu nest</Text><ID>938528</ID></Title><Desc><Text>Fly towards the impromptu nest.</Text><ID>938529</ID></Desc></Data> + 0 + false + + + 5794 + 2019Snoggletog01T07 + <Data><Offer><Type>Popup</Type><ID>938533</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow. These babies... They're the most adorable combination of the Night Fury and the Light Fury. They must be Night Lights!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938534</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I can't believe it. My best friend is a dad now! I'm honored that Toothless and the Light Fury trusted us to bring us close to their children. @@ This is going to be the best Snoggletog ever! +</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206115 + true + 150 + 150 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 206115 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206115 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206115 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 17842 + + 1 + 7572 + 206115 + true + 1 + 1 + + 0 + +
+ false +
+ + 2837 + 2019 Snoggletog02 + 4 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2019Q02T00.unity3d/PfGrpSnoggletog2019Q02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Those lil Rascals!</Text><ID>937064</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2836 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2837 + 5795 + 0 + + + 1 + 2837 + 5796 + 0 + + + 1 + 2837 + 5798 + 0 + + + 1 + 2837 + 5799 + 0 + + + 1 + 2837 + 5800 + 0 + + + 1 + 2837 + 5801 + 0 + + + 1 + 2837 + 5802 + 0 + + + 1 + 2837 + 5803 + 0 + + + 1 + 2837 + 5804 + 0 + + + + 1 + 206116 + 0 + + 5795 + 2019Snoggletog02T01 + <Data><Offer><Type>Popup</Type><ID>938537</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>If we want to have a proper celebration, we better bring all our friends and family over to our home! Can you head to the School and tell Heather about our Snoggletog friends? I'm sure she'd be willing to spread the word!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938538</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That's an excellent idea! I was trying to figure out if I should visit my brother at Berserker Island or invite him over for Snoggletog. If Hiccup is planning something grand at New Berk, I'm sure Dagur and Mala would be overjoyed to join in.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather at the School</Text><ID>929701</ID></Title><Desc><Text>Talk to Heather at the School.</Text><ID>923147</ID></Desc></Data> + 0 + false + + + 5796 + 2019Snoggletog02T02 + <Data><Offer><Type>Popup</Type><ID>938541</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'll send some Terror mail to the Defenders of the Wing and the Berserkers to let them know the big news. Berk always brings the heat when it comes to holiday cheer; I'm excited to see what our visitors will bring to the table!@@Thanks for the heads up. Please head back home to New Berk and let everyone know they can count on me.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938542</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's time for all hands on deck, {{Name}}!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q02T02CS.unity3d/PfGrpSnoggletog2019Q02T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head back to New Berk</Text><ID>938539</ID></Title><Desc><Text>Head back to New Berk.</Text><ID>938540</ID></Desc></Data> + 0 + false + + + 5798 + 2019Snoggletog02T03 + <Data><Offer><Type>Popup</Type><ID>938545</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'm going to need all the help we can get if we want to corral all these naughty dragons. Let's put our heads together and form up a battle plan!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938546</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Night Lights are incredible... but they're also incredibly charismatic and mischievous. They've started a Tiny Tooth revolution in the heart of our home! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5799 + 2019Snoggletog02T04 + <Data><Offer><Type>Popup</Type><ID>938549</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>These baby dragons are running around and not listening to anyone... other than the Night Lights, that is. I don't mind it when dragons have fun, but they're going to get hurt if they run around all willy-nilly. @@We need to find the Night Lights and bring them back to their parents. Will you fly around the island and find the white Night Light, Pouncer?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938550</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There's the little rascal!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snoggletog02A</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Pouncer</Text><ID>938547</ID></Title><Desc><Text>Find Pouncer.</Text><ID>938548</ID></Desc></Data> + 0 + false + + + 5800 + 2019Snoggletog02T05 + <Data><Offer><Type>Popup</Type><ID>938553</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe he would want to fly together! You should {{input}} on the Night Light and mount him. +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snoggletog02A</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlightWhiteMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Pouncer and mount him</Text><ID>938551</ID></Title><Desc><Text>{{Input}} on Pouncer and mount him.</Text><ID>938552</ID></Desc></Data> + 0 + false + + + 5801 + 2019Snoggletog02T06 + <Data><Offer><Type>Popup</Type><ID>938556</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wow. That's incredibly friendly of the little guy. He seems much friendlier than his mom, who took a little bit of convincing before she trusted us.@@That's one mischievous troublemaker down, two more to go! Can you fly around and look for this guy's brother? +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q02T06CS.unity3d/PfGrpSnoggletog2019Q02T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snoggletog02B</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Pouncer's sibling</Text><ID>938554</ID></Title><Desc><Text>Look for Pouncer's sibling.</Text><ID>938555</ID></Desc></Data> + 0 + false + + + 5802 + 2019Snoggletog02T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWNightlightBlackGreenNPC</Asset><Location>PfMarker_Snoggletog02B</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938561</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great! Fishlegs tells me that our last playful dragon is somewhere nearby, causing all sorts of trouble. We need to corral him too, but we can't leave these two dragons alone... I guess you'll have to bring them both along!@@{{Input}} on Ruffrunner and lead them to their sister!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snoggletog02C</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightlightBlackGreenNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Ruffrunner and lead him to the next Night Light</Text><ID>938557</ID></Title><Desc><Text>{{Input}} on Ruffrunner and lead him to the next Night Light.</Text><ID>938558</ID></Desc><Reminder><Text>Stay close to the Night Light!</Text><ID>938559</ID></Reminder><Failure><Text>You left the Night Light behind!</Text><ID>939419</ID></Failure></Data> + 0 + false + + + 5803 + 2019Snoggletog02T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWNightlightBlackBlueNPC</Asset><Location>PfMarker_Snoggletog02C</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938566</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Now that you have all three of the Night Lights together in one place, you should {{input}} on Dart and lead them all back to their parents.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q02T08CS.unity3d/PfGrpSnoggletog2019Q02T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>938567</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dragon family, together at last - and more importantly, somewhere where they can't cause so much trouble for the rest of us!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snoggletog02D</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightlightBlackBlueNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Dart and lead her to the Light Fury</Text><ID>938562</ID></Title><Desc><Text>{{Input}} on Dart and lead her to the Light Fury.</Text><ID>938563</ID></Desc><Reminder><Text>Stay close!</Text><ID>936262</ID></Reminder><Failure><Text>You left the Night Lights behind!</Text><ID>938565</ID></Failure></Data> + 0 + false + + + 5804 + 2019Snoggletog02T09 + <Data><Offer><Type>Popup</Type><ID>938570</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great job, {{Name}}. Will you talk to me?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938571</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank you for running around and making sure these guys weren't causing too much havoc. They aren't used to living with us, so they could have gotten into a lot of dicey situations without your intervention! @@Despite that headache, it's only right that they're here... It feels right to have our most loved family, friends, and dragons here with us for Snoggletog, don't you think?@@It's going to be a good celebration.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206116 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206116 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206116 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206116 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 17843 + + 1 + 7573 + 206116 + true + 1 + 1 + + 0 + +
+ false +
+ + 2838 + 2019 Snoggletog03 + 11 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2019Q03T00.unity3d/PfGrpSnoggletog2019Q03T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_SnoggletogMala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_SnoggletogDagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Ooh, they're in trouble...</Text><ID>937065</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2837 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2838 + 5805 + 0 + + + 1 + 2838 + 5806 + 0 + + + 1 + 2838 + 5807 + 0 + + + 1 + 2838 + 5808 + 0 + + + 1 + 2838 + 5809 + 0 + + + 1 + 2838 + 5810 + 0 + + + + 1 + 206117 + 0 + + 5805 + 2019Snoggletog03T01 + <Data><Offer><Type>Popup</Type><ID>938574</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay... Fishlegs is on his way to Berk right now to help decorate our old home. I think we have all our Tiny Tooth dragons in a row! All that's left is to enjoy the festivities and spend time with our friends and family.@@That reminds me: Hiccup told me that Dagur and Mala should be here at any moment. Can you look for them and give them a proper New Berk welcome?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938575</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ah! Our third favorite Viking is here looking for us. Or is that our second favorite Viking, my love? I always get the rankings mixed up in my head.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogDagur</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Mala and Dagur</Text><ID>938572</ID></Title><Desc><Text>Find Mala and Dagur.</Text><ID>938573</ID></Desc></Data> + 0 + false + + + 5806 + 2019Snoggletog03T02 + <Data><Offer><Type>Popup</Type><ID>938578</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Play nice, darling. Does it matter what the actual number is, as long as {{Name}} is in our heart? Thank you for the warm welcome, cherished friend.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>938579</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>My Valkyrie of a wife is as wise as she is beautiful. Please, speak to Mala.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>938580</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Our compliments to the village, {{Name}}. Your Snoggletog decorations are top notch, your cheer admirable! We brought this gift from our islands to share in the spirit of things. It's by your dragon hanger, but it looks like your... exuberant young dragons have gotten first dibs onto it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala</Text><ID>933578</ID></Title><Desc><Text>Talk to Mala.</Text><ID>928348</ID></Desc></Data> + 0 + false + + + 5807 + 2019Snoggletog03T03 + <Data><Offer><Type>Popup</Type><ID>938583</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Oh no! The Night Lights think it's a toy and they're going to destroy the gift if you don't stop them. You should shoot a warning fireball near them so that they scatter.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q03T03CS.unity3d/PfGrpSnoggletog2019Q03T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SnoggletogItem</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGift_Target</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot fireball near a gift</Text><ID>938581</ID></Title><Desc><Text>Shoot fireball near a gift.</Text><ID>938582</ID></Desc></Data> + 0 + false + + + 5808 + 2019Snoggletog03T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_SnoggletogHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>938586</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Those little guys didn't do any permanent damage to our gift so there's no harm, no foul! Little whelps will be whelps, don't you think? Ha ha!@@You don't need to chaperone us, {{Name}}. We're old allies and there I say, old friends? Mala and I are going to stroll around your charming village and enjoy the lovebird atmosphere.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>938587</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Dagur is being incredibly accommodating, but you should still talk to Valka and let her know what happened.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>938588</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh dear.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924670</ID></Title><Desc><Text>Talk to Valka.</Text><ID>929868</ID></Desc></Data> + 0 + false + + + 5809 + 2019Snoggletog03T05 + <Data><Offer><Type>Popup</Type><ID>938591</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I'm so glad that the Light Fury and Toothless brought their little ones to Berk, but they need to respect other people's property! Tiny Tooth dragons will always be mischievous but they should be more careful about other people's treasured possessions. @@Perhaps Cloudjumper can get through to them; will you {{input}} on Cloudjumper?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWCloudjumper</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWCloudjumper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Cloudjumper</Text><ID>935886</ID></Title><Desc><Text>{{Input}} on Cloudjumper.</Text><ID>935668</ID></Desc></Data> + 0 + false + + + 5810 + 2019Snoggletog03T06 + <Data><Offer><Type>Popup</Type><ID>938594</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Those loveable rascals! It's impossible to stay mad at them.@@Can you let Astrid know that the Night Lights will behave? Cloudjumper is an incredible guardian; I'm sure he'll keep a close eye on the dragons.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938595</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We'll see if that works to calm them down. I think it's wonderful that they're boisterous. They're young, after all! Still, it will be nice to be able to walk through the town without a mischievous dragon tripping me...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206117 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206117 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206117 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206117 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 17844 + + 1 + 7574 + 206117 + true + 1 + 1 + + 0 + +
+ false +
+ + 2839 + 2019 Snoggletog04 + 45 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2019Q04T00.unity3d/PfGrpSnoggletog2019Q04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_SnoggletogDagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_SnoggletogMala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_SnoggletogHiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_SnoggletogToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The True Meaning</Text><ID>937066</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2838 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2839 + 5811 + 0 + + + 1 + 2839 + 5812 + 0 + + + 1 + 2839 + 5813 + 0 + + + 1 + 2839 + 5814 + 0 + + + 1 + 2839 + 5815 + 0 + + + 1 + 2839 + 5816 + 0 + + + + 1 + 206114 + 0 + + 5811 + 2019Snoggletog04T01 + <Data><Offer><Type>Popup</Type><ID>938598</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>That's the thing, really. Despite all the troubles the Night Lights have brought to Berk, we are more than happy to see them frolicking in the snow with us. Toothless and the Light Fury brought their children to play with us all, the deepest sign of trust a parent can show.@@It's more than anything I could have ever imagined those many years ago, when I had to flee Berk for their views on dragons.@@Ah! Dagur the... Deranged, is it? I wonder what he thinks of this cheerful family scene in front of him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938599</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>So very exciting to be a part of the very first ever New Berk Snoggletog. I cherish that opportunity deep in my heart. I know that I've made a reputation of being a crazed fighting maniac (and well deservedly so!), but I've turned over a new leaf. Snow! Decorations! Cute dragon babies! Give all of them to me!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Dagur</Text><ID>928987</ID></Title><Desc><Text>Talk to Dagur.</Text><ID>931908</ID></Desc></Data> + 0 + false + + + 5812 + 2019Snoggletog04T02 + <Data><Offer><Type>Popup</Type><ID>938602</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Ah! There's the man who brought this all together! Without Fishlegs's invitation and frankly, incessant reminders to join you for this time, Mala and I might have not come to New Berk at this time.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>938603</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>It was worth it, love.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>938604</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Oh, more than! Thanks, Fishlegs.</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><ID>938605</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm so glad our guests are enjoying their time here! I love helping decorate our homes for the seasons - it really gets everyone in the right mindset to celebrate. Snoggletog is no exception. Seeing other people enjoy our hard work is reward enough for me!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 5813 + 2019Snoggletog04T03 + <Data><Offer><Type>Popup</Type><ID>938608</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>If there's anyone who enjoys the holidays more than me, it's Astrid! Please talk to her and see how she's doing with all of the festivities?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938609</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I love Snoggletog so much! This time of year, I can let my hair down, figuratively, and not worry about the town's defenses or Stormheart or Grimmel. @@I can enjoy the time spent with my friends. Thank you for being a part of the Defenders of the Hidden World. @@We're going to protect our way of life and keep our beloved dragon friends safe. I can't imagine any better way of spending our time.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5814 + 2019Snoggletog04T04 + <Data><Offer><Type>Popup</Type><ID>938612</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The only person enjoying this Snoggletog more than me seems to be Hiccup! He's always enjoyed the holidays, even if I sometimes had to shove him into it, but there was no nudging required this year. @@Can you talk to him and see if you can pry out the reason from him? I'd love to be able to capture whatever magic is capturing in him to be able to give him this feeling, year in and year out.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938613</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>New Berk is starting to feel a little bit like home. Thank Odin, right? It wasn't an easy decision to take flight from the homes of our fathers, our grandfathers, our great-grandfathers, our great-great--@@You get the point.@@But we're here and we're surrounded by ones we love the most in the world. If that's not 'home,' I don't know where is.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 5815 + 2019Snoggletog04T05 + <Data><Offer><Type>Popup</Type><ID>938616</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>None of this would have been possible without this guy. We've come a long way from that clearing on Berk, huh bud? Back then I was a scrawny little reject and you were just a terrifying legend. Now look at us both.@@Can you give Toothless a good scratch under his chin? Walk up and {{input}} on him. +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938617</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for bringing your kids to our town, Toothless. You are an important part of our family. We couldn't celebrate the same without you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SnoggletogToothless</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWToothlessAlpha</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Toothless</Text><ID>930969</ID></Title><Desc><Text>{{Input}} on Toothless.</Text><ID>936603</ID></Desc></Data> + 0 + false + + + 5816 + 2019Snoggletog04T06 + <Data><Offer><Type>Popup</Type><ID>938620</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>And how could we forget the graceful matriarch of the dragon family? Sure, Toothless might be the alpha, but we all know who the Night Lights listen to. @@{{Name}}, would you walk over and {{input}} on the Light Fury? She used to be wary of us, but I think we've proven our worth to her.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpSnoggletog2019Q04T06CS.unity3d/PfGrpSnoggletog2019Q04T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>938621</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There are still a lot of questions floating in the horizon for us; a lot of enemies are out there, trying to take over the archipelago and harm dragons. @@We have a large fight ahead of us, but for now, I'm so happy to be here with you and Astrid and all my favorite friends. Just in time for the holidays, right?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>938622</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Happy Snoggletog, friend.</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLightFury</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLightFury</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the LightFury</Text><ID>938618</ID></Title><Desc><Text>{{Input}} on the LightFury.</Text><ID>938619</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206114 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206114 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206114 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206114 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 17845 + + 1 + 7571 + 206114 + true + 1 + 1 + + 0 + +
+ false +
+ + 2843 + SnoggletogMaze 2019 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>SnoggletogMaze 2019 T01</Text><ID>938468</ID></Title></Data> + false + 0 + + + 5 + 11-11-2019 12:00:00,01-23-2020 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2843 + 5818 + 0 + + + + 1 + 206101 + 0 + + 5818 + SnoggletogMaze 2019T01 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the Helmet</Text><ID>939442</ID></Title><Desc><Text>Get the helmet at the end of the maze.</Text><ID>939443</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 17845 + + 1 + 7530 + 206101 + true + 1 + 1 + + 0 + + + false +
+ + 2844 + SnoggletogMaze 2019 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>SnoggletogMaze 2019 T02</Text><ID>938469</ID></Title></Data> + false + 0 + + + 5 + 11-11-2019 12:00:00,01-23-2020 12:00:00 + 0 + false + + + 3 + 2843 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2844 + 5819 + 0 + + + + 1 + 206076 + 0 + + 5819 + SnoggletogMaze 2019 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the chest at the end of the maze</Text><ID>939444</ID></Title><Desc><Text>Get the chest at the end of the maze.</Text><ID>939445</ID></Desc></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 206076 + true + 25 + 25 + + 0 + + + false +
+ + 2845 + SnoggletogMaze 2019 T03 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>SnoggletogMaze 2019 T03</Text><ID>938470</ID></Title></Data> + false + 0 + + + 5 + 11-11-2019 12:00:00,01-23-2020 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2845 + 5820 + 0 + + + + 1 + 206105 + 0 + + 5820 + SnoggletogMaze 2019 T03 + <Data><Objective><Pair><Key>Scene</Key><Value>SnoggletogMazeDO</Value></Pair><Pair><Key>Name</Key><Value>BonusSnoggletogReward</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get all the hats</Text><ID>939446</ID></Title><Desc><Text>Get all the hats.</Text><ID>939447</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 17844 + + 1 + 7534 + 206105 + true + 1 + 1 + + 0 + + + false +
+ + 2874 + 2020 Birthday01 + 11 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>In Honor of Our Chief</Text><ID>938464</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 02-28-2021 07:59:59,03-05-2021 07:59:59 + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2874 + 5906 + 0 + + + 1 + 2874 + 5907 + 0 + + + 1 + 2874 + 5908 + 0 + + + 1 + 2874 + 5909 + 0 + + + + 1 + 206147 + 0 + + 5906 + 2020Birthday01T01 + <Data><Offer><Type>Popup</Type><ID>938625</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Our chief has a tendency to put other people and things before himself. That's why we need to make sure that he doesn't get lost in the shuffle. It's important that he realizes how much he means to us. Can you talk to him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938626</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's always such a treat when Astrid shows her tender side. We've been through so much this year, haven't we? Villains and dangers and... good friends.@@Thanks for being here through it all, {{Name}}. I couldn't have done it without you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Meet Hiccup.</Text><ID>938624</ID></Desc></Data> + 0 + false + + + 5907 + 2020Birthday01T02 + <Data><Offer><Type>Popup</Type><ID>938629</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well! I'll be sure to thank Astrid when I see her next.@@We're getting closer to making New Berk feel like the home we had for so long. I've finished building your Hideout at our new home! I'm so excited to see your impressions. Will you go there now?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938630</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Doesn't it look great?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HideoutArea</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hideout in New Berk</Text><ID>938627</ID></Title><Desc><Text>Go to the Hideout in New Berk.</Text><ID>938628</ID></Desc></Data> + 0 + false + + + 5908 + 2020Birthday01T03 + <Data><Offer><Type>Popup</Type><ID>938633</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This place is yours! I can't wait to see how you'll put your flair on it. You'll be able to get furniture and other cool decorations to put in your Hideout. +Take a look inside!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MyRoomINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HideoutArea</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go into the Hideout in New Berk</Text><ID>938631</ID></Title><Desc><Text>Go into the Hideout in New Berk.</Text><ID>938632</ID></Desc></Data> + 0 + false + + + 5909 + 2020Birthday01T04 + <Data><Setup><Scene>MyRoomINTDO</Scene><Asset>RS_DATA/PfGrpBirthday2020Q01T04.unity3d/PfGrpBirthday2020Q01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>938636</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm so excited for you to make this place your own. To get you started, I have a gift! It's hanging from the roof; to get it, you'll need to place some furniture and climb on it.@@You got this!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>938637</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that you have my gift, you can put it wherever you like in the Hideout! +Thanks for being around, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MyRoomINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HideoutArea</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWHiccupBdayGift</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the Insignia inside the Hideout</Text><ID>938634</ID></Title><Desc><Text>Grab the Insignia inside the Hideout.</Text><ID>938635</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206147 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206147 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206147 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206147 + true + 50 + 50 + + 0 + +
+ false +
+ + 2875 + Thawfest2020 Story01 + 61 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpThawfest2020Q01T00.unity3d/PfGrpThawfest2020Q01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dawn of the Games [2020]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20899 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2875 + 5910 + 0 + + + 1 + 2875 + 5911 + 0 + + + 1 + 2875 + 5912 + 0 + + + 1 + 2875 + 5913 + 0 + + + 1 + 2875 + 5914 + 0 + + + 1 + 2875 + 5915 + 0 + + + + 1 + 206236 + 0 + + 5910 + Thawfest2020Story01T01 + <Data><Offer><Type>Popup</Type><ID>939729</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Listen close, {{Name}}: the most important month of the year is just around the corner. Are you ready? Is anyone ever -really- ready? Thawfest must be given the pomp and importance it deserves! I want you to talk to Hiccup and make sure he understands.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939730</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, Thawfest! Wow. I've been so busy with New Berk business that I hadn't given the time of year a second thought.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup in New Berk</Text><ID>939727</ID></Title><Desc><Text>Talk to Hiccup in New Berk.</Text><ID>939728</ID></Desc></Data> + 0 + false + + + 5911 + Thawfest2020Story01T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HighPoint</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939733</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You know what? Snotlout is right. We could use a bit of distraction and fun to keep our spirits up. What better than the Thawfest Games?@@Let's get behind Snotlout on this. Can you talk to Astrid and see how we can help?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939734</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Every year, we come together to test our strength and courage in the Thawfest Games. It used to be limited to Vikings of Berk, but now we've branched out to our allies in the archipelago - and dragons, of course! Snotlout and the Jorgensons have dominated the Thawfest Games; they've won every year!@@Maybe this is the year for an upset?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5912 + Thawfest2020Story01T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HighPoint</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939737</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I'll get started on some of the logistics of the event; we don't have a lot of time, so it'll be all hands on deck to get ready on time. I know the Games are really important to Snotlout; can you go to his house and let him know the wheels are in motion?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939099</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnotloutHouse</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Snotlout at his house in New Berk</Text><ID>939735</ID></Title><Desc><Text>Go to Snotlout's house.</Text><ID>939736</ID></Desc></Data> + 0 + false + + + 5913 + Thawfest2020Story01T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HighPoint</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939741</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Looking for Snotlout? I might be able to help you out.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939742</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>This is my first time being really involved in the Thawfest Games, so I'm really excited to do my part! Even if it means playing along with Snotlout's odd schemes, right?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather</Text><ID>920768</ID></Title><Desc><Text>Talk to Heather.</Text><ID>926651</ID></Desc></Data> + 0 + false + + + 5914 + Thawfest2020Story01T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HighPoint</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939745</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm really glad to hear that Astrid and Hiccup are working on Thawfest. Snotlout... thinks differently. He thinks our chief doesn’t have the dramatic flair that Thawfest demands, so he's working on his own ceremony.@@(Please, indulge him.) +Can you find him above New Berk? He's somewhere high by the mountains.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939746</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yo! Finally here?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HighPoint</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Snotlout on a hill in New Berk</Text><ID>939743</ID></Title><Desc><Text>Find Snotlout on a hill in New Berk.</Text><ID>939744</ID></Desc></Data> + 0 + false + + + 5915 + Thawfest2020Story01T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_HighPoint</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>939749</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It's just the start, but plans never look great until they're done cookin'. We still got a few more minutes left in the oven, my friend! What do you think?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939750</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>When you've got Snotlout on the planning committee, you're only going to get the best. Trust me. We're going to get fire and dragons, thrills and chills! +I can't wait to show everyone.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title><Desc><Text>Talk to Snotlout.</Text><ID>929908</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206236 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206236 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206236 + true + 300 + 300 + + 0 + +
+ + 250 +

6

+ 18060 + + 1 + 7743 + 206236 + true + 250 + 250 + + 0 + +
+ false +
+ + 2876 + Thawfest2020 Story02 + 12 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_Eret</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpThawfest2020Q02T00.unity3d/PfGrpThawfest2020Q02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_ThawfestGobber</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_ThawfestEret</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_ThawfestMildew</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_ThawfestTuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_ThawfestRuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ThawfestSkulder</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_ThawfestBotanist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_ThawfestDagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_ThawfestMala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_ThawfestHeather</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_ThawfestFishlegs</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_ThawfestAstrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_ThawfestMulch</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_ThawfestBucket</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Fishlegs</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Let the Games Begin! [2020]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2875 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2876 + 5916 + 0 + + + 1 + 2876 + 5917 + 0 + + + 1 + 2876 + 5918 + 0 + + + 1 + 2876 + 5919 + 0 + + + 1 + 2876 + 5920 + 0 + + + 1 + 2876 + 5921 + 0 + + + 1 + 2876 + 5922 + 0 + + + 1 + 2876 + 5923 + 0 + + + 1 + 2876 + 5924 + 0 + + + + 1 + 206237 + 0 + + 5916 + Thawfest2020Story02T01 + <Data><Offer><Type>Popup</Type><ID>939753</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I have to give props where they're due. Astrid and Hiccup have done an excellent job of rallying the troops and getting the island prepared for the most important event of the year. @@I need to reclaim my throne as the best, and to that point, I need to beat all possible competitors. Tell Eret about Thawfest and let him know I'm going to crush him.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939754</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Interesting! I look forward to it. My bones have been feeling a bit restless, so this little competition will do me a world of good!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title><Desc><Text>Talk to Eret.</Text><ID>935224</ID></Desc></Data> + 0 + false + + + 5917 + Thawfest2020Story02T02 + <Data><Offer><Type>Popup</Type><ID>939757</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Now, I don't know what's next on the docket but I'm ready to help out wherever I am needed. Please, ask Fishlegs what I can do to help.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939758</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gosh, I don't know. We've been pretty good about getting all the things ready. If Eret is ready to join in and have fun, that might be all we need from him!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs.</Text><ID>923310</ID></Desc></Data> + 0 + false + + + 5918 + Thawfest2020Story02T03 + <Data><Offer><Type>Popup</Type><ID>939761</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Astrid would know if there's anything more to do!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939762</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I think we're just about ready to get things started.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>922532</ID></Title><Desc><Text>Talk to Astrid.</Text><ID>922805</ID></Desc></Data> + 0 + false + + + 5919 + Thawfest2020Story02T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ThawfestStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939765</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I know we've moved out of the place but Hiccup and I felt that it was important to go with tradition for the start of the Thawfest Games. We'll meet you at old Berk for the opening ceremony!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Berk</Text><ID>930816</ID></Title><Desc><Text>Go to Berk.</Text><ID>930817</ID></Desc></Data> + 0 + false + + + 5920 + Thawfest2020Story02T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ThawfestStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>935485</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Over here!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>939769</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What do you think? Not bad for something we threw together, right?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>922535</ID></Title><Desc><Text>Talk to Hiccup.</Text><ID>923314</ID></Desc></Data> + 0 + false + + + 5921 + Thawfest2020Story02T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ThawfestStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>939774</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The Thawfest Games used to be a way for Berkians to show off to each other (especially a certain Viking family who shall go unnamed). Competition is good, but I think it would be even better to use this to bring us all together.@@This opening ceremony will symbolize that, even with Snotlout's extravagant additions. {{Input}} on me and we'll get you ready for the ceremony.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ThawfestEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Spline</Key><Value>ThawfestFollow</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on Hiccup and follow him</Text><ID>939770</ID></Title><Desc><Text>{{Input}} on Hiccup and follow him.</Text><ID>939771</ID></Desc><Reminder><Text>Stay close to Hiccup!</Text><ID>938519</ID></Reminder><Failure><Text>Oh no! Hiccup left you behind!</Text><ID>939773</ID></Failure></Data> + 0 + false + + + 5922 + Thawfest2020Story02T07 + <Data><Offer><Type>Popup</Type><ID>939777</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can you mount your favorite Night Light?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>922905</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ThawfestFamily</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlight</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount a Night Light</Text><ID>939775</ID></Title><Desc><Text>Mount a Night Light.</Text><ID>939776</ID></Desc></Data> + 0 + false + + + 5923 + Thawfest2020Story02T08 + <Data><Offer><Type>Popup</Type><ID>939781</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Will you do the honors? Take the lane between the Berkians and approach the torch, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ThawfestTorch</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Ride down the procession</Text><ID>939779</ID></Title><Desc><Text>Ride down the procession.</Text><ID>939780</ID></Desc></Data> + 0 + false + + + 5924 + Thawfest2020Story02T09 + <Data><Offer><Type>Popup</Type><ID>939784</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Kick us off. Shoot a fireball at the torch and let the festivities begin!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpThawfest2020Q02T09CS.unity3d/PfGrpThawfest2020Q02T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>939785</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Let. The Games. BEGIN! +Snotlout Snotlout oi oi oi!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ThawfestTorch</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTorchThawfest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the torch</Text><ID>939782</ID></Title><Desc><Text>Shoot the torch.</Text><ID>939783</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206237 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206237 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206237 + true + 300 + 300 + + 0 + +
+ + 250 +

6

+ 18060 + + 1 + 7744 + 206237 + true + 250 + 250 + + 0 + +
+ false +
+ + 2878 + SpringMaze 2020 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spring Maze 2020</Text><ID>938471</ID></Title></Data> + false + 0 + + + 5 + 01-01-2020 12:00:00 AM,03-01-2020 12:00:00 AM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2878 + 5925 + 0 + + + + 1 + 206155 + 0 + + 2971 + SpringMaze 2020 T01 + 2 +

2878

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spring Maze 2020</Text><ID>938471</ID></Title></Data> + false + 0 + + + 5 + 01-01-2020 12:00:00 AM,03-01-2020 12:00:00 AM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2971 + 5925 + 0 + + + + 1 + 206380 + 0 + + 6171 + SpringMaze2021T01 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the reward chest</Text><ID>939448</ID></Title></Data> + 0 + false + + + 250 +

6

+ 18714 + + 1 + 8085 + 206380 + false + 250 + 250 + + 0 + +
+ false + + + 5925 + SpringMaze2020T01 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the reward chest</Text><ID>939448</ID></Title><Desc><Text>Find the reward chest.</Text><ID>939449</ID></Desc></Data> + 0 + false + + + 250 +

6

+ 18060 + + 1 + 7641 + 206155 + true + 250 + 250 + + 0 + +
+ false +
+ + 2884 + FTUE2020 Branch 01 - Dragons + 59 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dragon Rearing</Text><ID>939844</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2884 + 5945 + 0 + + + 1 + 2884 + 5946 + 0 + + + 2 + 2884 + 2885 + 0 + + + 1 + 2884 + 5948 + 0 + + + 1 + 2884 + 5953 + 0 + + + 2 + 2884 + 3066 + 0 + + + 1 + 2884 + 5950 + 0 + + + 2 + 2884 + 2886 + 0 + + + 1 + 2884 + 5952 + 0 + + + 1 + 2884 + 6555 + 0 + + + + 1 + 206622 + 0 + + 2885 + FTUE2020-Branch01T03 + 59 +

2884

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Take a look around the Hatchery and choose whichever Dragon you vibe with the best!</Text><ID>939996</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + some + false + 1 + 1 + + 2 + 2885 + 3044 + 0 + + + 2 + 2885 + 3045 + 0 + + + 2 + 2885 + 3046 + 0 + + + 2 + 2885 + 3047 + 0 + + + 2 + 2885 + 3048 + 0 + + + 2 + 2885 + 3049 + 0 + + + 2 + 2885 + 3050 + 0 + + + 2 + 2885 + 3051 + 0 + + + + 1 + 0 + 0 + + 3044 + FTUE2020-Branch01T03A + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3044 + 6556 + 0 + + + + 1 + 206626 + 0 + + 6556 + FTUE2020-Branch01T03A + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Gronckle[/c][ffffff][/b], that's a great choice!</Text><ID>941086</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Gronckle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Choose a Dragon Egg to Hatch</Text><ID>939857</ID></Title></Data> + 0 + false + + + 1 +

6

+ 8971 + + 1 + 9800 + 206626 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9801 + 206626 + true + 1 + 1 + + 0 + +
+ false +
+ + 3045 + FTUE2020-Branch01T03B + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3045 + 6557 + 0 + + + + 1 + 206627 + 0 + + 6557 + FTUE2020-Branch01T03B + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Deadly Nadder[/c][ffffff][/b], that's a great choice!</Text><ID>941087</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Nadder</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 8972 + + 1 + 9802 + 206627 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9803 + 206627 + true + 1 + 1 + + 0 + +
+ false +
+ + 3046 + FTUE2020-Branch01T03C + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3046 + 6558 + 0 + + + + 1 + 206628 + 0 + + 6558 + FTUE2020-Branch01T03C + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Monstrous Nightmare[/c][ffffff][/b], that's a great choice!</Text><ID>941088</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Nightmare</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 8973 + + 1 + 9804 + 206628 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9805 + 206628 + true + 1 + 1 + + 0 + +
+ false +
+ + 3047 + FTUE2020-Branch01T03D + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3047 + 6559 + 0 + + + + 1 + 206629 + 0 + + 6559 + FTUE2020-Branch01T03D + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Hideous Zippleback[/c][ffffff][/b], that's a great choice!</Text><ID>941089</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Zippleback</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 8976 + + 1 + 9806 + 206629 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9807 + 206629 + true + 1 + 1 + + 0 + +
+ false +
+ + 3048 + FTUE2020-Branch01T03E + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3048 + 6560 + 0 + + + + 1 + 206630 + 0 + + 6560 + FTUE2020-Branch01T03E + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Flightmare[/c][ffffff][/b], that's a great choice!</Text><ID>941090</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Flightmare</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 9591 + + 1 + 9808 + 206630 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9809 + 206630 + true + 1 + 1 + + 0 + +
+ false +
+ + 3049 + FTUE2020-Branch01T03F + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3049 + 6561 + 0 + + + + 1 + 206631 + 0 + + 6561 + FTUE2020-Branch01T03F + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Rumblehorn[/c][ffffff][/b], that's a great choice!</Text><ID>941091</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Rumblehorn</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 9525 + + 1 + 9810 + 206631 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9811 + 206631 + true + 1 + 1 + + 0 + +
+ false +
+ + 3050 + FTUE2020-Branch01T03G + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3050 + 6562 + 0 + + + + 1 + 206632 + 0 + + 6562 + FTUE2020-Branch01T03G + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Sand Wraith[/c][ffffff][/b], that's a great choice!</Text><ID>941092</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Sandwraith</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 10933 + + 1 + 9812 + 206632 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9813 + 206632 + true + 1 + 1 + + 0 + +
+ false +
+ + 3051 + FTUE2020-Branch01T03H + 59 +

2885

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Choose an Egg</Text><ID>939854</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3051 + 6563 + 0 + + + + 1 + 206633 + 0 + + 6563 + FTUE2020-Branch01T03H + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A [b][c][3eebff]Shockjaw[/c][ffffff][/b], that's a great choice!</Text><ID>941093</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>ChooseEgg</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonEggNest_01Shockjaw</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type></Data> + 0 + false + + + 1 +

6

+ 11719 + + 1 + 9814 + 206633 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 18601 + + 1 + 9815 + 206633 + true + 1 + 1 + + 0 + +
+ false +
+ false + + + 2886 + FTUE2020-Branch01T07 + 59 +

2884

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Feed your dragon</Text><ID>939855</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2886 + 5951 + 0 + + + + 1 + 206300 + 0 + + 5951 + FTUE2020-Branch01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Now just {{Input}} on a dragon, and then choose the [c][3eebff]'fork' button[/c][ffffff] to feed them!</Text><ID>939859</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>Peteat</Value></Pair><Pair><Key>ItemName</Key><Value>7143</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed your Dragon a Perch</Text><ID>939858</ID></Title></Data> + 0 + false + + + 1 +

6

+ 8032 + + 1 + 7764 + 206300 + true + 1 + 1 + + 0 + +
+ false +
+ + 3066 + FTUE2020-Branch01T11 + 59 +

2884

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3066 + 6620 + 0 + + + + 1 + 206652 + 0 + + 6620 + FTUE2020-Branch01T11 + <Data><Offer><Type>Popup</Type><ID>941735</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Your dragons will get hungry, so let me show you how to get their favorite snack.@@Take this [c][3eebff]fish bait[/c][ffffff], you'll need it if you want to catch anything!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 3 +

6

+ 7249 + + 1 + 8782 + 206652 + true + 3 + 3 + + 0 + +
+ false +
+ + 5945 + FTUE2020-Branch01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Interested in raising a dragon? Excellent choice! If you want to learn how to train a dragon from egg to fully grown Titan, you’ll need Fishlegs’s guidance! @@You can find him waiting in the [c][3eebff]Hatchery[/c][ffffff] for your lesson. Simply follow the [i][c][ffb33e]Quest Arrow[/c][ffffff][/i]!</Text><ID>939850</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hatchery</Text><ID>930724</ID></Title></Data> + 0 + false + + + 5946 + FTUE2020-Branch01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Over here, {{Name}}! I'm so excited to share my dragon knowhow! Now, let's chat and figure out which dragon suits you best!</Text><ID>939852</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>They are all just so magnificent... now that you know a bit more about Dragons, it's time to learn how to hatch Dragon Eggs!</Text><ID>941094</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs in the Hatchery</Text><ID>939851</ID></Title></Data> + 0 + false + + + 5948 + FTUE2020-Branch01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You can return to the lava pool here whenever you want to hatch any dragon eggs. [i][c][ffb33e]Approach the pool and let's meet your dragon![/c][ffffff][/i]</Text><ID>939861</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HatcheryINTDO</Value></Pair><Pair><Key>Name</Key><Value>HatchDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfMarker_LegendaryTidalEgg</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Hatch your egg</Text><ID>939860</ID></Title></Data> + 0 + false + + + 5950 + FTUE2020-Branch01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Head over to the waters edge so we can catch your dragon a tasty perch. Don’t worry, if you need help I'll walk you through it!</Text><ID>939863</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfPrtPerchLocation</Value></Pair><Pair><Key>Name</Key><Value>PfFishPerchDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch a Perch</Text><ID>942459</ID></Title></Data> + 0 + false + + + 5952 + FTUE2020-Branch01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Your dragon has other needs, too. If you don’t keep them happy, they'll get tired and slow down. Let’s give your dragon a little treat!@@[i][c][ffb33e]{{Input}} on your dragon, choose the 'fork' button, and choose Dragon Nip![/c][ffffff][/i]</Text><ID>939865</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thanks for listening to me ramble on and on about baby dragons. They're sort of a favorite subject. Along with teen dragons... And Adult dragons...@@Really anything to do with dragons! I can tell you have a knack for dragons too, you’ll do great here!</Text><ID>941736</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>Peteat</Value></Pair><Pair><Key>ItemName</Key><Value>8032</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Give your Dragon the Dragon Nip</Text><ID>939864</ID></Title></Data> + 0 + false + + + 5953 + FTUE2020-Branch01T09 + <Data><Setup><Scene>DragonStableINTDO</Scene><Asset>RS_DATA/PfGrpBranch01T00A.unity3d/PfGrpBranch01T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gosh, I'm so excited to meet your new dragon! Now that you're responsible for taking care of multiple dragons, I want to show you the [c][3eebff]Dragon Stables[/c][ffffff]!</Text><ID>939867</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Whenever your dragons aren't by your side, you’ll be able to find them resting there. @@The more dragons you take care of, the more stables you’ll need to own! You can also send them out on adventures of their own. @@C'mon, I’ll show you [b][c][3eebff]Stable Quests[/c][ffffff][/b] first!</Text><ID>941737</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FTUE2020StableQuest</Value></Pair><Pair><Key>Name</Key><Value>StableQuest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Complete a Stable Quest at the Dragon Stables</Text><ID>939866</ID></Title></Data> + 0 + false + + + 6555 + FTUE2020-Branch01T10 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQFTUE2020Branch01T02.unity3d/PfGrpQFTUE2020Branch01T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>So there's one last handy tip! Did you know dragons love to shoot eels? They're usually afraid of them, so if they get to shoot them, they really seem to enjoy it.@@Head to [c][3eebff]New Berk[/c][ffffff] with an Adult Dragon and find an Eel!</Text><ID>941096</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Great find! If you have your dragon shoot the Eel, it's happiness will increase! @@That's all the tips I have for now: good luck on your training!</Text><ID>941097</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Branch01ShootEel</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch01ShootEel</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a Spot to Shoot an Eel in New Berk</Text><ID>941095</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206622 + true + 50 + 50 + + 0 + +
+ + 25 +

1

+ 0 + + 1 + 32 + 206622 + true + 25 + 25 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 206622 + true + 100 + 100 + + 0 + +
+ false +
+ + 2887 + FTUE2020 Branch02 - Flying + 59 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dragon Flying for Fun and Profit</Text><ID>939871</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2887 + 5954 + 0 + + + 1 + 2887 + 5955 + 0 + + + 2 + 2887 + 2888 + 0 + + + 1 + 2887 + 5957 + 0 + + + 1 + 2887 + 5958 + 0 + + + 1 + 2887 + 5959 + 0 + + + 1 + 2887 + 5960 + 0 + + + 1 + 2887 + 5961 + 0 + + + 1 + 2887 + 5962 + 0 + + + + 1 + 206623 + 0 + + 2888 + FTUE2020-Branch02T03 + 59 +

2887

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Give missing pieces to Hiccup</Text><ID>939870</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2888 + 5956 + 0 + + + + 1 + 206552 + 0 + + 5956 + FTUE2020-Branch02T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! Now just bring those pieces back to me so I can put them together!</Text><ID>939877</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, thank Odin that they didn't tear anything important. Give me a moment and I'll have this present ready...@@And... There!</Text><ID>939878</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>8420</Value></Pair><Pair><Key>ItemDescription</Key><Value>Leather Straps</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the missing pieces to Hiccup</Text><ID>939876</ID></Title></Data> + 0 + false + + + 1 +

6

+ 19182 + + 1 + 8739 + 206552 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 19183 + + 1 + 8740 + 206552 + true + 1 + 1 + + 0 + +
+ false + + + 5954 + FTUE2020-Branch02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>A 'crash course' in flying? Well, isn’t the whole point not to crash? Oh ho!@@Not to worry, we have the best flying duo in the world to help you learn! Meet up with Hiccup at the [c][3eebff]School[/c][ffffff] for a private lesson.</Text><ID>939879</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the School</Text><ID>935906</ID></Title></Data> + 0 + false + + + 5955 + FTUE2020-Branch02T02 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQFTUE2020Branch02T02.unity3d/PfGrpQFTUE2020Branch02T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey! I’d be happy to teach you how to be an ace dragon flyer! Problem is, some terribly mischievous Terrible Terrors have made off with the pieces of gear we need to get you started.@@Think you can help me find them all?</Text><ID>939881</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectGoggle</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the pieces across the School</Text><ID>939880</ID></Title></Data> + 0 + false + + + 5957 + FTUE2020-Branch02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you go! With some special racing equipment, you'll be able to go faster than ever before.</Text><ID>939883</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>To wear equipment: [i][c][ffb33e]{{Input}} on yourself, and choose the My Avatar icon. Find the Racing Goggles among your equipment, and equip them.[/c][ffffff][/i]</Text><ID>941098</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>EquipItem</Value></Pair><Pair><Key>ItemName</Key><Value>New Trainer Goggles</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Equip the Racing Goggles</Text><ID>939882</ID></Title></Data> + 0 + false + + + 5958 + FTUE2020-Branch02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right! Looking good!@@We have a special part of the island that we use to hone our flying skills to our heart's content.@@You can use your map or just head over on foot to the [c][3eebff]Training Grounds[/c][ffffff]. I'll meet you there!</Text><ID>939884</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Training Grounds</Text><ID>935805</ID></Title></Data> + 0 + false + + + 5959 + FTUE2020-Branch02T06 + <Data><Offer><Type>Popup</Type><ID>939886</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey! Over here!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hiccup at the Training Grounds</Text><ID>939885</ID></Title></Data> + 0 + false + + + 5960 + FTUE2020-Branch02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is [c][3eebff]Flight Club[/c][ffffff], where you can try out a variety of flying techniques (with a lot of different dragons, to boot).@@Interested? Head on in and see what I mean!</Text><ID>939888</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm still looking for a natural dragon flyer to set new records all of the levels. Maybe that'll be you!</Text><ID>939889</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>FlightSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlightSchoolTraining</Value></Pair><Pair><Key>Name</Key><Value>DOFlightSchool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Complete a Flight Club level</Text><ID>939887</ID></Title></Data> + 0 + false + + + 5961 + FTUE2020-Branch02T08 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_RacingExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that you have some flight training in you, I think you're ready for some competition.@@Astrid knows all about that. Give her a shout and she'll help you out!</Text><ID>939890</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup tells me you're a natural! That's good. You'll need all the skill you can get in these courses.</Text><ID>939891</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at the Training Grounds</Text><ID>924006</ID></Title></Data> + 0 + false + + + 5962 + FTUE2020-Branch02T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>On that big tower to your left is [c][3eebff]Thunder Run Racing[/c][ffffff], where our bravest and fastest dragon riders soar through tracks against each other.@@Let's start off with baby steps, though: get in there and try any course!@@[i][c][ffb33e]Once inside, go ahead and select 'Single Player'[/c][ffffff][/i]</Text><ID>939893</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great run, {{Name}}! Now that you've got a feel for the course, you can come back here any time and face off against other dragon riders.@@Keep flying like that and you’ll be setting records in no time!</Text><ID>939894</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>DragonRacingPortalBaseTrig</Value></Pair><Pair><Key>Name</Key><Value>DragonRacing</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Complete a Thunder Run Race</Text><ID>939892</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206623 + true + 50 + 50 + + 0 + +
+ + 25 +

1

+ 0 + + 1 + 32 + 206623 + true + 25 + 25 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 206623 + true + 100 + 100 + + 0 + +
+ false +
+ + 2889 + FTUE2020 Branch03 - Battle + 59 +

+ <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_DragonTactics</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Tactics, Fighting, Training</Text><ID>939873</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2889 + 5963 + 0 + + + 1 + 2889 + 5964 + 0 + + + 1 + 2889 + 5965 + 0 + + + 2 + 2889 + 2890 + 0 + + + 2 + 2889 + 2891 + 0 + + + 1 + 2889 + 5968 + 0 + + + 1 + 2889 + 5969 + 0 + + + + 1 + 206624 + 0 + + 2890 + FTUE2020-Branch03T04 + 59 +

2889

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2890 + 5966 + 0 + + + + 1 + 206615 + 0 + + 5966 + FTUE2020-Branch03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Brush up on [c][3eebff]Dragon Tactics[/c][ffffff] levels whenever you can; you never know when we'll need to mount a quick defense.@@As you work your way up to the tougher levels, you'll need better gear to help tackle the challenges that await you. That's where Gobber comes in!</Text><ID>939895</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Don't let Astrid's intensity scare ya off, {{Name}}. She just wants to make sure you’ve got the skills to keep yourself safe out there.@@Of course, you'll always be safe when you're wielding this beauty!</Text><ID>939896</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in New Berk</Text><ID>941347</ID></Title></Data> + 0 + false + + + 3 +

6

+ 13711 + + 1 + 9820 + 206615 + true + 3 + 3 + + 0 + +
+ + 1 +

6

+ 14872 + + 1 + 9821 + 206615 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 19184 + + 1 + 9822 + 206615 + true + 1 + 1 + + 0 + +
+ false + + + 2891 + FTUE2020-Branch03T05 + 59 +

2889

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Create a new shield</Text><ID>939872</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2891 + 5967 + 0 + + + + 1 + 206616 + 0 + + 5967 + FTUE2020-Branch03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ta-da! I haven't been a blacksmith for decades with nothing to show for it. That's a pattern to fuse that old wood shield into an even sturdier one!@@I'm sure you'll love the new shield; it's of my own design! [i][c][ffb33e]Come over here and {{input}} on my blacksmith to fuse.[/c][ffffff][/i]</Text><ID>939898</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Blacksmith</Value></Pair><Pair><Key>Name</Key><Value>FuseItem</Value></Pair><Pair><Key>ItemName</Key><Value>My First Shield</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Fuse the Shield in Gobber's Blacksmith</Text><ID>939897</ID></Title></Data> + 0 + false + + + 10 +

6

+ 13711 + + 1 + 8743 + 206616 + true + 10 + 10 + + 0 + +
+ false +
+ + 5963 + FTUE2020-Branch03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>There comes a time, {{Name}}, when even the most civilized Viking must take up arms and fight for what is right.@@Astrid can teach you how to become quite the warrior! Meet her at the [c][3eebff]Training Grounds[/c][ffffff] whenever you're ready!</Text><ID>939899</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Training Grounds</Text><ID>935805</ID></Title></Data> + 0 + false + + + 5964 + FTUE2020-Branch03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Over here, {{Name}}!</Text><ID>927908</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid at Training Grounds</Text><ID>939900</ID></Title></Data> + 0 + false + + + 5965 + FTUE2020-Branch03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now, things can get hairy out there on the battlefield. And I don’t just mean when Gobber forgets to trim… It's my responsibility to make sure that you and your dragons make it out safe and sound.@@Hop into [c][3eebff]Dragon Tactics[/c][ffffff] behind me and I'll show you how it's done. We can start with the first training level. Unless you haven't played the tutorial yet, always best to start with the basics!</Text><ID>939901</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942460</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nicely done! In the future, you can practice your combat skills here whenever you like!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfSTPortal</Value></Pair><Pair><Key>Name</Key><Value>STTrainer01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Enter Dragon Tactics and play the Tutorial and first Training level</Text><ID>941738</ID></Title><Desc><Text>Enter Dragon Tactics and play the Tutorial and first Training level</Text><ID>941738</ID></Desc></Data> + 0 + false + + + 5968 + FTUE2020-Branch03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You can use those shards to [c][3eebff]enhance[/c][ffffff] any items you might make or pick up in Dragon Tactics.</Text><ID>939903</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber about Enhancing Items</Text><ID>939902</ID></Title></Data> + 0 + false + + + 5969 + FTUE2020-Branch03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I must say, that there is one beauty of a shield. Well, don’t keep me in suspense now, try it on!</Text><ID>939905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>941739</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>To wear equipment: [i][c][ffb33e]{{Input}} on yourself, and choose the My Avatar icon. Find the Shield among your equipment, and then equip it.[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ha! Now every Viking you come across will know that you're made of stern stuff. Half the fun of training in Dragon Tactics is showing off your fancy gear after all!@@With equipment like that, {{Name}} you are sure to put the fear of Thor in even the mightiest foes!</Text><ID>939906</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>EquipItem</Value></Pair><Pair><Key>ItemName</Key><Value>Shield</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Equip your Shield</Text><ID>939904</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206624 + true + 50 + 50 + + 0 + +
+ + 25 +

1

+ 0 + + 1 + 32 + 206624 + true + 25 + 25 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 206624 + true + 100 + 100 + + 0 + +
+ false +
+ + 2892 + FTUE2020 Branch04 - Quests + 59 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Adventure, and Beyond!</Text><ID>939874</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2892 + 5970 + 0 + + + 1 + 2892 + 5971 + 0 + + + 2 + 2892 + 3058 + 0 + + + 1 + 2892 + 5973 + 0 + + + + 1 + 206625 + 0 + + 3058 + FTUE2020-Branch04T04Reward + 59 +

2892

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Start the Flight Quest Expansion</Text><ID>941326</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3058 + 5972 + 0 + + + + 1 + 207652 + 0 + + 5972 + FTUE2020-Branch04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Think you’re up to the task of taking on premium adventures with Hiccup and the others?@@Then you should head over to the [c][3eebff]Expansion Board[/c][ffffff] and check out some of the premium expansions that have been posted. It’s right over there!</Text><ID>939911</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Each Expansion has a unique icon you’ll find on quest lists and in your Adventurer’s Journal that signifies which quest line they follow.</Text><ID>939912</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfExpansionBoard</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Expansion Board</Text><ID>939910</ID></Title></Data> + 0 + false + + + 1 +

6

+ 19197 + + 1 + 9816 + 207652 + true + 1 + 1 + + 0 + +
+ false + + + 5970 + FTUE2020-Branch04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Interested in exploring the archipelago and completing adventures? Come find me at the [c][3eebff]School[/c][ffffff]!</Text><ID>939907</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I find that the greatest dragon trainers are those who are fearless when it comes to protecting their people. Seems you are already well on your way to becoming one of them!</Text><ID>939908</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster at the School</Text><ID>925741</ID></Title></Data> + 0 + false + + + 5971 + FTUE2020-Branch04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>You have two great assets at your disposal that will help you during your travels.@@The first is the [c][ffb33e]Quest Arrow[/c][ffffff], which points you to the objective. Sometimes, the arrow will disappear during difficult quests. @@The second is your [b][c][ffb33e]Adventurer's Journal[/c][ffffff][/b], which can help you choose which quests you want to tackle next and keep track of your progress. @@Open your Journal now! [i][c][ffb33e]{{input}} on yourself and select 'Quests'.[/c][ffffff][/i]</Text><ID>939909</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>OpenJournal</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the Adventurer's Journal</Text><ID>929526</ID></Title></Data> + 0 + false + + + 5973 + FTUE2020-Branch04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>The first expansion is [c][3eebff]Flight Quest[/c][ffffff]; it's free!@@Simply, [i][c][ffb33e]{{input}} on the Expansion Board and accept the quest with the wing icon[/c][ffffff][/i]. Give it a shot now!</Text><ID>939914</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfExpansionBoard</Value></Pair><Pair><Key>Name</Key><Value>AcceptMission</Value></Pair><Pair><Key>ItemName</Key><Value>3039</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Start the Flight Quest Expansion</Text><ID>941326</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206625 + true + 50 + 50 + + 0 + +
+ + 25 +

1

+ 0 + + 1 + 32 + 206625 + true + 25 + 25 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 206625 + true + 100 + 100 + + 0 + +
+ false +
+ + 2893 + NightLights01 + 11 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_Astrid</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQNightLights01T00.unity3d/PfGrpQNightLights01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Triumphant Return of Cute</Text><ID>940000</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 09-01-2020 12:00:00,10-10-2020 12:00:00 + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2893 + 5976 + 0 + + + 1 + 2893 + 5977 + 0 + + + 1 + 2893 + 5978 + 0 + + + 1 + 2893 + 5979 + 0 + + + 1 + 2893 + 5980 + 0 + + + 1 + 2893 + 5981 + 0 + + + + 1 + 206304 + 0 + + 5976 + NightLights01T01 + <Data><Offer><Type>Popup</Type><ID>941103</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}! You're just the Viking I was hoping to see. Hiccup was trying to arrange a celebration of our favorite alpha dragon's family, but the guests of honor are nowhere to be seen. Can you help us find them?@@Hiccup and the other dragon riders are spread across the archipelago, but no one's checked our old home. Can you go to old Berk and see if you spot the mischievous lil dragons? Thanks!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to old Berk</Text><ID>940098</ID></Title></Data> + 0 + false + + + 5977 + NightLights01T02 + <Data><Offer><Type>Popup</Type><ID>941104</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Now, if you were a Night Light, where would you be?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogRuffnut</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Night Lights</Text><ID>939976</ID></Title></Data> + 0 + false + + + 5978 + NightLights01T03 + <Data><Offer><Type>Popup</Type><ID>941105</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should {{input}} on Dart and see if she'll accept your presence.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightlightBlackBlueNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on Dart</Text><ID>940327</ID></Title></Data> + 0 + false + + + 5979 + NightLights01T04 + <Data><Offer><Type>Popup</Type><ID>941107</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There you are! Oh, and our Night Light friend is there with us too. I'm glad you found her, and just in time too! +Dart, the twins have been making a little fun house for you and your siblings to play in. {{Name}}, would you mind going in and giving it a run?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>NightlightMazeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Night Light maze</Text><ID>941106</ID></Title></Data> + 0 + false + + + 5980 + NightLights01T05 + <Data><Offer><Type>Popup</Type><ID>941109</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Get to the end of the Night Light maze!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>928099</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nice!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>NightlightMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get to the end of the Night Lights maze</Text><ID>941108</ID></Title></Data> + 0 + false + + + 5981 + NightLights01T06 + <Data><Offer><Type>Popup</Type><ID>941111</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Now, that's not where the festivities end. When Berkians decide to do something, we go all out! Would you mind meeting me at the school?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941112</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There's one more (beautiful) secret to unveil to the alpha family! We've decided to create a space within the Stables for the Night Lights! It's a little play area for these adorable dragons (and any other dragon that wants to be pampered).@@Thanks for helping out, {{Name}}. I know I can always depend on you!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid at the School</Text><ID>941110</ID></Title></Data> + 0 + false + + + 30 +

2

+ 0 + + 1 + 30 + 206304 + true + 30 + 30 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 206304 + true + 200 + 200 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 206304 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206304 + true + 50 + 50 + + 0 + +
+ false +
+ + 2894 + NightLightMaze 2020 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Night Light</Text><ID>1181</ID></Title></Data> + false + 0 + + + 3 + 999 + 0 + false + + + 5 + 09-01-2020 12:00:00,10-01-2020 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2894 + 5983 + 0 + + + + 1 + 206305 + 0 + + 5983 + NightLightMaze2020T01 + <Data><Objective><Pair><Key>Scene</Key><Value>NightlightMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Finish the maze</Text><ID>935546</ID></Title></Data> + 0 + false + + + 1 +

6

+ 18408 + + 1 + 7776 + 206305 + true + 1 + 1 + + 0 + + + false +
+ + 2895 + NightLightMaze 2020 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Night Light Maze 2020</Text><ID>939999</ID></Title></Data> + false + 0 + + + 3 + 2894 + 0 + false + + + 5 + 09-01-2020 12:00:00,10-01-2020 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2895 + 5984 + 0 + + + + 1 + 206306 + 0 + + 5984 + NightLightMaze2020T02 + <Data><Objective><Pair><Key>Scene</Key><Value>NightlightMazeDO</Value></Pair><Pair><Key>Name</Key><Value>PfLokiHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Finish the maze</Text><ID>935546</ID></Title></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 206306 + true + 100 + 100 + + 0 + + + false +
+ + 2897 + Dreadfall2020Q01 + 61 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Boneknapper, Kidnapped? [2020]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20900 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2897 + 5986 + 0 + + + 1 + 2897 + 5987 + 0 + + + 1 + 2897 + 5988 + 0 + + + 1 + 2897 + 5989 + 0 + + + 1 + 2897 + 5990 + 0 + + + 1 + 2897 + 6061 + 0 + + + + 1 + 206315 + 0 + + 5986 + Dreadfall2020Q01T01 + <Data><Offer><Type>Popup</Type><ID>941048</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Can you believe it? We're already coming around to that time of the year again... Dreadfall! Many years ago, before we Berkians became friends with dragons, a Flightmare named Hofferson's Bane used to haunt our village around this time of year. We made a holiday around it to celebrate that dragon! Astrid can tell you more.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941049</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh boy, can I tell you about Hofferson's Bane! You know, my family Hofferson? Yeah, that dragon gave me nightmares when I was younger. (No pun intended.)</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>905090</ID></Title></Data> + 0 + false + + + 5987 + Dreadfall2020Q01T02 + <Data><Offer><Type>Popup</Type><ID>941050</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>My uncle Finn Hofferson always tried to protect Berk from the dangerous Flightmare when it came close to the village. We didn't know that the Flightmare could spread a paralyzing mist to protect itself! And later on, we found out the Flightmare wasn't coming to Berk to attack us; it just enjoyed eating the algae on the island.@@That's one of the reasons we have Dreadfall. Our beloved dragons might look scary, but if we take the time to understand them, we can foster a good relationship with them. Can you talk to Hiccup? He's really good with this kind of stuff.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941051</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, Astrid is selling herself short. She's very good with explaining our customs too.@@We can't change our history; Berk used to be a village that hunted dragons. What we're doing with Dreadfall, though, is recognizing our past and celebrating the progress we've made as a village. Berk is so much stronger now that we have dragons as friends.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>905081</ID></Title></Data> + 0 + false + + + 5988 + Dreadfall2020Q01T03 + <Data><Offer><Type>Popup</Type><ID>941052</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>But before we get started on the festivities, we need to attend to a few matters. Would you mind taking care of one of them? Toothless and I can't be everywhere, unfortunately!@@We need a level-headed dragon trainer to head to Dragon's Edge. Can you take care of it? Thanks!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>929044</ID></Title></Data> + 0 + false + + + 5989 + Dreadfall2020Q01T04 + <Data><Offer><Type>Popup</Type><ID>941053</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}! My word, it's so good to see you! Please come speak to me.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941054</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>It has been too long since we last crossed paths, my friend. I hope you are doing well!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>930250</ID></Title></Data> + 0 + false + + + 5990 + Dreadfall2020Q01T05 + <Data><Offer><Type>Popup</Type><ID>941056</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My dragon Muddie and I make it a habit to check on all the dragons in the area. A Boneknapper moved in to a nearby island, but we haven't seen her in a week. Her babies are looking hungry! I fear something nefarious has happened!@@We followed the tracks here, but we haven't found her. Can you help me look for the Boneknapper here?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TriplestykeNadder</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for clues of the Boneknapper</Text><ID>941055</ID></Title></Data> + 0 + false + + + 6061 + Dreadfall2020Q01T06 + <Data><End><Type>Popup</Type><ID>941058</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Where could this dragon have gone? It's... worrying. I hope we can figure this out before Dreadfall; it would be a shame to have such an event cast a shadow over our festivities. The mystery is afoot!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsTrapped</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for signs of the Boneknapper</Text><ID>941057</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206315 + true + 35 + 35 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 206315 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206315 + true + 50 + 50 + + 0 + +
+ + 250 +

6

+ 18474 + + 1 + 7800 + 206315 + true + 250 + 250 + + 0 + +
+ false +
+ + 2898 + Dreadfall2020Q02 + 10 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_SnoggletogToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Watering</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_GreenChicken</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>BerkCavesDO</Scene><Asset>RS_DATA/PfGrpQDreadfall2020Q02T00.unity3d/PfGrpQDreadfall2020Q02T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Something New Altogether [2020]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2897 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2898 + 5991 + 0 + + + 1 + 2898 + 5992 + 0 + + + 1 + 2898 + 5993 + 0 + + + 1 + 2898 + 5994 + 0 + + + 1 + 2898 + 5995 + 0 + + + 1 + 2898 + 5996 + 0 + + + 1 + 2898 + 5997 + 0 + + + + 1 + 206317 + 0 + + 5991 + Dreadfall2020Q02T01 + <Data><Offer><Type>Popup</Type><ID>941059</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow, I can't believe that the Boneknapper has disappeared from her spot in the archipelago. That dragon has been a mainstay of the islands ever since she arrived! Do you think the Archaeologist has any theories, now that he's here?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941059</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Wow, I can't believe that the Boneknapper has disappeared from her spot in the archipelago. That dragon has been a mainstay of the islands ever since she arrived! Do you think the Archaeologist has any theories, now that he's here?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Archaeologist</Text><ID>930250</ID></Title></Data> + 0 + false + + + 5992 + Dreadfall2020Q02T02 + <Data><Offer><Type>Popup</Type><ID>941060</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>But here I go talking about some things that are just too old and unrelated to the matters at hand! I spoke to the chieftain while you were off with Fishlegs, and he told me that there's just one more spot to check! Let us find our way to old Berk, where perhaps we'll be able to track down our errant dragon.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to old Berk</Text><ID>940098</ID></Title></Data> + 0 + false + + + 5993 + Dreadfall2020Q02T03 + <Data><Offer><Type>Popup</Type><ID>941062</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Over here, my friend!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941063</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We discovered these caves under Berk when Dagur tried to use them to attack us. They were empty for a long time afterwards, but Boneknappers occasionally nest down here. Maybe your missing dragon went down here?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreenChicken</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Archaeologist at old Berk</Text><ID>941061</ID></Title></Data> + 0 + false + + + 5994 + Dreadfall2020Q02T04 + <Data><Offer><Type>Popup</Type><ID>941064</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Well, it's a better theory than anything I have right now. Let's roll with it! +Down the hole we shall go!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the caves</Text><ID>923058</ID></Title></Data> + 0 + false + + + 5995 + Dreadfall2020Q02T05 + <Data><Offer><Type>Popup</Type><ID>941066</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Now, where could this dragon be? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpQDreadfall2020Q02T05CS.unity3d/PfGrpQDreadfall2020Q02T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Bonestormer</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Boneknapper</Text><ID>941065</ID></Title></Data> + 0 + false + + + 5996 + Dreadfall2020Q02T06 + <Data><Setup><Scene>BerkCavesDO</Scene><Asset>PfDWBonestormerNPC</Asset><Location>PfMarker_BonestormerFly</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941067</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Follow that dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941068</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>My word! What was that magnificent dragon? I've never seen it before!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Lake</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Boneknapper</Text><ID>941065</ID></Title></Data> + 0 + false + + + 5997 + Dreadfall2020Q02T07 + <Data><Offer><Type>Popup</Type><ID>941069</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Perhaps Hiccup can shed a light on what that dragon was. He's bound to have seen countless dragons that look like it!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941070</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I suppose you two had something to do with that dragon that zoomed on past here? I've never seen a dragon like that before, but it's certainly true that hybrid dragons have been on the rise recently in the archipelago. That was a Boneknapper hybrid; I'd bet my good leg on that. Let's get back to New Berk and try to find out some more answers.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkCavesDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>905081</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206317 + true + 35 + 35 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 206317 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206317 + true + 50 + 50 + + 0 + +
+ + 250 +

6

+ 18474 + + 1 + 7875 + 206317 + true + 250 + 250 + + 0 + +
+ false +
+ + 2899 + Dreadfall2020Q03 + 10 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpQDreadfall2020Q03T00.unity3d/PfGrpQDreadfall2020Q03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Danger! Danger? [2020]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2898 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2899 + 5998 + 0 + + + 1 + 2899 + 5999 + 0 + + + 1 + 2899 + 6000 + 0 + + + 1 + 2899 + 6001 + 0 + + + 1 + 2899 + 6002 + 0 + + + 1 + 2899 + 6003 + 0 + + + + 1 + 206318 + 0 + + 5998 + Dreadfall2020Q03T01 + <Data><Offer><Type>Popup</Type><ID>941071</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We need to figure out the next move. Why is the new hybrid dragon here and what happened to the Boneknapper that lives in the archipelago? Maybe Gobber has some good ideas; he's got a knack for understanding the species.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941072</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>You're all raising a fuss for no reason! There's no dragon more dependable than the Boneknapper. A mite ornery and could bite your head off? Sure! But friendly and dependable to those who deserve it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title></Data> + 0 + false + + + 5999 + Dreadfall2020Q03T02 + <Data><Offer><Type>Popup</Type><ID>941073</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'd worry more about the new hybrid dragon you discovered. I heard Fishlegs talking about it - the Bonestormer? I can't imagine a dragon with the raw power of the Boneknapper without its wisdom. I'd be worried that a dragon like that would be causing havoc and be up to no good!@@Listen. You need to get to the School and make sure the Bonestormer isn't up to no good. It's the closest Viking settlement to old Berk, and who knows what trouble he could get to?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the School</Text><ID>935906</ID></Title></Data> + 0 + false + + + 6000 + Dreadfall2020Q03T03 + <Data><Offer><Type>Popup</Type><ID>941074</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>{{Name}}! I am glad you are here! Perhaps you can shed a little light to this situation?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941075</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>The new dragon has been flying around the school, but we can't tell what he plans to do. He won't approach any of us, and any Viking who has tried to has been chased away with fireballs. A terrible start to a new relationship, don't you think?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text><ID>922008</ID></Title></Data> + 0 + false + + + 6001 + Dreadfall2020Q03T04 + <Data><Offer><Type>Popup</Type><ID>941077</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Perhaps you might have some luck in the matter, considering how much expertise you have with meeting strange new dragons. Could you do us all a favor and unravel this mystery? I believe the new dragon was last spotted flying to an overlook.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearTelescope</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Bonestormer</Text><ID>941076</ID></Title></Data> + 0 + false + + + 6002 + Dreadfall2020Q03T05 + <Data><Offer><Type>Popup</Type><ID>941079</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Perhaps the Bonestormer would allow you to get closer.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearTelescope</Value></Pair><Pair><Key>Range</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Get closer to the Bonestormer</Text><ID>941078</ID></Title></Data> + 0 + false + + + 6003 + Dreadfall2020Q03T06 + <Data><Offer><Type>Popup</Type><ID>941080</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Well, Okay. The dragon doesn't want any company... +Perhaps Gobber could shine a little light on the situation.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941081</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hmm. Wants to be close to the action at the School, but doesn't want to actually meet anyone? Sounds like we have ourselves a shy dragon! Can't speak for all Bonestormers, of course, but I think we can stop worrying about this one. Maybe we can do something to help him join us in the Dreadfall fun...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in New Berk</Text><ID>941347</ID></Title></Data> + 0 + false + + + 40 +

2

+ 0 + + 1 + 22 + 206318 + true + 40 + 40 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 206318 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206318 + true + 50 + 50 + + 0 + +
+ + 250 +

6

+ 18474 + + 1 + 7876 + 206318 + true + 250 + 250 + + 0 + +
+ false +
+ + 2931 + DreadfallMaze 2020 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>DreadfallMaze 2020 T01</Text><ID>939992</ID></Title></Data> + false + 0 + + + 5 + 09-20-2020 12:00:00 AM,11-17-2020 08:00:00 AM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2931 + 6059 + 0 + + + + 1 + 206327 + 0 + + 6059 + DreadfallMaze 2020 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the chest at the end</Text><ID>941082</ID></Title></Data> + 0 + false + + + 250 +

6

+ 18474 + + 1 + 7894 + 206327 + true + 250 + 250 + + 0 + + + false +
+ + 2932 + DreadfallMaze 2020 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>DreadfallMaze 2020 T02</Text><ID>939993</ID></Title></Data> + false + 0 + + + 5 + 09-20-2020 12:00:00 AM,11-17-2020 8:00:00 AM + 0 + false + + + 3 + 2931 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2932 + 6060 + 0 + + + + 1 + 206328 + 0 + + 6060 + DreadfallMaze 2020 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get to the chest</Text><ID>941083</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206328 + true + 50 + 50 + + 0 + + + false +
+ + 2937 + 2020 Snoggletog05 + 16 +

+ <Data><Setup><Scene>MazeSnoggletogDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T00.unity3d/PfGrpSnoggletog2020Q05T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Not-So-Stale</Text><ID>939922</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 11-01-2020 12:00:00,01-19-2021 8:00:00 + 0 + false + + + 3 + 999 + 0 + false + + + 3 + 2946 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2937 + 6074 + 0 + + + 1 + 2937 + 6075 + 0 + + + 1 + 2937 + 6076 + 0 + + + 2 + 2937 + 2938 + 0 + + + 1 + 2937 + 6078 + 0 + + + 2 + 2937 + 2939 + 0 + + + 1 + 2937 + 6080 + 0 + + + 2 + 2937 + 2940 + 0 + + + 1 + 2937 + 6082 + 0 + + + 2 + 2937 + 2941 + 0 + + + 1 + 2937 + 6084 + 0 + + + 1 + 2937 + 6085 + 0 + + + 2 + 2937 + 2942 + 0 + + + 1 + 2937 + 6087 + 0 + + + 2 + 2937 + 2943 + 0 + + + 1 + 2937 + 6089 + 0 + + + 2 + 2937 + 2944 + 0 + + + 1 + 2937 + 6091 + 0 + + + 2 + 2937 + 2945 + 0 + + + 1 + 2937 + 6093 + 0 + + + 1 + 2937 + 6094 + 0 + + + + 1 + 206339 + 0 + + 2938 + 2020Snoggletog05T04 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2938 + 6077 + 0 + + + + 1 + 206340 + 0 + + 6077 + 2020Snoggletog05T04 + <Data><End><Type>Popup</Type><ID>940032</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You are the proud owner of fifty hardly-stale cookies! And that's just the start of the fun!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6077</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6077</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18569 + + 1 + 7972 + 206340 + true + 50 + 50 + + 0 + +
+ false + + + 2939 + 2020Snoggletog05T06 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2939 + 6079 + 0 + + + + 1 + 206341 + 0 + + 6079 + 2020Snoggletog05T06 + <Data><Offer><Type>Popup</Type><ID>940034</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>We need to work on your hiding skills; you are right next to the next chest, Chicken!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6079</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6079</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find and {{input}} on the locked chest in the maze</Text><ID>940033</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18569 + + 1 + 7973 + 206341 + true + 50 + 50 + + 0 + +
+ false +
+ + 2940 + 2020Snoggletog05T08 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2940 + 6081 + 0 + + + + 1 + 206342 + 0 + + 6081 + 2020Snoggletog05T08 + <Data><Offer><Type>Popup</Type><ID>940036</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Better. Now for the chest. Hint: it's not right next to Chicken, this time.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6081</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6081</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a locked chest in the maze</Text><ID>940035</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18569 + + 1 + 7974 + 206342 + true + 50 + 50 + + 0 + +
+ false +
+ + 2941 + 2020Snoggletog05T10 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2941 + 6083 + 0 + + + + 1 + 206343 + 0 + + 6083 + 2020Snoggletog05T10 + <Data><Offer><Type>Popup</Type><ID>940037</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I’d say that was impressive, but c'mon. She was right in front of you. At least you still have to find the chest the key matches!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6083</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6083</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a locked chest in the maze</Text><ID>940035</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18569 + + 1 + 7975 + 206343 + true + 50 + 50 + + 0 + +
+ false +
+ + 2942 + 2020Snoggletog05T13 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2942 + 6086 + 0 + + + + 1 + 206344 + 0 + + 6086 + 2020Snoggletog05T13 + <Data><Offer><Type>Popup</Type><ID>940038</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>She’s too cute. Nobody can get mad at her, right?@@Where was I... yes! Find the next chest!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6086</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6086</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a locked chest in the maze</Text><ID>940035</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18569 + + 1 + 7976 + 206344 + true + 50 + 50 + + 0 + +
+ false +
+ + 2943 + 2020Snoggletog05T15 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2943 + 6088 + 0 + + + + 1 + 206345 + 0 + + 6088 + 2020Snoggletog05T15 + <Data><Offer><Type>Popup</Type><ID>940039</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>We’re on chest, what: five, or six? Counting is not my job. Finding it is yours!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6088</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6088</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a locked chest in the maze</Text><ID>940035</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18569 + + 1 + 7977 + 206345 + true + 50 + 50 + + 0 + +
+ false +
+ + 2944 + 2020Snoggletog05T17 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2944 + 6090 + 0 + + + + 1 + 206346 + 0 + + 6090 + 2020Snoggletog05T17 + <Data><Offer><Type>Popup</Type><ID>940040</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Is a turkey named 'Chicken' still a chicken?@@Yes. Yes, he is.@@Moving on: find that chest!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6090</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6090</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a locked chest in the maze</Text><ID>940035</ID></Title></Data> + 0 + false + + + 100 +

6

+ 18569 + + 1 + 7978 + 206346 + true + 100 + 100 + + 0 + +
+ false +
+ + 2945 + 2020Snoggletog05T19 + 16 +

2937

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2945 + 6092 + 0 + + + + 1 + 206347 + 0 + + 6092 + 2020Snoggletog05T19 + <Data><Offer><Type>Popup</Type><ID>940042</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The last chest! Find it now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6092</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6092</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Find the last locked chest in the maze</Text><ID>940041</ID></Title></Data> + 0 + false + + + 100 +

6

+ 18569 + + 1 + 7979 + 206347 + true + 100 + 100 + + 0 + +
+ false +
+ + 6074 + 2020Snoggletog05T01 + <Data><Offer><Type>Popup</Type><ID>940044</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So, it turns out I have a thousand extremely stale cookies ... from last year. Hiccup isn’t letting me sell them, but they’re still good, I say!@@I’ve hidden them in locked boxes throughout the Snoggletog maze.@@"Locked?!" I hear you scream? Not to worry. I’ve given Chicken all of the keys!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940045</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>There goes Chicken now!@@...Very slowly. Chicken, go hide. HIDE!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the Maze</Text><ID>940043</ID></Title></Data> + 0 + false + + + 6075 + 2020Snoggletog05T02 + <Data><End><Type>Popup</Type><ID>940047</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Step one: get key. Check. Step two: find a box inside the maze it unlocks. Go to it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6075</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6075</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6076 + 2020Snoggletog05T03 + <Data><End><Type>Popup</Type><ID>940048</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The chest is nearby!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest6077</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a locked chest in the maze</Text><ID>940035</ID></Title></Data> + 0 + false + + + 6078 + 2020Snoggletog05T05 + <Data><Offer><Type>Popup</Type><ID>940049</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has another key. I’ve instructed her to hide somewhere in the maze. She’s very crafty so you may never find her.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6078</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6078</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6080 + 2020Snoggletog05T07 + <Data><Offer><Type>Popup</Type><ID>940050</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Take two, best hiding spot.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6080</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6080</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6082 + 2020Snoggletog05T09 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T09.unity3d/PfGrpSnoggletog2020Q05T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940052</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I’ve sent Chicken out of the maze. Good luck finding her now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6082</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6082</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key</Text><ID>940051</ID></Title></Data> + 0 + false + + + 6084 + 2020Snoggletog05T11 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T11.unity3d/PfGrpSnoggletog2020Q05T11</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940053</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken’s getting better at this; look outside the maze!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChicken6084</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>{{Input}} on Chicken to get a key</Text><ID>940051</ID></Title></Data> + 0 + false + + + 6085 + 2020Snoggletog05T12 + <Data><Setup><Scene>MazeSnoggletogDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T12.unity3d/PfGrpSnoggletog2020Q05T12</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940055</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait, Chicken doesn’t have it? So the reports are true: Dart, that scamp, stole it and ran into the maze!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutDart6084</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutDart6084</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Dart to get a key in the maze</Text><ID>940054</ID></Title></Data> + 0 + false + + + 6087 + 2020Snoggletog05T14 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T14.unity3d/PfGrpSnoggletog2020Q05T14</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940056</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I sent Chicken to her house to contemplate Chicken-ness. So she’s probably there. Not that you need hints.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6087</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6087</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key</Text><ID>940051</ID></Title></Data> + 0 + false + + + 6089 + 2020Snoggletog05T16 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T16.unity3d/PfGrpSnoggletog2020Q05T16</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940058</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The next key I gave to an uncomfortably huge chicken. Try not to be killed.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6089</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6089</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on huge "Chicken" to get a key</Text><ID>940057</ID></Title></Data> + 0 + false + + + 6091 + 2020Snoggletog05T18 + <Data><Offer><Type>Popup</Type><ID>940059</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken is tired from all the hiding. She’s here with me. What do you say we make this one easy?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6091</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6091</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6093 + 2020Snoggletog05T20 + <Data><Offer><Type>Popup</Type><ID>940060</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Just kidding, there’s one more key. Come see me.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>939422</ID></Title></Data> + 0 + false + + + 6094 + 2020Snoggletog05T21 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpSnoggletog2020Q05T21.unity3d/PfGrpSnoggletog2020Q05T21</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940062</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You’re in sight of the goal! There’s five hundred not-at-all-entirely-stale cookies behind my house.@@That's a grand total of ... lots.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940063</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The next key is -- no, I'm just kidding. You're done.@@Happy Snoggletog from me, Chicken, Dart, and an uncomfortably big chicken!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6094</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6094</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find a last-last locked chest by Tuffnut's house</Text><ID>940061</ID></Title></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 206339 + true + 350 + 350 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206339 + true + 200 + 200 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 206339 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206339 + true + 50 + 50 + + 0 + +
+ + 500 +

6

+ 18569 + + 1 + 7971 + 206339 + true + 500 + 500 + + 0 + +
+ false +
+ + 2946 + MazeSnoggletog 2020 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>MazeSnoggletog 2020 T01</Text><ID>939997</ID></Title></Data> + false + 0 + + + 5 + 12-01-2020 12:00:00,01-19-2021 12:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2946 + 6095 + 0 + + + + 1 + 206354 + 0 + + 6095 + MazeSnoggletog 2020 T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the maze end</Text><ID>941102</ID></Title></Data> + 0 + false + + + 250 +

6

+ 18569 + + 1 + 8022 + 206354 + true + 250 + 250 + + 0 + + + false +
+ + 2947 + MazeSnoggletog 2020 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>MazeSnoggletog 2020 T02</Text><ID>939998</ID></Title></Data> + false + 0 + + + 5 + 12/1/2020 12:00:00 AM,01/19/2021 00:00:00 AM + 0 + false + + + 3 + 2946 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2947 + 6096 + 0 + + + + 1 + 206355 + 0 + + 6096 + MazeSnoggletog 2020 T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Location</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Name</Key><Value>PfSnoggletogHelmetChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Finish the Maze</Text><ID>935546</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206355 + true + 50 + 50 + + 0 + + + false +
+ + 2956 + 2020SnoggletogStory01 + 61 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWHarald.unity3d/PfDWHarald</Asset><Location>PfMarker_Harald</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpQ2020SnoggletogStory01T00.unity3d/PfGrpQ2020SnoggletogStory01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Enemy of the Tribe</Text><ID>939923</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20901 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2956 + 6115 + 0 + + + 1 + 2956 + 6116 + 0 + + + 1 + 2956 + 6117 + 0 + + + 1 + 2956 + 6118 + 0 + + + 1 + 2956 + 6119 + 0 + + + 1 + 2956 + 6120 + 0 + + + 1 + 2956 + 6121 + 0 + + + + 1 + 206353 + 0 + + 6115 + 2020SnoggletogStory01T01 + <Data><Offer><Type>Popup</Type><ID>940064</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We're coming to that time again: and we have so much to celebrate this year for Snoggletog, don't we? We have our health, and despite any struggles we might have had, we're all together. So let's rally together and make this one the best ever!@@I'm getting my famous yaknog ready. Can you talk to Fishlegs and see if he needs any help with the decorations?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940065</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We're coming to that time again: and we have so much to celebrate this year for Snoggletog, don't we? We have our health, and despite any struggles we might have had, we're all together. So let's rally together and make this one the best ever! +I'm getting my famous yaknog ready. Can you talk to Fishlegs and see if he needs any help with the decorations?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6116 + 2020SnoggletogStory01T02 + <Data><Offer><Type>Popup</Type><ID>940066</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>But I do know where your attention is needed: Dragon's Edge! Terror mail came in from Hiccup earlier today and he said he could use some backup. I was going to send Snotlout over, but...@@Ha ha - so anyway, you should definitely go over!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>929044</ID></Title></Data> + 0 + false + + + 6117 + 2020SnoggletogStory01T03 + <Data><End><Type>Popup</Type><ID>940067</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Glad you're here. I know you understand exactly why I'm feeling a little tense right now.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>905081</ID></Title></Data> + 0 + false + + + 6118 + 2020SnoggletogStory01T04 + <Data><Offer><Type>Popup</Type><ID>940068</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Whatever do you mean, dear Hiccup? Do you think that you have cause to be worried? Fret not, old friend! We have a lot of history between us, and you know I will not attack you without provocation.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940069</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>'A lot of history between us' is why I'm tense, Harald.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940070</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Regardless: I know Snoggletog is important to Berkians. Stormheart and I have a preposition for you, in the spirit of the holidays. I only hope that you can approach it with the same courtesy.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title></Data> + 0 + false + + + 6119 + 2020SnoggletogStory01T05 + <Data><Offer><Type>Popup</Type><ID>940071</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>My employer is waiting for you at Hobblegrunt Island. I hope you will join us.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940072</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Can we really trust her? +... +We'll hear them out, I guess.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Hobblegrunt Island</Text><ID>930455</ID></Title></Data> + 0 + false + + + 6120 + 2020SnoggletogStory01T06 + <Data><Offer><Type>Popup</Type><ID>940074</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We'll find Stormheart, {{Name}}. It feels a little like putting your head in the mouth of a Changewing, huh? Don't worry; I got you!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940075</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>You made it - and like we said, no funny business. We are here in the spirit of your Snoggletog. +"Giving." "Togetherness."</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>TEMP</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the pirate fleet</Text><ID>940073</ID></Title></Data> + 0 + false + + + 6121 + 2020SnoggletogStory01T07 + <Data><Offer><Type>Popup</Type><ID>940076</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Enough, Harald. +I appreciate you two joining me here today. I have a problem that I believe you are uniquely prepared to solve. +</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940077</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>My sister once created a powerful dragon - a Chimeragon - an amalgamation of several dragons. I have inherited her notes and - as the elder sister and the skilled one of our family - created something better.@@A better dragon.@@And you - you can tame it for me.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title></Data> + 0 + false + + + 40 +

2

+ 0 + + 1 + 22 + 206353 + true + 40 + 40 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 206353 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 206353 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206353 + true + 50 + 50 + + 0 + +
+ false +
+ + 2958 + 2020SnoggletogStory03 + 11 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWPirateQueen.unity3d/PfDWPirateQueen</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_GreathallSteps</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Hybrid</Text><ID>939925</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2957 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2958 + 6128 + 0 + + + 1 + 2958 + 6129 + 0 + + + 1 + 2958 + 6130 + 0 + + + 1 + 2958 + 6131 + 0 + + + 1 + 2958 + 6132 + 0 + + + 1 + 2958 + 6133 + 0 + + + + 1 + 206357 + 0 + + 6128 + 2020SnoggletogStory03T01 + <Data><Offer><Type>Popup</Type><ID>940096</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We've got two problems to sort out. One: can we trust Stormheart? Two: how do we get the Chimeragon to trust us? We can't answer the first but maybe we can figure out the latter. Can you talk to Fishlegs and update him on our situation?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940097</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow. A new Chimeragon. We always knew that Stormheart had her hands into a lot of interesting technology, but I wouldn't have figured she knew how to do this.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6129 + 2020SnoggletogStory03T02 + <Data><Offer><Type>Popup</Type><ID>940099</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There's a lot of things we can do to help get closer to an aggressive dragon, but we might have to approach differently because of the Bewilderbeast within her. I love a good dragon mystery!@@I'd love to brainstorm at a quiet place. Let's go to old Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to old Berk</Text><ID>940098</ID></Title></Data> + 0 + false + + + 6130 + 2020SnoggletogStory03T03 + <Data><Offer><Type>Popup</Type><ID>940100</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Will you join us at the Great Hall, {{Name}}? We have a situation...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940101</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>We meet again, {{Name}}. I had hoped you would come here.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GreathallSteps</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Fishlegs</Text><ID>938991</ID></Title></Data> + 0 + false + + + 6131 + 2020SnoggletogStory03T04 + <Data><Offer><Type>Popup</Type><ID>940102</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What are you doing here, Stormheart? You better not be thinking of doing something shifty in our old home!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940103</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I am not a monster, boy. I came here to speak to you unofficially, without the chieftain nearby.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940104</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I have my own methods of subduing dragons, yet it does not feel appropriate in this case. That is why I came to you. This feels... new, to me.@@We may have had clashes in the past, but I believe we have similar goals this time.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title></Data> + 0 + false + + + 6132 + 2020SnoggletogStory03T05 + <Data><Offer><Type>Popup</Type><ID>940105</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>The Chimeragon is a noble dragon. It is a symbol of everything I and my clan has successfully done in our glorious history. If it can become docile - docile and dangerous - it would be the perfect Stormheart dragon.@@I believe you can do this humanely. I would owe you a favor for this, do you understand? Your chieftain might take advantage of this, since I am at a disadvantage here, but... I believe this is worth the risk.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940106</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>After all this time... +You have Hiccup all wrong.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6133 + 2020SnoggletogStory03T06 + <Data><Offer><Type>Popup</Type><ID>940107</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Don't you get it? We care about dragons. Protecting them is our first priority. You sound like you're actually sincere about this - so I can tell you, we'll help you figure this out. With your help, I'm sure we can solve this mystery soon!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940108</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Trust does not come easy for me, {{Name}}. +Do not make me regret this. +</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206357 + true + 35 + 35 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 206357 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206357 + true + 50 + 50 + + 0 + +
+ + 500 +

6

+ 18569 + + 1 + 8032 + 206357 + true + 500 + 500 + + 0 + +
+ false +
+ + 2959 + 2020SnoggletogStory04 + 11 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpQ2020SnoggletogStory04T00.unity3d/PfGrpQ2020SnoggletogStory04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Test</Text><ID>939928</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2958 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2959 + 6134 + 0 + + + 1 + 2959 + 6135 + 0 + + + 1 + 2959 + 6136 + 0 + + + 1 + 2959 + 6137 + 0 + + + 1 + 2959 + 6138 + 0 + + + 2 + 2959 + 2960 + 0 + + + 1 + 2959 + 6143 + 0 + + + + 1 + 206359 + 0 + + 2960 + 2020SnoggletogStory04T06 + 11 +

2959

+ <Data><Offer><Type>Popup</Type><ID>939927</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>I need her to take instruction well and work well with a Viking rider. Fly around the island and make sure to really put her through her paces. And - tell her to shoot her fireballs.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Fly!</Text><ID>939926</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2960 + 6139 + 0 + + + 1 + 2960 + 6140 + 0 + + + 1 + 2960 + 6141 + 0 + + + 1 + 2960 + 6142 + 0 + + + + 1 + 0 + 0 + + 6139 + 2020SnoggletogStory04T06A + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_SnoggletogFlyA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogFlyA</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly around Icestorm Island</Text><ID>940109</ID></Title></Data> + 0 + false + + + 6140 + 2020SnoggletogStory04T06B + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_SnoggletogFlyB</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogFlyB</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly around Icestorm Island</Text><ID>940109</ID></Title></Data> + 0 + false + + + 6141 + 2020SnoggletogStory04T06C + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_SnoggletogFlyC</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogFlyC</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly around Icestorm Island</Text><ID>940109</ID></Title></Data> + 0 + false + + + 6142 + 2020SnoggletogStory04T06D + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfMissionVisitDO.unity3d/PfMissionVisitDO</Asset><Location>PfMarker_SnoggletogFlyD</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogFlyD</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly around Icestorm Island</Text><ID>940109</ID></Title></Data> + 0 + false + + false + + + 6134 + 2020SnoggletogStory04T01 + <Data><Offer><Type>Popup</Type><ID>940110</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey! Fishlegs has come up with a way that will help us get friendlier with the Chimeragon. I was headed to Icestorm Island now to appreciate the good news. I'll see you there!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940111</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Fishlegs was here overnight with Stormheart for company, trying a whole slew of things to make that dragon like humans more. I left once I was sure Stormheart wasn't going to try anything.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Icestorm Island</Text><ID>938981</ID></Title></Data> + 0 + false + + + 6135 + 2020SnoggletogStory04T02 + <Data><Offer><Type>Popup</Type><ID>940112</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Last I saw them, they were on an ice floe to the east of here. Can you find them and see if you can help them out? I need to talk to Hiccup.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940113</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gosh! Can you believe it? Just - this rough Chimeragon is finally warming up to us. I'm so excited you're here to see the results!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6136 + 2020SnoggletogStory04T03 + <Data><Offer><Type>Popup</Type><ID>940114</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The key to it was - honestly, we talked about it before. The Bewilderbeast blood within the Chimeragon was instrumental in why this dragon was so finicky. She expects respect, just like the alpha. Isn't that right, Stormheart?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940115</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Not only that, but we must not underestimate the characteristics of the Elder Sentinel. I can tell that she is a fiercely loyal and intelligent dragon: a fine example of the greatness of the Stormheart line.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title></Data> + 0 + false + + + 6137 + 2020SnoggletogStory04T04 + <Data><Offer><Type>Popup</Type><ID>940117</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Okay! So - remember, if you show respect and approach slowly, you'll be fine.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfDWChimeragon</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Chimeragon</Text><ID>940116</ID></Title></Data> + 0 + false + + + 6138 + 2020SnoggletogStory04T05 + <Data><Offer><Type>Popup</Type><ID>940119</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Okay, good! Calm - slow - now {{input}} on her and mount her!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940120</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Excellent.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Chimeragon and mount her</Text><ID>940118</ID></Title></Data> + 0 + false + + + 6143 + 2020SnoggletogStory04T07 + <Data><Offer><Type>Popup</Type><ID>940121</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Had a great flight? I'll need to update the preliminary notes I made on speculation, but what a great start! Would you come back and talk to Stormheart?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940122</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>Well. +A pleasing result, after all. +My thanks.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWPirateQueen</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Stormheart</Text><ID>935743</ID></Title></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 206359 + true + 75 + 75 + + 0 + +
+ + 250 +

1

+ 0 + + 1 + 268 + 206359 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206359 + true + 50 + 50 + + 0 + +
+ + 250 +

6

+ 18569 + + 1 + 8033 + 206359 + true + 250 + 250 + + 0 + +
+ false +
+ + 2961 + 2020SnoggletogStory05 + 11 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWHarald.unity3d/PfDWHarald</Asset><Location>PfMarker_Harald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Result</Text><ID>939929</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2959 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2961 + 6144 + 0 + + + 1 + 2961 + 6145 + 0 + + + 1 + 2961 + 6146 + 0 + + + 1 + 2961 + 6147 + 0 + + + 1 + 2961 + 6148 + 0 + + + + 1 + 206360 + 0 + + 6144 + 2020SnoggletogStory05T01 + <Data><Offer><Type>Popup</Type><ID>940123</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I can't believe it. I hope that we don't come to regret helping one of our biggest enemies. Maybe I'm being over worried, but would you mind talking to Fishlegs about it?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940124</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gosh, it always gives me such a thrill in my heart whenever we get to help a good dragon in need. That Chimeragon sure was big, don't you think?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6145 + 2020SnoggletogStory05T02 + <Data><Offer><Type>Popup</Type><ID>940125</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I didn't really think about the... logistics behind it, I guess. I know that we technically helped Stormheart there, but I feel like what we did was really for the dragon's benefit more than her. Who knows what she would have stooped to if we didn't figure out how to reach the dragon? Ugh.@@I don't know. I think you should ask Hiccup for strategic thoughts.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940126</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I understand why Astrid is worried; heck, she's much smarter than me when it comes to the defense of our village. Still, I like to think that we did a lot of good today. We showed Stormheart the humanity inside the Chimeragon. Well - the dragon-ity?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>905081</ID></Title></Data> + 0 + false + + + 6146 + 2020SnoggletogStory05T03 + <Data><Offer><Type>Popup</Type><ID>940127</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>So - that's my answer. Yeah, it might come back to bite us in the butt, but hey. We've survived through worse. And if this ends up that we helped a dragon out in the process, it's all worth it.@@So can you please tell my dear Astrid that things will be okay? She's gonna miss the festivities.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940128</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Why am I not surprised? +I suppose that's one of the reasons why I love him.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>905090</ID></Title></Data> + 0 + false + + + 6147 + 2020SnoggletogStory05T04 + <Data><Offer><Type>Popup</Type><ID>940129</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yo! {{Name}}! Heard there's a ruckus at Dragon's Edge and he's asking specifically for you. Sort this out, will ya?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>929044</ID></Title></Data> + 0 + false + + + 6148 + 2020SnoggletogStory05T05 + <Data><Offer><Type>Popup</Type><ID>940130</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Hello, old friend and adversary.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940131</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Don't worry; I won't be making a habit of appearing at your fine outpost. I swung on by to pass on Stormheart's most sincere gratitude for the help. The Chimeragon is an excellent dragon, and Stormheart sees her beauty - thanks to you.@@As you Berkians say - happy Snoggletog, {{Name}}. I hope that the season goes well for you.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Harald</Text><ID>927532</ID></Title></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206360 + true + 60 + 60 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 206360 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206360 + true + 50 + 50 + + 0 + +
+ + 250 +

6

+ 18569 + + 1 + 8034 + 206360 + true + 250 + 250 + + 0 + +
+ false +
+ + 2962 + 2021 Friendship01 + 10 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQ2021Friendship01T00.unity3d/PfGrpQ2021Friendship01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spreading the Love</Text><ID>939937</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-01-2023 19:00:00,02-21-2023 19:00:00 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2962 + 6149 + 0 + + + 1 + 2962 + 6150 + 0 + + + 1 + 2962 + 6151 + 0 + + + 1 + 2962 + 6152 + 0 + + + + 1 + 206361 + 0 + + 6149 + Friendship01T01 + <Data><Offer><Type>Popup</Type><ID>940281</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We've built something amazing together here, {{Name}}. It's the people, and the dragons, and our relationships. It's so important, don't you think? I'm sure Astrid will agree if we present it to her in the right way.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940282</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Fishlegs is such a sweet soul. We're so lucky that he wears his emotions on his sleeve.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>905090</ID></Title></Data> + 0 + false + + + 6150 + Friendship01T02 + <Data><Offer><Type>Popup</Type><ID>940283</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>He puts to words the... truths in our hearts, right? He's so strong. +And he's right, of course: it's the Berkians that make this place a wonderful place to live. Our celebration is coming soon, but I think I've been taking it for granted.@@Please, tell Hiccup I have a new plan - and we'll have to get the cooperation of some of our favorite friends!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940284</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! This is a wonderful idea! You know me; I think that loyalty to friends is the greatest weapon we have against the world. People want to hurt dragons because they don't see them as friends. That's just a sad way to go through life.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text><ID>905081</ID></Title></Data> + 0 + false + + + 6151 + Friendship01T03 + <Data><Offer><Type>Popup</Type><ID>940285</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Okay - I'll do the busy work and get some fellows to help resolve Astrid's plan. We'll want to have a bit of mystery into it, I think, so we'll set it at old Berk. You'll figure it out when you get there, I promise!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940286</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great! Now, let me tell you what I've been thinking.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to old Berk</Text><ID>940098</ID></Title></Data> + 0 + false + + + 6152 + Friendship01T04 + <Data><Offer><Type>Popup</Type><ID>940288</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup and I used to do this a lot - we'd write letters to each other to put to words the feelings we're too embarrassed to say out loud. Well - me, really. Hiccup's usually good about that.@@So - please, approach one of us here to spread our message of friendship and joy and togetherness among the people who matter most to us. Gods know we could all use it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940289</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Okay, great! Let's spread love, everyone!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWFriendship</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Collect</Type><Title><Text>Go to the Berkian you wish to help</Text><ID>940287</ID></Title></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 206361 + true + 250 + 250 + + 0 + + + + 150 +

8

+ 0 + + 1 + 622 + 206361 + true + 150 + 150 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 206361 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206361 + true + 50 + 50 + + 0 + +
+ false +
+ + 2963 + 2021Friendship02 + 11 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_Eret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Astrid's Tale</Text><ID>939956</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 18715 + 1 + false + + + 5 + 01-01-2023 19:00:00,02-21-2023 19:00:00 + 0 + false + + + 3 + 2962 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2963 + 6153 + 0 + + + 2 + 2963 + 2964 + 0 + + + 2 + 2963 + 2965 + 0 + + + + 1 + 206362 + 0 + + 2964 + 2021Friendship02T02 + 11 +

2963

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Getting notes</Text><ID>939953</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2964 + 6154 + 0 + + + + 1 + 206368 + 0 + + 6154 + 2021Friendship02T02 + <Data><Offer><Type>Popup</Type><ID>940652</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Let's see... 12 chicken eggs should be enough for Astrid's Deadly Nadder.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940653</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wonderful! Stormfly is going to love this.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give Astrid 12 Chicken Eggs</Text><ID>940651</ID></Title></Data> + 0 + false + + + 2 +

6

+ 18719 + + 1 + 8059 + 206368 + true + 2 + 2 + + 0 + +
+ false + + + 2965 + 2021Friendship02T03 + 11 +

2963

+ <Data><Offer><Type>Popup</Type><ID>939955</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I've prepared two notes - one for Eret, and one for Hiccup. Can you please get them to them? I've seen both of them at New Berk, I think. Hard at work!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><RemoveItem><ItemID>18719</ItemID><Quantity>2</Quantity></RemoveItem><Random>0</Random><Title><Text>Give notes to folks</Text><ID>939954</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2965 + 6155 + 0 + + + 1 + 2965 + 6156 + 0 + + + + 1 + 0 + 0 + + 6155 + 2021Friendship02T03A + <Data><End><Type>Popup</Type><ID>940655</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Wow! I appreciate Astrid thinking of me. It was a big shift to join Berk, but I've never regretted coming here.@@"Eret, thank you for being a good friend to dragons - and to us. You're a part of our family." +Wow. And - thank you, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>ItemID</Key><Value>18719</Value></Pair><Pair><Key>ItemDescription</Key><Value>Astrid's Letter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the note to Eret in New Berk</Text><ID>940654</ID></Title></Data> + 0 + false + + + 6156 + 2021Friendship02T03B + <Data><End><Type>Popup</Type><ID>940657</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Aww. I really appreciate all the help you give to all the Berkians. Your help is always appreciated! And as for the contents of the letter - well, that is going to be a secret between me and my love.@@Thanks, {{Name}}. Happy Friendship Festival!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>18719</Value></Pair><Pair><Key>ItemDescription</Key><Value>Astrid's Letter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the note to Hiccup</Text><ID>940656</ID></Title></Data> + 0 + false + + false +
+ + 6153 + 2021Friendship02T01 + <Data><Offer><Type>Popup</Type><ID>940658</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's no surprise that I have a message planned for Hiccup - my beloved Hiccup - but I don't think I should stop there. So many people have touched my life, you know?@@I'll have to mull over who to give messages to, but... there's a few things here for me to do. Can you get to your farm and get some eggs for Stormfly?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>FarmingDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the farm</Text><ID>938827</ID></Title></Data> + 0 + false + + + 350 +

1

+ 0 + + 1 + 368 + 206362 + true + 350 + 350 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 206362 + true + 150 + 150 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 206362 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206362 + true + 50 + 50 + + 0 + +
+ false +
+ + 2966 + 2021Friendship03 + 45 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_KidC</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Valka's Tale</Text><ID>939957</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 18716 + 1 + false + + + 5 + 01-01-2023 19:00:00,02-21-2023 19:00:00 + 0 + false + + + 3 + 2962 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2966 + 6157 + 0 + + + 2 + 2966 + 2967 + 0 + + + 1 + 2966 + 6159 + 0 + + + 1 + 2966 + 6160 + 0 + + + + 1 + 206363 + 0 + + 2967 + 2021Friendship03T02 + 45 +

2966

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Talk to Valka</Text><ID>924492</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2967 + 6158 + 0 + + + + 1 + 206369 + 0 + + 6158 + 2021Friendship03T02 + <Data><Offer><Type>Popup</Type><ID>940659</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It's so wonderful to see the School. When I was just a girl, we weren't so kind to the world, and we lashed out against dragons. This is the world we wanted to make, together, and there are so many people who were instrumental to them.@@I've prepared two notes, {{Name}}. Please, get them from me.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka</Text><ID>924492</ID></Title></Data> + 0 + false + + + 2 +

6

+ 18720 + + 1 + 8060 + 206369 + true + 2 + 2 + + 0 + +
+ false + + + 6157 + 2021Friendship03T01 + <Data><Offer><Type>Popup</Type><ID>940660</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>This time of year has always been bittersweet. I cherish what I have, but this is a painful reminder of everything I have lost. The perils of age, I'm afraid. But don't let me bring this joyful time down! Please, meet me at the School.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the School</Text><ID>935906</ID></Title></Data> + 0 + false + + + 6159 + 2021Friendship03T03 + <Data><Offer><Type>Popup</Type><ID>940662</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>This one is meant for our dear friend Gobber, and the other for Heyral. Oh - I mean, the Headmaster. Please, make sure these messages get to them safe and pass along my love.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940663</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ha! Valka has you playing Terror Mail, does she? Well I'm glad you were the one to bring me this message, {{greeting}}. You're a good one.@@"Gobber, old friend - I have trusted you for so many years and I will trust you for so many more. Thank you for being a wonderful pillar of strength." Oh, Valka. What a sweetheart.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>18720</Value></Pair><Pair><Key>ItemDescription</Key><Value>Valka's Letter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Give the note to Gobber</Text><ID>940661</ID></Title></Data> + 0 + false + + + 6160 + 2021Friendship03T04 + <Data><End><Type>Popup</Type><ID>940665</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>It has been a lifelong honor to be trusted with this position. I truly love that I can watch all my students develop lifelong bonds with the dragon friends, and I know Valka feels the same way.@@Now, what has Valka written for me? "Heyral - you are a true friend and a wonderful ally. Let us continue to make the world a better place." +Valka is a sweetheart! Thank you for delivering this message, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>ItemID</Key><Value>18720</Value></Pair><Pair><Key>ItemDescription</Key><Value>Valka's Letter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>18720</ItemID><Quantity>2</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Give the note to the Headmaster</Text><ID>940664</ID></Title></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 206363 + true + 250 + 250 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 206363 + true + 150 + 150 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 206363 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206363 + true + 50 + 50 + + 0 + +
+ false +
+ + 2968 + 2021 Friendship04 + 10 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Fishlegs's Tale</Text><ID>939938</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 18717 + 1 + false + + + 5 + 01-01-2023 19:00:00,02-21-2023 19:00:00 + 0 + false + + + 3 + 2962 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2968 + 6161 + 0 + + + 1 + 2968 + 6162 + 0 + + + 1 + 2968 + 6163 + 0 + + + 1 + 2968 + 6164 + 0 + + + + 1 + 206364 + 0 + + 6161 + 2021Friendship04T01 + <Data><Offer><Type>Popup</Type><ID>940290</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I wanted to make sure that our friends were remembered during this holiday! You know – the Defenders of the Wing, the Wingmaidens, the Berserkers... they've all made sure we could go through some troubling signs. I wrote a note and left it at New Berk – let's go there together!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to New Berk</Text><ID>936706</ID></Title></Data> + 0 + false + + + 6162 + 2021Friendship04T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQ2021Friendship04T02.unity3d/PfGrpQ2021Friendship04T02</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940292</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Gosh. Do you ever need to remember something important, so you place it at a special place so you remember? And then, of course, you forget the special place. Ugh! Where did I put that note?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940293</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Dang. Did I really think I was going to remember that spot? C'mon, past Fishlegs!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfFFLoveLetter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find Fishlegs's note in his hiding spot</Text><ID>940291</ID></Title></Data> + 0 + false + + + 6163 + 2021Friendship04T03 + <Data><Offer><Type>Popup</Type><ID>940294</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Okay! Whew. That was very unlike me and I apologize! +All that's left is to find Mala and get the note to her. Will you go to Dragon's Edge and take care of that for me?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>929044</ID></Title></Data> + 0 + false + + + 6164 + 2021Friendship04T04 + <Data><Offer><Type>Popup</Type><ID>940296</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Mala should be around here somewhere...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940297</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>You know, I've just had a very peculiar interaction with Tuffnut. Sometimes I worry for that man. +That is neither here nor there! I'm very happy to get this note from Fishlegs.@@"We've had some adventures and misadventures – and thank you for sticking by our side! I hope you know that we appreciate you as allies. Berk, Defenders, and Berserkers forever!" +Wonderful.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>ItemID</Key><Value>18721</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fishlegs's Letter</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><RemoveItem><ItemID>18721</ItemID><Quantity>1</Quantity></RemoveItem><Type>Delivery</Type><Title><Text>Give the note to Mala</Text><ID>940295</ID></Title></Data> + 0 + false + + + 300 +

1

+ 0 + + 1 + 318 + 206364 + true + 300 + 300 + + 0 + + + + 150 +

8

+ 0 + + 1 + 622 + 206364 + true + 150 + 150 + + 0 + +
+ + 55 +

2

+ 0 + + 1 + 673 + 206364 + true + 55 + 55 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206364 + true + 50 + 50 + + 0 + +
+ false +
+ + 2969 + 2021 Friendship05 + 16 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_SnaptrapperStart02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrpQ2021Friendship05T00.unity3d/PfGrpQ2021Friendship05T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Stables</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Tuffnut's Tale</Text><ID>939939</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 18718 + 1 + false + + + 5 + 01-01-2023 19:00:00,02-21-2023 19:00:00 + 0 + false + + + 3 + 2962 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2969 + 6165 + 0 + + + 2 + 2969 + 2970 + 0 + + + 1 + 2969 + 6167 + 0 + + + 1 + 2969 + 6168 + 0 + + + 1 + 2969 + 6169 + 0 + + + 1 + 2969 + 6170 + 0 + + + + 1 + 206370 + 0 + + 2970 + 2021Friendship05T02 + 16 +

2969

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Talk to Tuffnut</Text><ID>939422</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2970 + 6166 + 0 + + + + 1 + 206371 + 0 + + 6166 + 2021Friendship05T02 + <Data><Offer><Type>Popup</Type><ID>940299</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Where could Tuffnut be?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940300</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Thank you for coming all the way out here. Flying upside down really helps the old noggin loosen up some quality thoughts, don't you think? Anyway, the trek here really gave me time to figure out what's truly important in life.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Tuffnut</Text><ID>940298</ID></Title></Data> + 0 + false + + + 1 +

6

+ 18722 + + 1 + 8061 + 206371 + true + 1 + 1 + + 0 + +
+ false + + + 6165 + 2021Friendship05T01 + <Data><Offer><Type>Popup</Type><ID>940301</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I've been thinking about this ever since Astrid approached me for this little scheme of hers. Who could I possibly cherish enough to send a note of friendship? Meet me in Dragon's Edge, please, with your best thinking helmet on.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dragon's Edge</Text><ID>929044</ID></Title></Data> + 0 + false + + + 6167 + 2021Friendship05T03 + <Data><Offer><Type>Popup</Type><ID>940303</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>There's my note. You will notice that it does not have a listed recipient. There's a good reason for that; but first, I need you to do me a few favors.@@Go to the east beach and show the gentle lady there my Letter of Friendship, and explain she won't get one. +Yes, the Letter of Friendship is capitalized. I think it deserves that.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940304</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Tuffnut said – what? +I... see. Is this some of that much-lauded Berk humor? I suppose I don't 'get it' yet.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mala? at her beach? I guess?</Text><ID>940302</ID></Title></Data> + 0 + false + + + 6168 + 2021Friendship05T04 + <Data><Offer><Type>Popup</Type><ID>940306</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Well done, well done! Next – the other beach behind it. You should find another who was good – but not good enough to make the cut. Thank you!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940307</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>What?? That jerk. Not only did he not put me on his list, he didn't even let me make my own list! I'm going to go and not send him a note, too.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone at the other beach</Text><ID>940305</ID></Title></Data> + 0 + false + + + 6169 + 2021Friendship05T05 + <Data><Offer><Type>Popup</Type><ID>940309</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good! Now, I've actually been able to bring the recipient of my note to the Dragon's Edge square. Please come back with my note.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940310</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Ta-da!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go to Tuffnut at town square</Text><ID>940308</ID></Title></Data> + 0 + false + + + 6170 + 2021Friendship05T06 + <Data><Offer><Type>Popup</Type><ID>940312</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Of course it's Chicken. Who else could it be? Give Chicken the note, please. +(And don't take a peek. It's private. Mail theft is a crime, you know.)</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940313</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Well. You've delivered mail to a chicken. That's... something you've done now. +Great...? +</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnaptrapperEnd</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Give the note to Chicken</Text><ID>940311</ID></Title></Data> + 0 + false + + + 250 +

1

+ 0 + + 1 + 268 + 206370 + true + 250 + 250 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 206370 + true + 45 + 45 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206370 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206370 + true + 50 + 50 + + 0 + +
+ false +
+ + 2972 + SpringMaze 2021 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spring Maze 2021 01</Text><ID>940015</ID></Title></Data> + false + 0 + + + 5 + 01-01-2021 12:00:00 AM,05-17-2021 11:59:00 PM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2972 + 6172 + 0 + + + + 1 + 206380 + 0 + + 6172 + SpringMaze2021T01 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the chest</Text><ID>928856</ID></Title></Data> + 0 + false + + + 250 +

6

+ 18714 + + 1 + 8085 + 206380 + false + 250 + 250 + + 0 + + + false +
+ + 2973 + SpringMaze 2021 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 5 + 01-01-2021 12:00:00 AM,05-17-2021 11:59:00 PM + 0 + false + + + 3 + 2972 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2973 + 6173 + 0 + + + + 1 + 206381 + 0 + + 6173 + SpringMaze2021T02 + <Data><Objective><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the chest</Text><ID>928856</ID></Title></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 206381 + true + 25 + 25 + + 0 + + + false +
+ + 2974 + 2021 Thawfest03 + 16 +

+ <Data><Setup><Scene>MazeThawfestDO</Scene><Asset>RS_DATA/PfGrpThawfest2021Q03T00.unity3d/PfGrpThawfest2021Q03T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_TuffnutBeach</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Chicken gets the Gold</Text><ID>939952</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 03-02-2021 8:00:00 AM,05-17-2021 11:59:00 PM + 0 + false + + + 3 + 999 + 0 + false + + + 3 + 2972 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2974 + 6174 + 0 + + + 1 + 2974 + 6175 + 0 + + + 1 + 2974 + 6176 + 0 + + + 1 + 2974 + 6177 + 0 + + + 2 + 2974 + 2975 + 0 + + + 1 + 2974 + 6179 + 0 + + + 2 + 2974 + 2976 + 0 + + + 1 + 2974 + 6181 + 0 + + + 2 + 2974 + 2977 + 0 + + + 1 + 2974 + 6183 + 0 + + + 2 + 2974 + 2978 + 0 + + + 1 + 2974 + 6185 + 0 + + + 2 + 2974 + 2979 + 0 + + + 1 + 2974 + 6187 + 0 + + + 2 + 2974 + 2980 + 0 + + + 1 + 2974 + 6189 + 0 + + + 2 + 2974 + 2981 + 0 + + + 1 + 2974 + 6191 + 0 + + + 2 + 2974 + 2982 + 0 + + + 1 + 2974 + 6193 + 0 + + + 1 + 2974 + 6194 + 0 + + + 1 + 2974 + 6195 + 0 + + + 1 + 2974 + 6196 + 0 + + + + 1 + 206405 + 0 + + 2975 + 2021Thawfest03T05 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2975 + 6178 + 0 + + + + 1 + 206397 + 0 + + 6178 + 2021Thawfest03T05 + <Data><End><Type>Popup</Type><ID>940617</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's fifty medals, and there's lots more to come! I hope you're spacing this out, though. Doing this all in one go might be crazy.@@I'd probably do it all at once. Pain lets you know you are alive. Also puts hair on your face. (I know from experience.)</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6177</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6177</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8135 + 206397 + true + 50 + 50 + + 0 + +
+ false + + + 2976 + 2021Thawfest03T07 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2976 + 6180 + 0 + + + + 1 + 206398 + 0 + + 6180 + 2021Thawfest03T07 + <Data><Offer><Type>Popup</Type><ID>940618</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>She's as good as a Changewing. Maybe better. Anyway, time to find the chest!@@If you're finishing puzzles, doors might start to lock down. If so, just look for the chest on your next maze challenge!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6180</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6180</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8136 + 206398 + true + 50 + 50 + + 0 + +
+ false +
+ + 2977 + 2021Thawfest03T09 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2977 + 6182 + 0 + + + + 1 + 206399 + 0 + + 6182 + 2021Thawfest03T09 + <Data><Offer><Type>Popup</Type><ID>940619</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good sneaking! Now find the chest.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6182</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6182</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8137 + 206399 + true + 50 + 50 + + 0 + +
+ false +
+ + 2978 + 2021Thawfest03T11 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2978 + 6184 + 0 + + + + 1 + 206400 + 0 + + 6184 + 2021Thawfest03T11 + <Data><Offer><Type>Popup</Type><ID>940620</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chest four: find it now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6184</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6184</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8138 + 206400 + true + 50 + 50 + + 0 + +
+ false +
+ + 2979 + 2021Thawfest03T13 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2979 + 6186 + 0 + + + + 1 + 206401 + 0 + + 6186 + 2021Thawfest03T13 + <Data><Offer><Type>Popup</Type><ID>940621</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good job, Fishmeat! Way to hustle! +You did okay too. But it's chest-finding time!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6186</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6186</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8139 + 206401 + true + 50 + 50 + + 0 + +
+ false +
+ + 2980 + 2021Thawfest03T15 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2980 + 6188 + 0 + + + + 1 + 206402 + 0 + + 6188 + 2021Thawfest03T15 + <Data><Offer><Type>Popup</Type><ID>940622</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Getting into the vibe of this, aren't you? You know what to do now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6188</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6188</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8140 + 206402 + true + 50 + 50 + + 0 + +
+ false +
+ + 2981 + 2021Thawfest03T17 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2981 + 6190 + 0 + + + + 1 + 206403 + 0 + + 6190 + 2021Thawfest03T17 + <Data><Offer><Type>Popup</Type><ID>940623</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Mystery class, best class! +Okay, chest time.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6190</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6190</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8141 + 206403 + true + 50 + 50 + + 0 + +
+ false +
+ + 2982 + 2021Thwafest03T19 + 16 +

2974

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2982 + 6192 + 0 + + + + 1 + 206404 + 0 + + 6192 + 2021Thawfest03T19 + <Data><Offer><Type>Popup</Type><ID>940042</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The last chest! Find it now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6192</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6192</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 18714 + + 1 + 8142 + 206404 + true + 50 + 50 + + 0 + +
+ false +
+ + 6174 + 2021Thawfest03T01 + <Data><Offer><Type>Popup</Type><ID>940625</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You there! You loved the maze, didn't you? Looking for an epic quest? I see the 'yes' in your eyes!@@For the holiday, I've hidden medals in locked boxes throughout the maze. Just to warn you, this will be really time consuming and frustrating: just like me!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Thawfest Maze</Text><ID>940624</ID></Title></Data> + 0 + false + + + 6175 + 2021Thawfest03T02 + <Data><Offer><Type>Popup</Type><ID>940627</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken is going to be keymaster: find her and the first key.@@Here's a hint: it's a real Mystery where she may be! Start a new maze challenge when you're ready.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940628</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, the first key! Now, to find the chest it goes to. It's probably just before a puzzle, since that's where I put it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6175</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6175</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken inside the maze to get a key</Text><ID>940626</ID></Title></Data> + 0 + false + + + 6176 + 2021Thawfest03T03 + <Data><End><Type>Popup</Type><ID>940630</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The chest is nearby! Can you smell it? You are getting warmer!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6177</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest6177</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the hidden chest in the maze</Text><ID>940629</ID></Title></Data> + 0 + false + + + 6177 + 2021Thawfest03T04 + <Data><End><Type>Popup</Type><ID>940631</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>SUPER WARM!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6177</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest6177</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the hidden chest in the maze</Text><ID>940629</ID></Title></Data> + 0 + false + + + 6179 + 2021Thawfest03T06 + <Data><Offer><Type>Popup</Type><ID>940632</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has another key. I’ve instructed her to hide somewhere in the maze.@@She’s stealthy so you may never find her; her feet are too small to make clear tracks. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6179</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6179</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6181 + 2021Thawfest03T08 + <Data><Offer><Type>Popup</Type><ID>940633</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken's all set. These hints are getting harder to think up! She, uh. She's with some dragons that sting!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6181</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6181</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6183 + 2021Thawfest03T10 + <Data><Offer><Type>Popup</Type><ID>940634</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has hidden again! She's not really an unholy demon, but can be a bit mean if she's hangry.@@That's not just a clue, it's also true.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6185 + 2021Thawfest03T12 + <Data><Offer><Type>Popup</Type><ID>940636</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken needed a break. I got Fishmeat to tag in. (Don't tell Fishlegs, please.)</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6185</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6185</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Fishmeat to get a key in the maze</Text><ID>940635</ID></Title></Data> + 0 + false + + + 6187 + 2021Thawfest03T14 + <Data><Offer><Type>Popup</Type><ID>940637</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken's back in it, but I've kept her in a safer spot - that puzzle's too hot for her.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6187</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6187</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6189 + 2021Thawfest03T16 + <Data><Offer><Type>Popup</Type><ID>940638</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Should I send Chicken to the last puzzle she hasn't been in? +Nah. I'm sending her to the best class there is!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6189</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6189</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6191 + 2021Thawfest03T18 + <Data><Offer><Type>Popup</Type><ID>940639</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay fine, Chicken's doing one last one. Which class hasn't Chicken been in?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChicken6191</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6191</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6193 + 2021Thawfest03T20 + <Data><Offer><Type>Popup</Type><ID>940640</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Just kidding, there’s one more key and one big prize. You've collected four hundred so far, there's six hundred in the final chest! Worth it! Come see me.@@(This never gets old.)</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>939422</ID></Title></Data> + 0 + false + + + 6194 + 2021Thawfest03T21 + <Data><Offer><Type>Popup</Type><ID>940642</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The big prize is just a short flight away! The medals are in a chest at Ruffnut's house.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940643</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait, where is it?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940644</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You guys took so long, I helped myself. You put it at my doorstep, after all. Finders Keepers!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940645</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Bamboozled!? Let's get back at her: I know some of her secret spots, let's check those.</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Thawfest03Ruffnut</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>{{Input}} on a locked chest at Ruffnut's house</Text><ID>940641</ID></Title></Data> + 0 + false + + + 6195 + 2021Thawfest03T22 + <Data><End><Type>Popup</Type><ID>940647</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>She used to sit here to stare at Eret but looks like there's nothing hidden here. Well, let's check the next spot.@@Don't worry, there's only eighteen secret spots and less than half are in the maze - behind all those doors I didn't use.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_EretBeach</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check Ruffnut's hiding spot for a chest</Text><ID>940646</ID></Title></Data> + 0 + false + + + 6196 + 2021Thawfest03T23 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpThawfest2021Q03T23.unity3d/PfGrpThawfest2021Q03T23</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940649</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait, I see it above us! My Eagle-Eyes of the Vigilant Zippleback have done it again.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940650</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, the rest of the medals are all here! This treasure hunt went pretty well after all: twists, turns, trivia, a lousy sister... and Chicken!@@Happy Thawfest!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Underbridge</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6196</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the chest Ruffnut hid</Text><ID>940648</ID></Title></Data> + 0 + false + + + 600 +

6

+ 18714 + + 1 + 8143 + 206405 + true + 600 + 600 + + 0 + +
+ false +
+ + 2983 + Thawfest2021 Story01 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpThawfest2021Q01T00.unity3d/PfGrpThawfest2021Q01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Are You Ready? [2021]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20902 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2983 + 6197 + 0 + + + 1 + 2983 + 6198 + 0 + + + 1 + 2983 + 6199 + 0 + + + 1 + 2983 + 6200 + 0 + + + 1 + 2983 + 6201 + 0 + + + 1 + 2983 + 6202 + 0 + + + + 1 + 206409 + 0 + + 6197 + Thawfest2021Story01T01 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Grimmel02_start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941239</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It's coming up to the very best season of the year, and of course, you and I and every other Berkian know EXACTLY what I'm talking about. +Thawfest! Whoo! +Let's go to old Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941240</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>He could have let you know where he was going to be...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to old Berk</Text><ID>940098</ID></Title></Data> + 0 + false + + + 6198 + Thawfest2021Story01T02 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Grimmel02_start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>941241</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Finally! I've been waiting here for - eh - ver. You're never going to win at Thawfest with that sort of attitude. Hookfang and I have been preparing for this for weeks. Weeks!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title></Data> + 0 + false + + + 6199 + Thawfest2021Story01T03 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Grimmel02_start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941243</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Speaking of Hookfang - I'm actually not sure where he's gone off. Can you find him for me?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941244</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>There you are, Hookfang! Wait, what's wrong with you?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHookfangSad</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hookfang</Text><ID>941242</ID></Title></Data> + 0 + false + + + 6200 + Thawfest2021Story01T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_ThawfestSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941246</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Don't play with me like this, Hooky, it's not funny. Hey - hey! +{{Name}}, can you... can you check on him? Maybe he's trying to be a joker.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941247</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh no...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHookfangSad</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHookfangSad</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hookfang</Text><ID>941245</ID></Title></Data> + 0 + false + + + 6201 + Thawfest2021Story01T05 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ArchaeologistSchool</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_ThawfestSnotlout</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941249</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Something must really be wrong with him. Gosh! Forget about Thawfest for now. We gotta figure this out right away!@@We need everyone here right away! Get Valka - get Hiccup - get everyone!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941250</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh, the poor dear. It sounds like the dragon is just exhausted. He must truly love Snotlout if he was willing to push beyond his limits to make Snotlout happy.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka at the School</Text><ID>941248</ID></Title></Data> + 0 + false + + + 6202 + Thawfest2021Story01T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_ThawfestSnotlout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ThawfestValka</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>941252</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I shall meet you at the dragon's side, at old Berk. Don't fret, {{Name}}: this does not sound like something that is serious.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941253</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>He's just tired, Snotlout. Give him time to rest, and he'll be the same cantankerous dragon you've always loved.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>941254</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I just... what have I done?</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHookfangSad</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go back to Hookfang at old Berk</Text><ID>941251</ID></Title></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206409 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206409 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206409 + true + 300 + 300 + + 0 + +
+ + 50 +

6

+ 18714 + + 1 + 8174 + 206409 + true + 50 + 50 + + 0 + +
+ false +
+ + 2984 + Thawfest2021 Story02 + 12 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpThawfest2021Q02T00.unity3d/PfGrpThawfest2021Q02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Thrill of the Fight [2021]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2983 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2984 + 6203 + 0 + + + 1 + 2984 + 6204 + 0 + + + 1 + 2984 + 6205 + 0 + + + 1 + 2984 + 6206 + 0 + + + 1 + 2984 + 6207 + 0 + + + 1 + 2984 + 6208 + 0 + + + 1 + 2984 + 6209 + 0 + + + + 1 + 206410 + 0 + + 6203 + Thawfest2021Story02T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941255</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I can't believe that I almost worked my poor dragon right into the ground. What have I become? Who am I harming? Am I a good person, {{Name}}? @@I'm going to have to... retire... to find all this out for myself. My many wins will have to tide me over. Tell Hiccup for me.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941256</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Snotlout, giving up Thawfest? But he loves Thawfest and he loves winning so much... Wow.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at New Berk</Text><ID>939120</ID></Title></Data> + 0 + false + + + 6204 + Thawfest2021Story02T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941257</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Without Snotlout in the competition, I think this year will be a lot more subdued. We need him.@@I wonder if we can make him feel better and help him walk away from... brash decisions, shall we say? Please ask Fishlegs what he thinks will help sway Snotlout.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941258</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It's hard to think that there's something that will make Snotlout rethink his behavior. You know, instead of the hundreds of times before when he was a jerk.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6205 + Thawfest2021Story02T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_DeathGripper01</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941259</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm sorry to say that I'm fresh out of ideas. Eret is sort of similar to Snotlout; after all, he's a strong athletic Viking too. Maybe he'll have some ideas?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941260</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>I'm so sorry to hear that he's feeling down. I remember being distraught the first time that Skullcrusher fell ill. Dragons seem mythical to us, so it always surprises us when they are brought low.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Eret</Text><ID>935251</ID></Title></Data> + 0 + false + + + 6206 + Thawfest2021Story02T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941261</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Perhaps reminding him that Hookfang will feel better soon will help him. Otherwise, perhaps Astrid might have more thoughts?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941262</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Poor guy. That's not fun.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text><ID>905090</ID></Title></Data> + 0 + false + + + 6207 + Thawfest2021Story02T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941263</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Ha! Don't worry. You want a surefire way of getting him back excited? Remind him that there are non-Berkians slotted for competing in Thawfest this year. That'll get his competitive blood up.@@You'll be fine! Go!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to old Berk</Text><ID>940098</ID></Title></Data> + 0 + false + + + 6208 + Thawfest2021Story02T06 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_ThawfestHeather</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>941264</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Remind Snotlout that our allies... and some of our enemies... will be taking part this year. Got it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941265</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>What? How could I - this is the most important Thawfest in our lifetimes! Like I could trust that slacker Hiccup with protecting Berk's glory. Snotlout is back, baby! Hookfang is back, baby!@@Hookfang Hookfang oi oi oi!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title></Data> + 0 + false + + + 6209 + Thawfest2021Story02T07 + <Data><End><Type>Popup</Type><ID>941267</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>It's great to hear he's back in fighting shape; our parade won't be the same without him!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Update Astrid</Text><ID>941266</ID></Title></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206410 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206410 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206410 + true + 300 + 300 + + 0 + +
+ + 200 +

6

+ 18714 + + 1 + 8175 + 206410 + true + 200 + 200 + + 0 + +
+ false +
+ + 2985 + Thawfest2021Story04 + 11 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_ThawfestEret</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrpThawfest2021Q04T00.unity3d/PfGrpThawfest2021Q04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_ThawfestGobber</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_ThawfestMildew</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_ThawfestRuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_ThawfestSkulder</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBotanist.unity3d/PfDWBotanist</Asset><Location>PfMarker_ThawfestBotanist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_ThawfestDagur</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMala.unity3d/PfDWMala</Asset><Location>PfMarker_ThawfestMala</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_ThawfestHeather</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_ThawfestFishlegs</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_ThawfestAstrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_ThawfestMulch</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_ThawfestBucket</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_ThawfestEnd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Everyone Loves a Parade [2021]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2984 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2985 + 6210 + 0 + + + 1 + 2985 + 6211 + 0 + + + 1 + 2985 + 6212 + 0 + + + 1 + 2985 + 6213 + 0 + + + 1 + 2985 + 6214 + 0 + + + 1 + 2985 + 6215 + 0 + + + + 1 + 206414 + 0 + + 6210 + Thawfest2021Story04T01 + <Data><Offer><Type>Popup</Type><ID>941269</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Each year we do a Thawfest ceremony! When you're ready, head back to old Berk. It's traditional to do it there, even if we've moved.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941270</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Everyone seems to be here now...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to old Berk</Text><ID>941268</ID></Title></Data> + 0 + false + + + 6211 + Thawfest2021Story04T02 + <Data><Offer><Type>Popup</Type><ID>941272</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wait... one, two - we're short a nightlight. Ruffrunner is missing. Can you check with Hiccup?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941273</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All three of the nightlights were playing by the waterfall not too long ago. Maybe Ruffrunner's still there, will you take a look?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Hiccup about Ruffrunner</Text><ID>941271</ID></Title></Data> + 0 + false + + + 6212 + Thawfest2021Story04T03 + <Data><End><Type>Popup</Type><ID>922542</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Good eye!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ThawfestRuffrunner</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Ruffrunner</Text><ID>939387</ID></Title></Data> + 0 + false + + + 6213 + Thawfest2021Story04T04 + <Data><Offer><Type>Popup</Type><ID>941275</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>See if Ruffrunner is ready; mount him.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>1010</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ThawfestRuffrunner</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlight</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount Ruffrunner</Text><ID>941274</ID></Title></Data> + 0 + false + + + 6214 + Thawfest2021Story04T05 + <Data><Offer><Type>Popup</Type><ID>941277</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now, will you two do the honors? Take the lane between the Berkians and approach the torch, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ThawfestTorch</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Lead the parade to the torch</Text><ID>941276</ID></Title></Data> + 0 + false + + + 6215 + Thawfest2021Story04T06 + <Data><Offer><Type>Popup</Type><ID>941279</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Shoot a fireball at the torch to start Thawfest off with a bang!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941280</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Snotlout's back! @@ Let. The Games. BEGIN!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpThawfest2020Q02T09CS.unity3d/PfGrpThawfest2020Q02T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ThawfestTorch</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTorchThawfest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Thawfest Torch</Text><ID>941278</ID></Title></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206414 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206414 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206414 + true + 300 + 300 + + 0 + +
+ + 250 +

6

+ 18714 + + 1 + 8170 + 206414 + true + 250 + 250 + + 0 + +
+ false +
+ + 2986 + 2021 Summer01 + 61 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ValkaFountain</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrp2021Summer01T00.unity3d/PfGrp2021Summer01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Mystery of the Night Lights</Text><ID>939942</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2986 + 6216 + 0 + + + 1 + 2986 + 6217 + 0 + + + 1 + 2986 + 6218 + 0 + + + 2 + 2986 + 2987 + 0 + + + 1 + 2986 + 6222 + 0 + + + + 1 + 206430 + 0 + + 2987 + 2021Summer01T04 + 61 +

2986

+ <Data><Offer><Type>Popup</Type><ID>939941</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>But enough solemn thoughts for one night! Isn't it wonderful to have these beautiful, carefree Night Lights with us? They're incredible dragons, like no other. Please, join them at play and {{input}} on each of our three friends.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2987 + 6219 + 0 + + + 1 + 2987 + 6220 + 0 + + + 1 + 2987 + 6221 + 0 + + + + 1 + 0 + 0 + + 6219 + 2021Summer01T05 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Dart, our brave one. Your heart beats true and strong.</Text><ID>940328</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightlightDart</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlightDart</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Dart</Text><ID>940327</ID></Title><Desc><Text>{{Input}} on Dart</Text><ID>941329</ID></Desc></Data> + 0 + false + + + 6220 + 2021Summer01T06 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Pouncer, you mischievous friend! Your antics never fail to amuse us all.</Text><ID>940330</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightlightPouncer</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlightPouncer</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Pouncer</Text><ID>940329</ID></Title><Desc><Text>{{Input}} on Pouncer</Text><ID>941330</ID></Desc></Data> + 0 + false + + + 6221 + 2021Summer01T07 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ruffrunner - my sweet boy. One day you will need to grow up, but I hope that you never lose that spark of joy inside.</Text><ID>940332</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWNightlightRuffrunner</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlightRuffrunner</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Ruffrunner</Text><ID>940331</ID></Title><Desc><Text>{{Input}} on Ruffrunner</Text><ID>941331</ID></Desc></Data> + 0 + false + + false + + + 6216 + 2021Summer01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Something [c][3eebff]important[/c][ffffff] seems to be going on within the Archipelago. Head to New Berk and speak with Valka for more details.</Text><ID>940334</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It's a pleasure to speak to you as always. I have indeed been preoccupied lately - but only with the best of intentions, I assure you.</Text><ID>940335</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka in New Berk</Text><ID>940333</ID></Title><Desc><Text>Talk to Valka in New Berk</Text><ID>941332</ID></Desc></Data> + 0 + false + + + 6217 + 2021Summer01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Despite our best efforts, the conflict in the archipelago has refused to slow down. We may need more help fending off these Warlords and Stormheart. And - well, I believe I have come across a solution that will do all of us good... especially the dragons I have in mind.@@Please, join me in the Hidden World below New Berk.</Text><ID>940337</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hidden World entrance in New Berk</Text><ID>940336</ID></Title><Desc><Text>Go to the Hidden World entrance in New Berk</Text><ID>941333</ID></Desc></Data> + 0 + false + + + 6218 + 2021Summer01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}! Come join us, please!</Text><ID>940339</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Sometimes I still can't believe that we are allowed to be here. This is the dragons' most sacred place; we cannot take this honor lightly. I know you keep the dragons' best interests at heart, {{Name}}; it's up to us to keep it up.</Text><ID>940340</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Valka</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Valka in the Hidden World near New Berk</Text><ID>940338</ID></Title><Desc><Text>Go to Valka in the Hidden World near New Berk</Text><ID>941334</ID></Desc></Data> + 0 + false + + + 6222 + 2021Summer01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I have an idea for our Night Lights - a journey of experience for each one that will require teamwork to accomplish. Hiccup and Toothless are busy in negotiations with other viking tribes but have recommended you highly to train the Night Lights in their stead. Please, come speak to me further.</Text><ID>940342</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>My many years with the dragons have taught me to spot the hidden potential in each dragon. These Night Lights are brimming with it. @@ I believe that if we travel across the archipelago, we'll be able to uncover our friends' greatest strengths. Maybe we can unlock the power of the alpha inside.@@What do you say, {{Name}}: are you in?</Text><ID>940343</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Valka</Text><ID>940341</ID></Title><Desc><Text>Talk with Valka</Text><ID>941335</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206430 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 206430 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 206430 + true + 350 + 350 + + 0 + +
+ false +
+ + 2988 + 2021 Summer02 + 45 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrp2021Summer02T00.unity3d/PfGrp2021Summer02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Summer02T02.unity3d/PfGrp2021Summer02T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Scuttleclaw Island</Text><ID>41197</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2986 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2988 + 6223 + 0 + + + 1 + 2988 + 6224 + 0 + + + 1 + 2988 + 6225 + 0 + + + 1 + 2988 + 6226 + 0 + + + 1 + 2988 + 6227 + 0 + + + 1 + 2988 + 6228 + 0 + + + 1 + 2988 + 6229 + 0 + + + 1 + 2988 + 6230 + 0 + + + 1 + 2988 + 6231 + 0 + + + 1 + 2988 + 6232 + 0 + + + 1 + 2988 + 6233 + 0 + + + 1 + 2988 + 6234 + 0 + + + 1 + 2988 + 6235 + 0 + + + 1 + 2988 + 6236 + 0 + + + + 1 + 206440 + 0 + + 6223 + 2021Summer02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Hello again, {{Name}} and {{dragon name}}. Our journey with the young Night Lights around the archipelago is about to begin. We are going to visit each of the eldest and largest of dragons. @@ Before we go, please check in with Hiccup. I've cleared our mission with him, but he had something to tell you before we go.</Text><ID>940345</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey {{Name}}: I’m sorry I’ve been away so much lately. I’m working with other tribes to improve alliances, which hasn’t always been simple. Old habits with dragons are hard to break, but not impossible with some time and effort.@@Valka asked who could assist with helping our Night Lights to understand more of the world, and your name immediately came up. I hope you don't mind.</Text><ID>940346</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup at New Berk</Text><ID>940344</ID></Title><Desc><Text>Talk with Hiccup at New Berk</Text><ID>941336</ID></Desc></Data> + 0 + false + + + 6224 + 2021Summer02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I just wanted to tell you that you have my full support, but you might want to talk to Toothless himself: I don’t speak for him on this.</Text><ID>940348</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great! Thanks for trusting us with your children, bud. I know Valka and {{Name}} will keep them safe.</Text><ID>940349</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWToothless</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWToothless</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Toothless to ask his approval</Text><ID>940347</ID></Title><Desc><Text>{{Input}} on Toothless to ask his approval</Text><ID>941337</ID></Desc></Data> + 0 + false + + + 6225 + 2021Summer02T03 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_DragonTactics</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Thank you for your confidence in us. I have a few last things to prepare; in the meanwhile, I am sending the Night Lights to the training grounds with Astrid. Would you give her a hand with them?</Text><ID>940351</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There you are. These little dragons are a lot to handle; they’re racing about inside my training area as we speak.</Text><ID>940352</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DragonTactics</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Astrid in the Training Grounds</Text><ID>940350</ID></Title><Desc><Text>Find Astrid in the Training Grounds</Text><ID>941338</ID></Desc></Data> + 0 + false + + + 6226 + 2021Summer02T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>If you’re really heading out into the world with the Night Lights, we should get in a bit of training while we wait for Valka. The Night Lights will be watching you train: no pressure!</Text><ID>940354</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That was a great warm-up.</Text><ID>940355</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DragonTactics</Value></Pair><Pair><Key>Name</Key><Value>STNightLight01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat Nightlight Practice Round in Dragon Tactics</Text><ID>940353</ID></Title><Desc><Text>Defeat Nightlight Practice Round in Dragon Tactics</Text><ID>941339</ID></Desc></Data> + 0 + false + + + 6227 + 2021Summer02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Head back to Valka to see if she’s ready; I’ll send the Night Lights along as soon as I can.</Text><ID>940357</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>How was your training session? You look invigorated!</Text><ID>940358</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check in with Valka</Text><ID>940356</ID></Title><Desc><Text>Check in with Valka</Text><ID>941340</ID></Desc></Data> + 0 + false + + + 6228 + 2021Summer02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I have determined our first stop should be to visit a mighty Skrill Titan which has made nest on Scuttleclaw Island. Would you help me gather three more brown trout, in case we need to appease her?</Text><ID>940360</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Well done, I think we are ready.</Text><ID>940361</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>ItemID</Key><Value>7139</Value></Pair><Pair><Key>ItemDescription</Key><Value>Brown Trout</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring 3 Brown Trout to Valka</Text><ID>940359</ID></Title><Desc><Text>Bring 3 Brown Trout to Valka</Text><ID>941341</ID></Desc></Data> + 0 + false + + + 6229 + 2021Summer02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I will fetch our young dragons; let us meet at Scuttleclaw Island!</Text><ID>940362</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Something is very wrong here: I fear the worst. There's no sign of the Skrill Titan.</Text><ID>940363</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Scuttleclaw Island</Text><ID>938741</ID></Title><Desc><Text>Go to Scuttleclaw Island</Text><ID>938741</ID></Desc></Data> + 0 + false + + + 6230 + 2021Summer02T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let us check on the Scuttleclaw nests, for they are the most vulnerable on this island.</Text><ID>940365</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>What has happened here? The Scuttleclaw would not choose to leave their nests. </Text><ID>940366</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ScuttleclawNests</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the Scuttleclaw nests</Text><ID>940364</ID></Title><Desc><Text>Check on the Scuttleclaw nests</Text><ID>941342</ID></Desc></Data> + 0 + false + + + 6231 + 2021Summer02T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I will look for traces of baby dragons that may have escaped; {{Name}}, please look for any clues of what could have disturbed them. Dart, Ruffrunner, Pouncer: stay close to Cloudjumper.</Text><ID>940368</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Are those human footprints? See where they lead!</Text><ID>940369</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WarlordFootprints</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFootprints</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Inspect the Evidence</Text><ID>940367</ID></Title><Desc><Text>Inspect the Evidence</Text><ID>941343</ID></Desc></Data> + 0 + false + + + 6232 + 2021Summer02T10 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh, Thor lend us strength... Who are these men?</Text><ID>940370</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer02T10CS.unity3d/PfGrp2021Summer02T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WarlordOverlook</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the footprints</Text><ID>923582</ID></Title><Desc><Text>Follow the footprints</Text><ID>923582</ID></Desc></Data> + 0 + false + + + 6233 + 2021Summer02T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Take a swift flight over the camp and survey for symbols. Perhaps we can identify them. Try not to be spotted.</Text><ID>940372</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer02T11CS.unity3d/PfGrp2021Summer02T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Back to the rocks, quickly!</Text><ID>940373</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WarlordCamp</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Scout by flying over the camp</Text><ID>940371</ID></Title><Desc><Text>Scout by flying over the camp</Text><ID>941344</ID></Desc></Data> + 0 + false + + + 6234 + 2021Summer02T12 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWValkaCloudjumper</Asset><Location>PfMarker_SummerValkaEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWNightlightBlackBlueNPC</Asset><Location>PfMarker_SummerNightlightBlackBlueEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWNightlightBlackGreenNPC</Asset><Location>PfMarker_SummerNightlightBlackGreenEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWNightlightWhiteNPC</Asset><Location>PfMarker_SummerNightlightWhiteEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The Warlords have made camp here, they have become emboldened. We dare not linger here too long. </Text><ID>940375</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WarlordOverlook</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Regroup with Valka</Text><ID>940374</ID></Title><Desc><Text>Regroup with Valka</Text><ID>941345</ID></Desc></Data> + 0 + false + + + 6235 + 2021Summer02T13 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWValkaCloudjumper</Asset><Location>PfMarker_SummerValkaEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Please check out towards the sea to look for any further Warlord fleet in the area. I need to be sure these eggs are safe and will catch up to you soon.</Text><ID>940377</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The sea looks quiet out this way... but for how long?</Text><ID>940378</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Use the map to check the eastern sea</Text><ID>940376</ID></Title><Desc><Text>Use the map to check the eastern sea</Text><ID>941346</ID></Desc></Data> + 0 + false + + + 6236 + 2021Summer02T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Gobber manages the defenses, giving him a report would be a good next step.</Text><ID>940380</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>How dare they bully our wee gentle Scuttleclaw! I hope that Skrill titan gives them what-for. @@Everyone’s bringin’ me defense reports lately, you came to the right viking for news. I don't trust that quiet sea to the northeast.... but I’ll let you know if I hear anything.</Text><ID>940381</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber in New Berk</Text><ID>941347</ID></Title><Desc><Text>Talk to Gobber in New Berk</Text><ID>941347</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206440 + true + 50 + 50 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 206440 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 206440 + true + 150 + 150 + + 0 + +
+ + 150 +

12

+ 0 + + 1 + 2517 + 206440 + true + 150 + 150 + + 0 + +
+ false +
+ + 2990 + 2021 Summer04 + 45 +

+ <Data><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrp2021Summer04T00.unity3d/PfGrp2021Summer04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Summer04T00A.unity3d/PfGrp2021Summer04T00A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Inspiration</Text><ID>939945</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2989 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2990 + 6254 + 0 + + + 1 + 2990 + 6255 + 0 + + + 1 + 2990 + 6256 + 0 + + + 1 + 2990 + 6257 + 0 + + + 1 + 2990 + 6258 + 0 + + + 1 + 2990 + 6259 + 0 + + + 1 + 2990 + 6260 + 0 + + + 1 + 2990 + 6261 + 0 + + + 1 + 2990 + 6262 + 0 + + + 2 + 2990 + 2991 + 0 + + + 1 + 2990 + 6266 + 0 + + + 1 + 2990 + 6267 + 0 + + + 1 + 2990 + 6268 + 0 + + + 1 + 2990 + 6269 + 0 + + + + 1 + 206436 + 0 + + 2991 + 2021Summer04T10 + 45 +

2990

+ <Data><Offer><Type>Popup</Type><ID>939944</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>These are baby Scuttleclaw from Scuttleclaw island. Quickly free them!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2991 + 6263 + 0 + + + 1 + 2991 + 6264 + 0 + + + 1 + 2991 + 6265 + 0 + + + + 1 + 0 + 0 + + 6263 + 2021Summer04T10 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSummerCage01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSummerCage01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the first cage</Text><ID>940438</ID></Title><Desc><Text>Open the first cage</Text><ID>941365</ID></Desc></Data> + 0 + false + + + 6264 + 2021Summer04T11 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSummerCage02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSummerCage02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the second cage</Text><ID>940439</ID></Title><Desc><Text>Open the second cage</Text><ID>941366</ID></Desc></Data> + 0 + false + + + 6265 + 2021Summer04T12 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSummerCage03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSummerCage03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the third cage</Text><ID>940440</ID></Title><Desc><Text>Open the third cage</Text><ID>941367</ID></Desc></Data> + 0 + false + + false + + + 6254 + 2021Summer04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I believe should continue to inspire our Night Lights with experiences across the archipelago. I have just received word from our Archeologist that the matriarch of Dragon Island, the Green Death, has been sighted to the northwest. @@This opportunity to observe her would be invaluable to our brave young lady. Please find Dart.</Text><ID>940442</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerDart</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Dart at New Berk</Text><ID>940441</ID></Title><Desc><Text>Find Dart at New Berk</Text><ID>941368</ID></Desc></Data> + 0 + false + + + 6255 + 2021Summer04T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWNightlightBlackBlueNPC</Asset><Location>PfMarker_SummerDart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Please bring her back to me.</Text><ID>940444</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Hello, little one!</Text><ID>940445</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWValka</Value></Pair><Pair><Key>Name</Key><Value>PfDWValka</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWNightlightBlackBlueNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Bring Dart to Valka</Text><ID>940443</ID></Title><Desc><Text>Bring Dart to Valka</Text><ID>941369</ID></Desc></Data> + 0 + false + + + 6256 + 2021Summer04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let us go: I do not want to miss this opportunity to safely observe the Green Death from a distance. Head out to sea to the northwest: I will see you there! You can find the spot marked on your map.</Text><ID>940447</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>No sign of her from here. We may need to be patient.@@This may be for the best: there is a fleet of ships on the horizon, and our Green Death may not be tolerant of them.</Text><ID>940448</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Use the map to go to the ocean</Text><ID>940446</ID></Title><Desc><Text>Use the map to go to the ocean</Text><ID>941370</ID></Desc></Data> + 0 + false + + + 6257 + 2021Summer04T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Valka! {{Name}}! I am relieved you are here! We have company!</Text><ID>940449</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Are you all right, Skulder?</Text><ID>940450</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer04T04CS.unity3d/PfGrp2021Summer04T04CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Yes, I was hiding from those ships, but.... Thor save us all: the Green Death is right there!</Text><ID>940451</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Skulder</Text><ID>931498</ID></Title><Desc><Text>Talk to Skulder</Text><ID>931498</ID></Desc></Data> + 0 + false + + + 6258 + 2021Summer04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>She is indeed, but seems peaceful for now. I cannot say the same of the Warlords. These look to be warlord ships, but we should not assume. {{Name}}, please scout cautiously, giving the Green Death a wide berth. </Text><ID>940453</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Just a moment: who is that below?</Text><ID>940454</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>HARALD, the fiend!</Text><ID>940455</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerShips</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Scout near the ships</Text><ID>940452</ID></Title><Desc><Text>Scout near the ships</Text><ID>941371</ID></Desc></Data> + 0 + false + + + 6259 + 2021Summer04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>We meet in the most interesting places, {{Name}}!</Text><ID>940457</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>What am I doing here? The same reason we all are here: I’m looking at these warlords so far out of their territory. The mountain of a dragon being out here is a special bonus. @@Imagine if she turned on the warlord fleet: how horrible for them. Come on, wouldn’t you like to see that, {{Name}}?</Text><ID>940458</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find out what Harald is doing there</Text><ID>940456</ID></Title><Desc><Text>Find out what Harald is doing there</Text><ID>941372</ID></Desc></Data> + 0 + false + + + 6260 + 2021Summer04T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>No. It is our responsibility to respect and protect these dragons by giving them proper space.</Text><ID>940460</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Looks like your little dragon pal thinks otherwise.</Text><ID>940461</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Dart! Quick, intercept her!</Text><ID>940462</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerDartGD</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Dart</Text><ID>940459</ID></Title><Desc><Text>Look for Dart</Text><ID>941373</ID></Desc></Data> + 0 + false + + + 6261 + 2021Summer04T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You should mount Dart and get away quickly!</Text><ID>940463</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>How horrible. Very sad.</Text><ID>940464</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer04T08CS.unity3d/PfGrp2021Summer04T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SummerDartGD</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDart</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Dart</Text><ID>940327</ID></Title><Desc><Text>{{Input}} on Dart</Text><ID>941329</ID></Desc></Data> + 0 + false + + + 6262 + 2021Summer04T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We don’t have time to deal with Harald; there are captured dragons on those ships. Hurry, {{Name}}!</Text><ID>940466</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerScuttleclaw</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly down to the Scuttleclaws</Text><ID>940465</ID></Title><Desc><Text>Fly down to the Scuttleclaws</Text><ID>941374</ID></Desc></Data> + 0 + false + + + 6266 + 2021Summer04T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>They're still too afraid. Perhaps Dart can get through to them. Give the mighty roar of the Green Death a try, Dart!</Text><ID>940468</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer04T10CS.unity3d/PfGrp2021Summer04T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>What a brave and inspiring roar, young one! You make your parents proud, Dart. Lead the baby Scuttleclaw to safety!</Text><ID>940469</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer04T13CS.unity3d/PfGrp2021Summer04T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDart</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDart</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Dart to ask for her aid</Text><ID>940467</ID></Title><Desc><Text>{{Input}} on Dart to ask for her aid</Text><ID>941375</ID></Desc></Data> + 0 + false + + + 6267 + 2021Summer04T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Our Archeologist might be in trouble, we need to find him in this chaos.</Text><ID>940471</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Skulder's ship has been struck by fire!</Text><ID>940472</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerBoat</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Skulder</Text><ID>940470</ID></Title><Desc><Text>Find Skulder</Text><ID>941376</ID></Desc></Data> + 0 + false + + + 6268 + 2021Summer04T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Skulder, can you hear us?</Text><ID>940474</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>… Is my boat all right?</Text><ID>940475</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>No, but you are safe, and that is what is important. Thank you for finding him, {{Name}}.</Text><ID>940476</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Assist Skulder</Text><ID>940473</ID></Title><Desc><Text>Assist Skulder</Text><ID>941377</ID></Desc></Data> + 0 + false + + + 6269 + 2021Summer04T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>All of you, please come back to a safer distance.</Text><ID>940478</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>I believe the Green Death is far more than pure rage: she did not harm the baby scuttleclaw. Perhaps she has a greater empathy with Dart than we knew, as well. @@ There are forces of nature in this world far beyond our ability, or right, to control. They deserve our respect. From a distance, we can learn from them, and through that understanding, be inspired. </Text><ID>940479</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer04T16CS.unity3d/PfGrp2021Summer04T16CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Everyone is here. And not a moment too soon: the Green Death is on the move...</Text><ID>940480</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerSafeSpot</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly to the safe spot</Text><ID>940477</ID></Title><Desc><Text>Fly to the safe spot</Text><ID>941378</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206436 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 206436 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 206436 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 206436 + true + 350 + 350 + + 0 + +
+ false +
+ + 2992 + 2021 Summer05 + 45 +

+ <Data><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrp2021Summer05T00.unity3d/PfGrp2021Summer05T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfGrp2021Summer05T05.unity3d/PfGrp2021Summer05T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>It takes a Village</Text><ID>939946</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2990 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2992 + 6270 + 0 + + + 1 + 2992 + 6271 + 0 + + + 1 + 2992 + 6272 + 0 + + + 1 + 2992 + 6273 + 0 + + + 1 + 2992 + 6274 + 0 + + + 1 + 2992 + 6275 + 0 + + + 1 + 2992 + 6276 + 0 + + + 1 + 2992 + 6277 + 0 + + + 1 + 2992 + 6278 + 0 + + + 1 + 2992 + 6279 + 0 + + + 1 + 2992 + 6280 + 0 + + + 1 + 2992 + 6281 + 0 + + + 1 + 2992 + 6282 + 0 + + + 1 + 2992 + 6283 + 0 + + + + 1 + 206437 + 0 + + 6270 + 2021Summer05T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It is time to inspire our dear Ruffrunner. I believe he is still in the Hidden World near New Berk. I’ll see you there.</Text><ID>940482</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The majesty of this place never ceases to amaze.</Text><ID>940483</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hidden World at New Berk</Text><ID>940481</ID></Title><Desc><Text>Go to the Hidden World at New Berk</Text><ID>941379</ID></Desc></Data> + 0 + false + + + 6271 + 2021Summer05T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Perhaps Ruffrunner is still with the Light Fury. Let us see.</Text><ID>940485</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ah, there’s the sleepyhead!</Text><ID>940486</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerRuffrunner</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Ruffrunner in the Hidden World by New Berk</Text><ID>940484</ID></Title><Desc><Text>Find Ruffrunner in the Hidden World by New Berk</Text><ID>941380</ID></Desc></Data> + 0 + false + + + 6272 + 2021Summer05T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Give him a gentle nudge.</Text><ID>940488</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It is time for adventure, young one!</Text><ID>940489</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Wake up the sleepyhead Ruffrunner</Text><ID>940487</ID></Title><Desc><Text>Wake up the sleepyhead Ruffrunner</Text><ID>941381</ID></Desc></Data> + 0 + false + + + 6273 + 2021Summer05T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Perhaps the Light Fury can entice him if she comes with us. Please request her aid.</Text><ID>940491</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Excellent!</Text><ID>1414</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLightFurySummer</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLightFurySummer</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Request aid from the Light Fury</Text><ID>940490</ID></Title><Desc><Text>Request aid from the Light Fury</Text><ID>941382</ID></Desc></Data> + 0 + false + + + 6274 + 2021Summer05T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let us go to my sanctuary. You can find it marked on your map.</Text><ID>940493</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Welcome to my sanctuary, {{Name}}, {{dragon name}}, and our untamed Light Fury.</Text><ID>940494</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Valka's Sanctuary</Text><ID>940492</ID></Title><Desc><Text>Go to Valka's Sanctuary</Text><ID>941383</ID></Desc></Data> + 0 + false + + + 6275 + 2021Summer05T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Please feel at home. When you are ready, a polite greeting to the Bewilderbeast would be most welcomed.</Text><ID>940496</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer05T06CS.unity3d/PfGrp2021Summer05T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Platform</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go closer to the Bewilderbeast</Text><ID>940495</ID></Title><Desc><Text>Go closer to the Bewilderbeast</Text><ID>941384</ID></Desc></Data> + 0 + false + + + 6276 + 2021Summer05T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ruffrunner seems shy, check on him, please.</Text><ID>940498</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Hello, my dear Bewilderbeast! We are sorry to have awakened you from your nap, but I have brought visitors.</Text><ID>940499</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Small steps are still steps forward. Let us not push him until he is ready.</Text><ID>940500</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check on Ruffrunner</Text><ID>940497</ID></Title><Desc><Text>Check on Ruffrunner</Text><ID>941385</ID></Desc></Data> + 0 + false + + + 6277 + 2021Summer05T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The Bewilderbeast will not harm any dragon. Perhaps he has a way to show this to young Ruffrunner.</Text><ID>940502</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer05T08CS.unity3d/PfGrp2021Summer05T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh my, what a show!</Text><ID>940503</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBewilderbeastClickable</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBewilderbeastClickable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} the Bewilderbeast to show he is safe</Text><ID>940501</ID></Title><Desc><Text>{{Input}} the Bewilderbeast to show he is safe</Text><ID>941386</ID></Desc></Data> + 0 + false + + + 6278 + 2021Summer05T09 + <Data><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfGrp2021Summer05T09.unity3d/PfGrp2021Summer05T09</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let us gather up the gift!</Text><ID>940505</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectBFish</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather up the Gift</Text><ID>940504</ID></Title><Desc><Text>Gather up the Gift</Text><ID>941387</ID></Desc></Data> + 0 + false + + + 6279 + 2021Summer05T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Place the fish in a pile here, please. </Text><ID>940507</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWFishSpot</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFishSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} to place fish in a pile</Text><ID>940506</ID></Title><Desc><Text>{{Input}} to place fish in a pile</Text><ID>941388</ID></Desc></Data> + 0 + false + + + 6280 + 2021Summer05T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ruffrunner seems attentive: perhaps with a bit of encouragement, he would like to help.</Text><ID>940509</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>How kind of you, Ruffrunner!</Text><ID>940510</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer05T11CS.unity3d/PfGrp2021Summer05T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_RuffrunnerHungry</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Encourage Ruffrunner to help</Text><ID>940508</ID></Title><Desc><Text>Encourage Ruffrunner to help</Text><ID>941389</ID></Desc></Data> + 0 + false + + + 6281 + 2021Summer05T12 + <Data><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Am I interrupting anything?</Text><ID>940511</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I thought I’d check in on you. How are things here?</Text><ID>940512</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}} has been invaluable in bringing Ruffrunner to this experience: he has been very reluctant to leave the Light Fury’s side.</Text><ID>940513</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup</Text><ID>939187</ID></Title><Desc><Text>Talk with Hiccup</Text><ID>939187</ID></Desc></Data> + 0 + false + + + 6282 + 2021Summer05T13 + <Data><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ve noticed that. He’s very attached to both Toothless and the Light Fury, looking to them for approval. It’s something I understand well: I spent a lot of time wishing my dad would be proud of me.@@Proud of [c][3eebff]all[/c][ffffff] of me.</Text><ID>940515</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Oh, Hiccup….</Text><ID>940516</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I miss him. Every day.</Text><ID>940517</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>He is very proud of the man you were, and the chief you have grown to be, Hiccup.</Text><ID>940518</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I… I hope so. Thanks, mom.@@ …Toothless, bud, can you give Ruffrunner a little encouragement here, when {{Name}} is ready?</Text><ID>940519</ID><ItemID>0</ItemID><Priority>4</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer05T13CS.unity3d/PfGrp2021Summer05T13CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWToothless</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWToothless</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Ask Toothless for help</Text><ID>940514</ID></Title><Desc><Text>Ask Toothless for help</Text><ID>941390</ID></Desc></Data> + 0 + false + + + 6283 + 2021Summer05T14 + <Data><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Go now, young one! Your father is with you!</Text><ID>940521</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wow, that was a powerful roar. What are we teaching the Night Lights?</Text><ID>940522</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>To find themselves, as you have, Hiccup.</Text><ID>940523</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Keep it up, {{Name}}. We trust you with this.</Text><ID>940524</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer05T14CS.unity3d/PfGrp2021Summer05T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_RuffrunnerNextToDad</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRuffrunnerNextToDad</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Encourage Ruffrunner</Text><ID>940520</ID></Title><Desc><Text>Encourage Ruffrunner</Text><ID>941391</ID></Desc></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206437 + true + 60 + 60 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 206437 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 206437 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 206437 + true + 350 + 350 + + 0 + +
+ false +
+ + 2993 + 2021 Summer06 + 45 +

+ <Data><Setup><Scene>OpenOceanWarlordDO</Scene><Asset>RS_DATA/PfGrp2021Summer06T00C.unity3d/PfGrp2021Summer06T00C</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfGrp2021Summer06T00A.unity3d/PfGrp2021Summer06T00A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrp2021Summer06T00B.unity3d/PfGrp2021Summer06T00B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>OpenOceanWarlordDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ValkaHideoutINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfGrp2021Summer06T00D.unity3d/PfGrp2021Summer06T00D</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Crescendo</Text><ID>939950</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2992 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2993 + 6284 + 0 + + + 2 + 2993 + 2994 + 0 + + + 1 + 2993 + 6288 + 0 + + + 1 + 2993 + 6289 + 0 + + + 1 + 2993 + 6290 + 0 + + + 1 + 2993 + 6291 + 0 + + + 1 + 2993 + 6292 + 0 + + + 1 + 2993 + 6293 + 0 + + + 1 + 2993 + 6294 + 0 + + + 1 + 2993 + 6295 + 0 + + + 1 + 2993 + 6296 + 0 + + + 1 + 2993 + 6297 + 0 + + + 1 + 2993 + 6298 + 0 + + + 1 + 2993 + 6299 + 0 + + + 2 + 2993 + 2995 + 0 + + + 1 + 2993 + 6304 + 0 + + + 1 + 2993 + 6305 + 0 + + + 1 + 2993 + 6306 + 0 + + + 1 + 2993 + 6307 + 0 + + + 1 + 2993 + 6308 + 0 + + + 1 + 2993 + 6309 + 0 + + + 1 + 2993 + 6310 + 0 + + + 1 + 2993 + 6311 + 0 + + + 1 + 2993 + 6312 + 0 + + + 1 + 2993 + 6313 + 0 + + + 1 + 2993 + 6314 + 0 + + + 1 + 2993 + 6315 + 0 + + + + 1 + 206438 + 0 + + 2994 + 2021Summer06T02 + 45 +

2993

+ <Data><Offer><Type>Popup</Type><ID>939947</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let's check on them once they arrive, to see if each is ready.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2994 + 6285 + 0 + + + 1 + 2994 + 6286 + 0 + + + 1 + 2994 + 6287 + 0 + + + + 1 + 0 + 0 + + 6285 + 2021Summer06T02 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Leading the way as always I see, Dart!</Text><ID>940526</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDart</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDart</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check on Dart at Valka's Sanctuary</Text><ID>940525</ID></Title><Desc><Text>Check on Dart at Valka's Sanctuary</Text><ID>941392</ID></Desc></Data> + 0 + false + + + 6286 + 2021Summer06T03 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>That is certainly a joyful “yes!”</Text><ID>940528</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWPouncer</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWPouncer</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check on Pouncer at Valka's Sanctuary</Text><ID>940527</ID></Title><Desc><Text>Check on Pouncer at Valka's Sanctuary</Text><ID>941393</ID></Desc></Data> + 0 + false + + + 6287 + 2021Summer06T04 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>My heart is gladdened to see you ready!</Text><ID>940530</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWRuffrunner</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check on Ruffrunner at Valka's Sanctuary</Text><ID>940529</ID></Title><Desc><Text>Check on Ruffrunner at Valka's Sanctuary</Text><ID>941394</ID></Desc></Data> + 0 + false + + false + + + 2995 + 2021Summer06T17 + 45 +

2993

+ <Data><Offer><Type>Popup</Type><ID>939948</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}! We have come to offer you assistance. Shoot at the weak points of the fleet: we will cover your attack!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>939949</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Keep up the pressure!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 2995 + 6300 + 0 + + + 1 + 2995 + 6301 + 0 + + + 1 + 2995 + 6302 + 0 + + + 1 + 2995 + 6303 + 0 + + + + 1 + 0 + 0 + + 6300 + 2021Summer06T17 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWWarlordshipSpot01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWWarlordshipSpot01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Warlord Ships</Text><ID>940531</ID></Title><Desc><Text>Shoot the Warlord Ships</Text><ID>941395</ID></Desc></Data> + 0 + false + + + 6301 + 2021Summer06T18 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWWarlordshipSpot02</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWWarlordshipSpot02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Warlord Ships</Text><ID>940531</ID></Title><Desc><Text>Shoot the Warlord Ships</Text><ID>941395</ID></Desc></Data> + 0 + false + + + 6302 + 2021Summer06T19 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWWarlordshipSpot03</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWWarlordshipSpot03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Warlord Ships</Text><ID>940531</ID></Title><Desc><Text>Shoot the Warlord Ships</Text><ID>941395</ID></Desc></Data> + 0 + false + + + 6303 + 2021Summer06T20 + <Data><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWWarlordshipSpot04</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWWarlordshipSpot04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Warlord Ships</Text><ID>940531</ID></Title><Desc><Text>Shoot the Warlord Ships</Text><ID>941395</ID></Desc></Data> + 0 + false + + false +
+ + 6284 + 2021Summer06T01 + <Data><Setup><Scene>TitanIslandDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_SummerValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>It seems we need to collect the Night Lights! Please check on Pouncer at Titan island.</Text><ID>940533</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Ah! Dart is here as well!@@It is time. Let us gather at my sanctuary.</Text><ID>940534</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>TitanIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerKrayfinWater</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Titan Island to fetch Pouncer</Text><ID>940532</ID></Title><Desc><Text>Go to Titan Island to fetch Pouncer</Text><ID>941396</ID></Desc></Data> + 0 + false + + + 6288 + 2021Summer06T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The young ones are prepared. Join Toothless and the Light Fury: let us observe them!</Text><ID>940536</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>What an incredible experience to witness. We are honored.</Text><ID>940537</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T05CS.unity3d/PfGrp2021Summer06T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NightFuryFamily</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Stand with Toothless and the Light Fury</Text><ID>940535</ID></Title><Desc><Text>Stand with Toothless and the Light Fury</Text><ID>941397</ID></Desc></Data> + 0 + false + + + 6289 + 2021Summer06T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank Thor, I sure walked in at the right time!</Text><ID>940538</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That was incredible to see. I almost forgot what I wanted to tell you! What was it … oh!</Text><ID>940539</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ValkaHideoutINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_MeetFishlegs</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Fishlegs</Text><ID>940190</ID></Title><Desc><Text>Talk with Fishlegs</Text><ID>941398</ID></Desc></Data> + 0 + false + + + 6290 + 2021Summer06T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>When you are done here, Harald wants to talk to you at the school. But I think it’s okay to keep him waiting. I haven’t forgotten he and Stormheart conspired to drown me.</Text><ID>940540</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the School</Text><ID>935906</ID></Title><Desc><Text>Go to the School</Text><ID>935906</ID></Desc></Data> + 0 + false + + + 6291 + 2021Summer06T08 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWHarald.unity3d/PfDWHarald</Asset><Location>PfMarker_DailyHarald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>I’m by the "Great" hall, {{Name}}; take your time. I’m not in a hurry, though you might be, after my news.</Text><ID>940542</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>This comes with some show and tell. A little field trip, if you will.</Text><ID>940543</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Cautiously talk with Harald</Text><ID>940541</ID></Title><Desc><Text>Cautiously talk with Harald</Text><ID>941399</ID></Desc></Data> + 0 + false + + + 6292 + 2021Summer06T09 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWHarald.unity3d/PfDWHarald</Asset><Location>PfMarker_DailyHarald</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>We’re off to the place you call Scuttleclaw Island. Also known as the warlord’s new western outpost.</Text><ID>940544</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>You’re familiar with this island, I can see.</Text><ID>940545</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Scuttleclaw Island</Text><ID>938741</ID></Title><Desc><Text>Go to Scuttleclaw Island</Text><ID>938741</ID></Desc></Data> + 0 + false + + + 6293 + 2021Summer06T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Come over here, {{Name}}, and we’ll get to it.</Text><ID>940547</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>At the heart of this camp, is the most current set of battle plans. I tried to take a peek earlier, but there’s just too many here.</Text><ID>940548</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WarlordMeet</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Harald by the Warlord camp</Text><ID>940546</ID></Title><Desc><Text>Meet Harald by the Warlord camp</Text><ID>941400</ID></Desc></Data> + 0 + false + + + 6294 + 2021Summer06T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Perhaps you and your new pet dragons can actually get at it?</Text><ID>940550</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You’ve been spotted!</Text><ID>940551</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T11CS.unity3d/PfGrp2021Summer06T11CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Battleplan</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the secret battle plan</Text><ID>940549</ID></Title><Desc><Text>Find the secret battle plan</Text><ID>941401</ID></Desc></Data> + 0 + false + + + 6295 + 2021Summer06T12 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrp2021Summer06T12.unity3d/PfGrp2021Summer06T12</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Well, that’s one way to do it. Grab those plans!</Text><ID>940552</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>Thief! How dare you skulk around my camp? Come, face me honorably!</Text><ID>940553</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWBattleplans</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the secret battle plan</Text><ID>940549</ID></Title><Desc><Text>Find the secret battle plan</Text><ID>941401</ID></Desc></Data> + 0 + false + + + 6296 + 2021Summer06T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Pouncer seems to want to help out.</Text><ID>940555</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_MountPouncer</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWNightlightWhiteAdult</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount Pouncer</Text><ID>940554</ID></Title><Desc><Text>Mount Pouncer</Text><ID>941402</ID></Desc></Data> + 0 + false + + + 6297 + 2021Summer06T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>Running away, are you?</Text><ID>940557</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Griselda</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Confront Griselda</Text><ID>940556</ID></Title><Desc><Text>Confront Griselda</Text><ID>941403</ID></Desc></Data> + 0 + false + + + 6298 + 2021Summer06T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>I see you changed your mind, and brought your dragons. No matter! I will show you the ruthless might of the Warlords.</Text><ID>940559</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>You’ll pay for this!</Text><ID>940560</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Griselda</Value></Pair><Pair><Key>Name</Key><Value>STNightLight02MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat Griselda in Dragon Tactics</Text><ID>940558</ID></Title><Desc><Text>Defeat Griselda in Dragon Tactics</Text><ID>941404</ID></Desc></Data> + 0 + false + + + 6299 + 2021Summer06T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>They are headed back towards their fleet. Don’t let them regroup!</Text><ID>940562</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T15CS.unity3d/PfGrp2021Summer06T15CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SummerOcean</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the ship out to the ocean</Text><ID>940561</ID></Title><Desc><Text>Follow the ship out to the ocean</Text><ID>941405</ID></Desc></Data> + 0 + false + + + 6304 + 2021Summer06T21 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>They have attacked the Krayfin! Give him aid!</Text><ID>940564</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Well done, Ruffrunner.</Text><ID>940565</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T21CS.unity3d/PfGrp2021Summer06T21CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WarlordShip</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on the Warlord ship that captured the Krayfin</Text><ID>940563</ID></Title><Desc><Text>Land on the Warlord ship that captured the Krayfin</Text><ID>941406</ID></Desc></Data> + 0 + false + + + 6305 + 2021Summer06T22 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Enough is enough. {{Name}}, head after their largest ship with the Night Lights: it is time we showed direct strength, even if we must fight in their territory!</Text><ID>940567</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Well done, that visible loss should demoralize their whole group; is anyone injured?</Text><ID>940568</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WarlordDT</Value></Pair><Pair><Key>Name</Key><Value>STNightLight03MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Fight the Warlords in Dragon Tactics</Text><ID>940566</ID></Title><Desc><Text>Fight the Warlords in Dragon Tactics</Text><ID>941407</ID></Desc></Data> + 0 + false + + + 6306 + 2021Summer06T23 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Hurry back, let’s check in on the Night Lights after that fierce fight. They are unused to such violence.</Text><ID>940570</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Wait, {{Name}}! Stormheart has found our injured Krayfin!</Text><ID>940571</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T23CS.unity3d/PfGrp2021Summer06T23CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Nightlights</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the Night Lights</Text><ID>940569</ID></Title><Desc><Text>Check on the Night Lights</Text><ID>941408</ID></Desc></Data> + 0 + false + + + 6307 + 2021Summer06T24 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We need you urgently on the Tempest, {{Name}}, Dart, Pouncer, and Ruffrunner!</Text><ID>940573</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Stormheart, this is not your fight.</Text><ID>940574</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TempestDeck</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Land on the Tempest</Text><ID>940572</ID></Title><Desc><Text>Land on the Tempest</Text><ID>941409</ID></Desc></Data> + 0 + false + + + 6308 + 2021Summer06T25 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWPirateQueen</NPC><Text>It is. You have failed to protect the Krayfin. I will take over from here, and this whole archipelago, once and for all.@@{{Name}}. You have ignored my warnings: there won’t be any more. You will die today.</Text><ID>940576</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Are you all right, {{Name}}?</Text><ID>940577</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TempestDT</Value></Pair><Pair><Key>Name</Key><Value>STNightLight04MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Confront Stormheart in Dragon Tactics</Text><ID>940575</ID></Title><Desc><Text>Confront Stormheart in Dragon Tactics</Text><ID>941410</ID></Desc></Data> + 0 + false + + + 6309 + 2021Summer06T26 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We must stay focused on our priority: the innocent dragon! Join me with the poor Krayfin, we must not lose sight of protecting the innocent.</Text><ID>940579</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>You are free, dear one. Your wounds will heal with time; you must go where humans cannot. Dive deeply!</Text><ID>940580</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T26CS.unity3d/PfGrp2021Summer06T26CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWKrayfinLock</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWKrayfinLock</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free the Krayfin</Text><ID>940578</ID></Title><Desc><Text>Free the Krayfin</Text><ID>941411</ID></Desc></Data> + 0 + false + + + 6310 + 2021Summer06T27 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Now that the dragon is safe, we look to our foes. Stormheart has disappeared. Let us spread out and find her. @@ This prolonged war must end: perhaps she will see reason now that the Krayfin is not in immediate danger, and we have shown we wish to protect it as she does.</Text><ID>940582</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TempestSearch</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the Tempest for Stormheart</Text><ID>940581</ID></Title><Desc><Text>Search the Tempest for Stormheart</Text><ID>941412</ID></Desc></Data> + 0 + false + + + 6311 + 2021Summer06T28 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>So: still looking for Stormheart? I have a gift for you.</Text><ID>940584</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Stormheart has a plan which is no doubt full of vengeance. I suggest you think a step ahead of her this time… she isn’t much without this ship, is she? What if you did something about that… </Text><ID>940585</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHarald</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Harald about a "gift"</Text><ID>940583</ID></Title><Desc><Text>Talk with Harald about a "gift"</Text><ID>941413</ID></Desc></Data> + 0 + false + + + 6312 + 2021Summer06T29 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>The Moldruffle dragons that Stormheart uses to propel her ship are miserable. With a bit of a pep talk, they’d mutiny in a heartbeat. But you didn’t hear it from me. If it works out, though, consider doing me a favor another day, won’t you?</Text><ID>940587</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Harald was right, these Moldruffle are in horrible condition, listless and sad.</Text><ID>940588</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>You see, Harald is always right.</Text><ID>940589</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_TempestMoldruffle</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the Moldruffle</Text><ID>940586</ID></Title><Desc><Text>Check on the Moldruffle</Text><ID>941414</ID></Desc></Data> + 0 + false + + + 6313 + 2021Summer06T30 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There must be some way to free the Moldruffle.</Text><ID>940591</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>We can talk favors some other time. Nice working with you as always, {{Name}}.</Text><ID>940592</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T30CS.unity3d/PfGrp2021Summer06T30CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMoldRuffle</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMoldRuffle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Rally the Moldruffle</Text><ID>940590</ID></Title><Desc><Text>Rally the Moldruffle</Text><ID>941415</ID></Desc></Data> + 0 + false + + + 6314 + 2021Summer06T31 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>With the Tempest crippled, now could be the time to sink it.</Text><ID>940594</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}! With the Night Lights at your side, you should be able to overheat the engines if you concentrate firepower!</Text><ID>940595</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T31ACS.unity3d/PfGrp2021Summer06T31ACS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Quick, get out of there!</Text><ID>940596</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TempestShot</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTempestShot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Lead the Night Lights to overheat the Tempest engine</Text><ID>940593</ID></Title><Desc><Text>Lead the Night Lights to overheat the Tempest engine</Text><ID>941416</ID></Desc></Data> + 0 + false + + + 6315 + 2021Summer06T32 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer06T31CS.unity3d/PfGrp2021Summer06T31CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}! {{dragon name}}! What an explosion! I'm relieved you and everyone else are safe and sound. @@ What was done is done. I am proud of you for your quick-thinking and bravery. All of you. </Text><ID>940598</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Why, thank you, Valka.</Text><ID>940599</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Don’t try our patience. I recommend you go elsewhere, Harald. </Text><ID>940600</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Point taken.</Text><ID>940601</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}: It is time we returned home.</Text><ID>940602</ID><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanWarlordDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Regroup</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Regroup with everyone</Text><ID>940597</ID></Title><Desc><Text>Regroup with everyone</Text><ID>941417</ID></Desc></Data> + 0 + false + + + 400 +

1

+ 0 + + 1 + 418 + 206438 + true + 400 + 400 + + 0 + +
+ + 120 +

2

+ 0 + + 1 + 542 + 206438 + true + 120 + 120 + + 0 + +
+ + 400 +

12

+ 0 + + 1 + 1388 + 206438 + true + 400 + 400 + + 0 + +
+ + 700 +

8

+ 0 + + 1 + 2800 + 206438 + true + 700 + 700 + + 0 + +
+ false +
+ + 2996 + 2021 Summer07 + 45 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Summer07T00.unity3d/PfGrp2021Summer07T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_SummerCliff03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Coming of Age</Text><ID>939951</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 2993 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2996 + 6316 + 0 + + + 1 + 2996 + 6317 + 0 + + + 1 + 2996 + 6318 + 0 + + + 1 + 2996 + 6319 + 0 + + + + 1 + 206439 + 0 + + 6316 + 2021Summer07T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We must update Hiccup on everything that has transpired. I’ll catch up to you in New Berk.</Text><ID>940603</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is quite the story! You've accomplished a massive amount!</Text><ID>940604</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>ToHubNewBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup at New Berk</Text><ID>939120</ID></Title><Desc><Text>Talk to Hiccup at New Berk</Text><ID>939120</ID></Desc></Data> + 0 + false + + + 6317 + 2021Summer07T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Incredible! Lead the way to the Night Lights, {{Name}}!</Text><ID>940606</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Summer07T02CS.unity3d/PfGrp2021Summer07T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>The family is together once more!</Text><ID>940607</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SummerCliff01</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet up with Astrid and the family</Text><ID>940605</ID></Title><Desc><Text>Meet up with Astrid and the family</Text><ID>941418</ID></Desc></Data> + 0 + false + + + 6318 + 2021Summer07T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_SummerCliff02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We finally have a chance at peace in the archipelago. With the Warlords pushed back, the other chieftains are open to allegiance. Perhaps we can even help them to see dragons as we do, as part of our team.</Text><ID>940608</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Speaking of teams, {{Name}}, your growing bond with the Night Lights is truly inspirational. I hope your friendship can continue to grow ever deeper.</Text><ID>940609</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Valka</Text><ID>905139</ID></Title><Desc><Text>Speak with Valka</Text><ID>905139</ID></Desc></Data> + 0 + false + + + 6319 + 2021Summer07T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_SummerCliff04</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>More training is in your future! I do not wish to speak for you Hiccup, but I think {{Name}} has more than earned the right to work closely with one of the Night Lights.</Text><ID>940611</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I entirely agree.</Text><ID>940612</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Then it is settled. {{Name}}, which of the Night Lights have you made the closest connection to? (Don't worry, there will still be opportunity to bond with the others!)</Text><ID>940613</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[c][3eebff]Talk to Hiccup to choose a young Night Light to be added to your dragon roster.[/c][ffffff]</Text><ID>940614</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All three of them are very fond of you, what a difficult choice! Still, I think you made the right one. @@Here's an Age-Up token to use when you're ready.@@Don’t forget to get in a victory flight together, {{Name}}, just you two. You’ve earned it. +</Text><ID>940615</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[c][3eebff]This free Age-Up token can be used to age up your new Night Light! Congratulations![/c][ffffff]</Text><ID>940616</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Type</Key><Value>DragonSelect</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiNightLightSelection.unity3d/PfUiNightLightSelection</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup to select a Night Light to train</Text><ID>940610</ID></Title><Desc><Text>Talk with Hiccup to select a Night Light to train</Text><ID>941419</ID></Desc></Data> + 0 + false + + + 20 +

2

+ 0 + + 1 + 20 + 206439 + true + 20 + 20 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 206439 + true + 50 + 50 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 206439 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 10996 + + 1 + 8365 + 206439 + true + 1 + 1 + + 0 + +
+ false +
+ + 3013 + 2021 Summer00 + 3 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Summarhildr</Text><ID>939940</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoQuestDWNightlights</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 08-24-2021 03:00:20,09-06-2021 03:00:20 + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3013 + 6364 + 0 + + + 1 + 3013 + 6365 + 0 + + + 2 + 3013 + 3014 + 0 + + + 1 + 3013 + 6367 + 0 + + + 1 + 3013 + 6368 + 0 + + + + 1 + 206554 + 0 + + 3014 + 2021 Summer00A + 3 +

3013

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3014 + 6366 + 0 + + + + 1 + 206553 + 0 + + 6366 + 2021Summer00T03 + <Data><End><Type>Popup</Type><ID>940315</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah! This is one of [c][ffd800]Valka's Research Notes[/c][ffffff]. Great find, Ruffrunner! Valka's been asking everybody to collect these.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring the note to Gobber</Text><ID>940314</ID></Title></Data> + 0 + false + + + 1 +

6

+ 18862 + + 1 + 8397 + 206553 + true + 1 + 1 + + 0 + +
+ false + + + 6364 + 2021Summer00T01 + <Data><Offer><Type>Popup</Type><ID>940317</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Oi, {{Name}}! These wee Night Lights be drivin' us a bit crazy at school. Can ya get their attention, maybe calm them down a bit?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940318</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Much better, I was gettin' dizzy. They sure seem to listen to you!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDartClickable</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDartClickable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Greet Dart at the School</Text><ID>940316</ID></Title></Data> + 0 + false + + + 6365 + 2021Summer00T02 + <Data><Offer><Type>Popup</Type><ID>940320</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Say, what's that scrap o' paper there ya found, Ruffrunner? {{Name}}, let's have a look.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HeadmasterRight</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectPaperRollV</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on what Ruffrunner found</Text><ID>940319</ID></Title></Data> + 0 + false + + + 6367 + 2021 Summer00T04 + <Data><Offer><Type>Popup</Type><ID>940322</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>In fact, she's got an event board set up in New Berk, that has quests on it every day. Take a minute and go see if any of it interests ya!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940323</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Each day those tasks help a bit, but they aren't the only way to find notes. Racin', battlin', even farmin' can find them too.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSummer</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check out the event board in New Berk</Text><ID>940321</ID></Title></Data> + 0 + false + + + 6368 + 2021Summer00T05 + <Data><Offer><Type>Popup</Type><ID>940325</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Looking to help out, {{Name}}?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940326</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>All of us are helping to find [c][ffd800]Valka's Research Notes[/c][ffffff] to help Valka on her project. I found some while fighting off dragon hunters: here's a few notes that you can pass along!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Eret</Text><ID>940324</ID></Title></Data> + 0 + false + + + 25 +

2

+ 0 + + 1 + 21 + 206554 + true + 25 + 25 + + 0 + +
+ + 100 +

1

+ 0 + + 1 + 38 + 206554 + true + 100 + 100 + + 0 + +
+ + 100 +

8

+ 0 + + 1 + 611 + 206554 + true + 100 + 100 + + 0 + +
+ + 4 +

6

+ 18862 + + 1 + 8398 + 206554 + true + 4 + 4 + + 0 + +
+ false +
+ + 3015 + 2021 Dreadfall01 + 61 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall01T00.unity3d/PfGrp2021Dreadfall01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_DreadfallTuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dreadfully Delightful Decor [2021]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 20903 + 2 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3015 + 6369 + 0 + + + 1 + 3015 + 6370 + 0 + + + 2 + 3015 + 3016 + 0 + + + 1 + 3015 + 6379 + 0 + + + 1 + 3015 + 6380 + 0 + + + 2 + 3015 + 3017 + 0 + + + 1 + 3015 + 6383 + 0 + + + 1 + 3015 + 6384 + 0 + + + + 1 + 206566 + 0 + + 3016 + 2021Dreadfall01A + 61 +

3015

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3016 + 6371 + 0 + + + 1 + 3016 + 6372 + 0 + + + 1 + 3016 + 6373 + 0 + + + 1 + 3016 + 6374 + 0 + + + 1 + 3016 + 6375 + 0 + + + 1 + 3016 + 6376 + 0 + + + 1 + 3016 + 6377 + 0 + + + 1 + 3016 + 6378 + 0 + + + + 1 + 0 + 0 + + 6371 + 2021Dreadfall01T03 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6371</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6371</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall Decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6372 + 2021Dreadfall01T04 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6372</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6372</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6373 + 2021Dreadfall01T05 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6373</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6373</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6374 + 2021Dreadfall01T06 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6374</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6374</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6375 + 2021Dreadfall01T07 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6375</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6375</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6376 + 2021Dreadfall01T08 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6376</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6376</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6377 + 2021Dreadfall01T09 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6377</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6377</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + + 6378 + 2021Dreadfall01T10 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6378</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6378</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Dreadfall decoration</Text><ID>940132</ID></Title></Data> + 0 + false + + false + + + 3017 + 2021Dreadfall01B + 61 +

3015

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3017 + 6381 + 0 + + + 1 + 3017 + 6382 + 0 + + + + 1 + 0 + 0 + + 6381 + 2021Dreadfall01T13 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6381</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6381</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Scarecrow Decoration</Text><ID>940133</ID></Title></Data> + 0 + false + + + 6382 + 2021Dreadfall01T14 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DecorationSpot6382</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDecorationSpot6382</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place a Scarecrow Decoration</Text><ID>940133</ID></Title></Data> + 0 + false + + false +
+ + 6369 + 2021Dreadfall01T01 + <Data><Offer><Type>Popup</Type><ID>940135</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Welcome to our Dreadfall festivities, {{Name}}! Everyone is getting in the spirit, particularly the twins: there's quite a giant mess by the maze! Go take a look, will ye?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940136</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Did Gobber call my artistic expression a MESS?@@Because yes. It is a mess right now. I need help.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallDecorations</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the decoration heap in New Berk</Text><ID>940134</ID></Title></Data> + 0 + false + + + 6370 + 2021Dreadfall01T02 + <Data><Offer><Type>Popup</Type><ID>940138</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>And you don't look busy. Let's do this. Grab some decorations from the box!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940139</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Perfect; let's get to decorating. I marked some spots: put out some fun things around New Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DreadfallDecorations</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBoxofDecorations</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the box of decorations</Text><ID>940137</ID></Title></Data> + 0 + false + + + 6379 + 2021Dreadfall01T11 + <Data><Offer><Type>Popup</Type><ID>940140</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Lookin' great! Come on back over, though, there's a wrinkle in the plan.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940141</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>My sister is the wrinkle.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940142</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Your FACE is a wrinkle, Tuffnut. I just finished my own decorations: living Dreadfall artwork. Check it out!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall01T11CS.unity3d/PfGrp2021Dreadfall01T11CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Come back to Tuffnut</Text><ID>936874</ID></Title></Data> + 0 + false + + + 6380 + 2021Dreadfall01T12 + <Data><Offer><Type>Popup</Type><ID>940144</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Ruffnut's dragons are going to attract wild ones to mess up our hard work! Good thing I thought ahead. Let's put up scarecrows. Grab 'em out of the box!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940145</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Plop those scary things down.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TuffnutHouseBack</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWScarecrowBox</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find the box of Scarecrows</Text><ID>940143</ID></Title></Data> + 0 + false + + + 6383 + 2021Dreadfall01T15 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall01T15.unity3d/PfGrp2021Dreadfall01T15</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940147</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So now we've got scarecrows ...! Which are doing nothing to help, wild dragons are helping themselves to our fancy display anyway.@@Grab those troublemakers before they ruin everything!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940148</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Don't touch my painted dragons, they're mega behaved.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTroublemaker</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Grab the dragon troublemakers</Text><ID>940146</ID></Title></Data> + 0 + false + + + 6384 + 2021Dreadfall01T16 + <Data><Offer><Type>Popup</Type><ID>940150</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's it: organized chaos. Just the way we like it.@@Come stand over by me, and we'll review your work!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940151</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>It's almost Loki-level mayhem! Great stuff, {{Name}}.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall01T16CS.unity3d/PfGrp2021Dreadfall01T16CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Tuffnut at New Berk</Text><ID>940149</ID></Title></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 206566 + true + 75 + 75 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206566 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206566 + true + 50 + 50 + + 0 + +
+ + 75 +

6

+ 19055 + + 1 + 8585 + 206566 + true + 75 + 75 + + 0 + +
+ false +
+ + 3018 + 2021 Dreadfall02 + 16 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall02T00.unity3d/PfGrp2021Dreadfall02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_DreadfallMildew</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Tuffnut's Dreadful Contest [2021]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3015 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3018 + 6385 + 0 + + + 1 + 3018 + 6386 + 0 + + + 2 + 3018 + 3019 + 0 + + + 1 + 3018 + 6393 + 0 + + + 1 + 3018 + 6394 + 0 + + + 1 + 3018 + 6395 + 0 + + + 1 + 3018 + 6396 + 0 + + + 2 + 3018 + 3020 + 0 + + + 1 + 3018 + 6442 + 0 + + + + 1 + 206565 + 0 + + 3019 + 2021Dreadfall02A + 16 +

3018

+ <Data><Offer><Type>Popup</Type><ID>939932</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, one down. Next, find somebody to wear the Snotlout mask.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3019 + 6387 + 0 + + + 1 + 3019 + 6388 + 0 + + + 1 + 3019 + 6389 + 0 + + + 1 + 3019 + 6390 + 0 + + + 1 + 3019 + 6391 + 0 + + + 1 + 3019 + 6392 + 0 + + + + 1 + 0 + 0 + + 6387 + 2021Dreadfall02T03 + <Data><End><Type>Popup</Type><ID>940152</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Um, how do I tactfully say this …. NO.@@I’ll take that Stormheart one and play the villain for a change, though. Thanks for the mask, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + + 6388 + 2021Dreadfall02T04 + <Data><End><Type>Popup</Type><ID>940153</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Snotlout? What else do ye have?@@Eret? That’ll work!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + + 6389 + 2021Dreadfall02T05 + <Data><End><Type>Popup</Type><ID>940154</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Um, I've actually got one already, but thanks! I'm going to be Dagur. Having trouble with his laugh, though.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + + 6390 + 2021Dreadfall02T06 + <Data><End><Type>Popup</Type><ID>940155</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Do you have a Stoick mask instead? I'd like that one!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + + 6391 + 2021Dreadfall02T07 + <Data><End><Type>Popup</Type><ID>940156</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Play your silly games? Keep that nonsense away from me! Can’t you see how busy I am?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940157</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait, Mildew’s back? Huh. I kinda forgot he existed. Sweet, sweet ignorance, you are so fleeting.@@Oh well, no matter: find someone else!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + + 6392 + 2021Dreadfall02T08 + <Data><End><Type>Popup</Type><ID>940158</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Is Snotlout my only choice? ...How about Fishlegs?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWEret</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + false + + + 3020 + 2021Dreadfall02T13Random + 16 +

3018

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>1</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 2 + 3020 + 3021 + 0 + + + 2 + 3020 + 3026 + 0 + + + 2 + 3020 + 3027 + 0 + + + 2 + 3020 + 3028 + 0 + + + + 1 + 0 + 0 + + 3021 + 2021Dreadfall02T13Astrid + 16 +

3020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3021 + 6397 + 0 + + + 1 + 3021 + 6398 + 0 + + + + 1 + 0 + 0 + + 6397 + 2021Dreadfall02T13A + <Data><Offer><Type>Popup</Type><ID>940160</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, meet me by the judging spot, and I shall make my decision on who wears their mask the very best, and embodies the true spirit of Dreadfall.@@Come, assistant contest administrator!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall02T12BCS.unity3d/PfGrp2021Dreadfall02T12BCS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940161</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I have CHOSEN.@@For her cold and staring quality: Astrid as Stormheart!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallJudgeSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the judging spot</Text><ID>940159</ID></Title></Data> + 0 + false + + + 6398 + 2021Dreadfall02T14A + <Data><End><Type>Popup</Type><ID>940163</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thank you, {{Name}}. We may not like Stormheart, whose mask I'm wearing, but she certainly is a villainous presence. Her mask was a sure win!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Congratulate the winner</Text><ID>940162</ID></Title></Data> + 0 + false + + false +
+ + 3026 + 2021Dreadfall02T13Hob + 16 +

3020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3026 + 6414 + 0 + + + 1 + 3026 + 6415 + 0 + + + + 1 + 0 + 0 + + 6414 + 2021Dreadfall02T13H + <Data><Offer><Type>Popup</Type><ID>940160</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, meet me by the judging spot, and I shall make my decision on who wears their mask the very best, and embodies the true spirit of Dreadfall.@@Come, assistant contest administrator!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940164</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I have CHOSEN.@@The Hobgobbler truly displays the serenity of his character. Never has anyone captured my essence so accurately.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall02T12ACS.unity3d/PfGrp2021Dreadfall02T12ACS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallJudgeSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the judging spot</Text><ID>940159</ID></Title></Data> + 0 + false + + + 6415 + 2021Dreadfall02T14H + <Data><End><Type>Popup</Type><ID>932908</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHobgobblerNPC</NPC><Text>...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940165</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>He's thrilled. I can tell by his face.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHobgobblerNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Congratulate the winner</Text><ID>940162</ID></Title></Data> + 0 + false + + false +
+ + 3027 + 2021Dreadfall02T13Gobber + 16 +

3020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3027 + 6416 + 0 + + + 1 + 3027 + 6417 + 0 + + + + 1 + 0 + 0 + + 6416 + 2021Dreadfall02T13G + <Data><Offer><Type>Popup</Type><ID>940160</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, meet me by the judging spot, and I shall make my decision on who wears their mask the very best, and embodies the true spirit of Dreadfall.@@Come, assistant contest administrator!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall02T12CCS.unity3d/PfGrp2021Dreadfall02T12CCS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940166</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I have CHOSEN.@@Gobber makes a vision of eerie accuracy as Eret, son of Eret!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallJudgeSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the judging spot</Text><ID>940159</ID></Title></Data> + 0 + false + + + 6417 + 2021Dreadfall02T14G + <Data><End><Type>Popup</Type><ID>940167</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Thanks! Though half the credit goes to Eret, for bein' so inspiring!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Congratulate the winner</Text><ID>940162</ID></Title></Data> + 0 + false + + false +
+ + 3028 + 2021Dreadfall02T13Snotlout + 16 +

3020

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3028 + 6418 + 0 + + + 1 + 3028 + 6419 + 0 + + + + 1 + 0 + 0 + + 6418 + 2021Dreadfall02T13S + <Data><Offer><Type>Popup</Type><ID>940160</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, meet me by the judging spot, and I shall make my decision on who wears their mask the very best, and embodies the true spirit of Dreadfall.@@Come, assistant contest administrator!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall02T12DCS.unity3d/PfGrp2021Dreadfall02T12DCS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940168</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I have CHOSEN.@@Nobody can be as Snotlout as Snotlout. I must give credit where credit is due.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallJudgeSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the judging spot</Text><ID>940159</ID></Title></Data> + 0 + false + + + 6419 + 2021Dreadfall02T14S + <Data><End><Type>Popup</Type><ID>940169</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Snotlout, Snotlout! Oi Oi Oi!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Congratulate the winner</Text><ID>940162</ID></Title></Data> + 0 + false + + false +
+ false +
+ + 6385 + 2021Dreadfall02T01 + <Data><Offer><Type>Popup</Type><ID>940171</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>What's next? So glad you asked! I need a helper to make my mask contest idea come true! It's hard to be an administrator, since you can't enter the contest, but you can handle it, right?@@So, my contestants need masks. I'm prepared, though: grab some masks from the box to hand out, and we'll get this going!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMaskBox</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMaskBox</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Get the masks from the Box</Text><ID>940170</ID></Title></Data> + 0 + false + + + 6386 + 2021Dreadfall02T02 + <Data><Offer><Type>Popup</Type><ID>940173</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>All right! Let's start passing out the masks! Find somebody to wear the Astrid mask.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940174</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>A contest? I'm always in. I call first dibs on that Astrid mask! I can handle that role, no problem!@@“I like my men like I like my axes: sharp and easy to throw at stuff.” Am I convincing?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Astrid" mask</Text><ID>940172</ID></Title></Data> + 0 + false + + + 6393 + 2021Dreadfall02T09 + <Data><Offer><Type>Popup</Type><ID>940175</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Nobody seems to want the Snotlout mask, huh? What about that Hobgobbler over there?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932908</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHobgobblerNPC</NPC><Text>...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHobgobblerNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find someone to wear the "Snotlout" mask</Text><ID>939931</ID></Title></Data> + 0 + false + + + 6394 + 2021Dreadfall02T10 + <Data><Offer><Type>Popup</Type><ID>940177</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Even the Hobgobbler doesn't want to be Snotlout? Ouch, BURN.@@Hey, {{Name}}, I'd like a mask too, even if I'm a judge. I’ll take that super grotesque one of Ruffnut off your hands.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940178</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So terrifying.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give Tuffnut a mask</Text><ID>940176</ID></Title></Data> + 0 + false + + + 6395 + 2021Dreadfall02T11 + <Data><Offer><Type>Popup</Type><ID>940179</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Did I hear my name? Whoa! You still have my mask? Everyone’s intimidated, I get it. Give it here, I’m the only one that can handle this glorious face.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940180</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Bask in my glory, {{Name}}.@@Are you basking?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout</Text><ID>905093</ID></Title></Data> + 0 + false + + + 6396 + 2021Dreadfall02T12 + <Data><Offer><Type>Popup</Type><ID>940182</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Did everyone get a mask?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Tuffnut everyone is ready</Text><ID>940181</ID></Title></Data> + 0 + false + + + 6442 + 2021Dreadfall02T14 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit New Berk</Text><ID>940183</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206565 + true + 35 + 35 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206565 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206565 + true + 50 + 50 + + 0 + +
+ + 150 +

6

+ 19055 + + 1 + 8554 + 206565 + true + 150 + 150 + + 0 + +
+ false +
+ + 3022 + DreadfallMaze 2021 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>DreadfallMaze 2021 T01</Text><ID>939994</ID></Title></Data> + false + 0 + + + 5 + 01-01-2021 12:00:00 AM,11-22-2021 12:00:00 AM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3022 + 6399 + 0 + + + + 1 + 206559 + 0 + + 6399 + DreadfallMaze2021T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeRewardChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the chest</Text><ID>941084</ID></Title></Data> + 0 + false + + + 250 +

6

+ 19055 + + 1 + 8435 + 206559 + true + 250 + 250 + + 0 + + + false +
+ + 3023 + DreadfallMaze 2021 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>DreadfallMaze 2021 T02</Text><ID>939995</ID></Title></Data> + false + 0 + + + 3 + 3022 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3023 + 6400 + 0 + + + + 1 + 206578 + 0 + + 6400 + DreadfallMaze2021T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeRewardChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the chest</Text><ID>941084</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206578 + true + 50 + 50 + + 0 + + + false +
+ + 3024 + 2021 Dreadfall03 + 61 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall03T00.unity3d/PfGrp2021Dreadfall03T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Best Maze Ever [2021]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20903 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3024 + 6401 + 0 + + + 1 + 3024 + 6402 + 0 + + + 1 + 3024 + 6403 + 0 + + + 1 + 3024 + 6404 + 0 + + + 1 + 3024 + 6405 + 0 + + + 1 + 3024 + 6406 + 0 + + + 1 + 3024 + 6407 + 0 + + + 1 + 3024 + 6408 + 0 + + + 1 + 3024 + 6409 + 0 + + + 1 + 3024 + 6410 + 0 + + + 1 + 3024 + 6411 + 0 + + + 1 + 3024 + 6412 + 0 + + + + 1 + 206564 + 0 + + 6401 + 2021Dreadfall03T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_DreadfallMazeMildew01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940185</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Each year, me and Tuffnut work on the maze to make a crazy deathtrap for everyone to enjoy. This year, we’re competing: each of us did one side. Obviously, my side of the maze is better. Tell Tuffnut that, won’t you?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940186</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Her side, better?! That’s her bad opinion. Other people have sane, good opinions.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Tell Tuffnut about Ruffnut's opinion</Text><ID>940184</ID></Title></Data> + 0 + false + + + 6402 + 2021Dreadfall03T02 + <Data><RandomSetup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_DreadfallMazeMildew01</Location><Recursive>false</Recursive><Persistent>false</Persistent></RandomSetup><Offer><Type>Popup</Type><ID>940188</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I bet if you ask Snotlout, he’ll be on my side on this!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940189</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You want my vote? Sure. Ruffnut's side is the best, no question. It’s full of action and burns. It’s not a good maze without the screaming.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Snotlout</Text><ID>940187</ID></Title></Data> + 0 + false + + + 6403 + 2021Dreadfall03T03 + <Data><RandomSetup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_DreadfallMazeMildew01</Location><Recursive>false</Recursive><Persistent>false</Persistent></RandomSetup><Offer><Type>Popup</Type><ID>940191</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>He’s not wrong, but screams of frustration are awesome too. Fishlegs might understand my art, can you get his vote?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940192</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>As much as it pains me to encourage either of them, I'd say I was impressed by Tuffnut's side of the maze. I enjoy puzzles more than life-threatening jumps over pits.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Fishlegs</Text><ID>940190</ID></Title></Data> + 0 + false + + + 6404 + 2021Dreadfall03T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_DreadfallMazeMildew01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940194</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>So it’s a tie? We need a truly unbiased opinion from someone that will be harshly honest. Say! Mildew’s been hanging around the maze; let’s get his grouchy vote. I see him over there.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall03T04CS.unity3d/PfGrp2021Dreadfall03T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_DreadfallEarthquake</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk with Mildew</Text><ID>940193</ID></Title></Data> + 0 + false + + + 6405 + 2021Dreadfall03T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMildew.unity3d/PfDWMildew</Asset><Location>PfMarker_DreadfallMazeMildew02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940195</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>What in Thor’s beard was that?! Was it angry spirits upset wit’ our Dreadfall festivities?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940196</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Earthquakes don't happen for no reason. What could have caused it?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940197</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Isn't it obvious? It's always dragons, here. Dragons being dangerous beasts, threatening our very way of life and scaring my sheep. Poor Fungus.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Gobber</Text><ID>927580</ID></Title></Data> + 0 + false + + + 6406 + 2021Dreadfall03T06 + <Data><Setup><Scene>MazeDreadfallDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall03T07.unity3d/PfGrp2021Dreadfall03T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940199</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Mildew, always blamin' the dragons. {{Name}}, pop into the maze and check for poltergeists. Be careful not to get yourself cursed!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940200</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I guess we’ll call the maze competition a tie until we find out if one of the sides killed somebody. That’s plus fifty points per corpse.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall03T06CS.unity3d/PfGrp2021Dreadfall03T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940201</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>What's that?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BrokenItem</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for clues in the maze</Text><ID>940198</ID></Title></Data> + 0 + false + + + 6407 + 2021Dreadfall03T07 + <Data><Setup><Scene>MazeDreadfallDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall03T07.unity3d/PfGrp2021Dreadfall03T07</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>940203</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Whose items are these?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectBrokenItem</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCollectBrokenItem</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Investigate the lost items in the maze</Text><ID>940202</ID></Title></Data> + 0 + false + + + 6408 + 2021Dreadfall03T08 + <Data><End><Type>Popup</Type><ID>940205</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>The earthquake has made the maze even more dangerous and terrifying! A win-win!@@I did have a helper, though. Maybe he was in the maze and got squished.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Ruffnut about the maze items</Text><ID>940204</ID></Title></Data> + 0 + false + + + 6409 + 2021Dreadfall03T09 + <Data><Setup><Scene>HubSchoolDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940207</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Snotlout was there when I was recruiting, maybe he remembers the volunteer's name. I can’t help it that I have so many fans that I can’t remember all of their names.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940208</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Let's see -- some loser with no dragon that would help Ruffnut for free... yeah, I know a guy. You're looking for Clueless. Sometimes he hangs out with Wartihog.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Snotlout about Ruffnut's helper</Text><ID>940206</ID></Title></Data> + 0 + false + + + 6410 + 2021Dreadfall03T10 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWKidA.unity3d/PfDWKidA</Asset><Location>PfMarker_KidA</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940210</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wartihog's usually at the school.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940211</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Ruffnut did ask me about helping her fix up the maze, but I said I was too busy. I don't know if Clueless helped her. Ever since I got a dragon to train, Clueless and I don’t talk much.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Wartihog about Clueless</Text><ID>940209</ID></Title></Data> + 0 + false + + + 6411 + 2021Dreadfall03T11 + <Data><Offer><Type>Popup</Type><ID>940212</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Someone else must have seen something. Maybe Mildew saw more if he saw a dragon threaten Fungus by the maze.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940213</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I saw a boy following Ruffnut around like a puppy by the maze, sure. I also saw a dangerous dragon, and I can add those two together: he's probably been eaten by the dragon that scared poor Fungus.@@Better run along and tell chief Hiccup about how his precious dragons are mauling children.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Mildew</Text><ID>924263</ID></Title></Data> + 0 + false + + + 6412 + 2021Dreadfall03T12 + <Data><Offer><Type>Popup</Type><ID>940214</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>It was only a matter of time until this recklessness cost viking lives!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940215</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Did Mildew say "mauling" children? Despite that it's Mildew that said it, as chief, I have to take this seriously. If Clueless is missing, he could be in very real trouble.@@We'll need to investigate quickly, to learn more about what’s really going on here. If you're ready, let's get started.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup</Text><ID>939187</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206564 + true + 35 + 35 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 206564 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206564 + true + 50 + 50 + + 0 + +
+ + 200 +

6

+ 19055 + + 1 + 8558 + 206564 + true + 200 + 200 + + 0 + +
+ false +
+ + 3025 + 2021 Dreadfall04 + 4 +

+ <Data><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall04T21.unity3d/PfGrp2021Dreadfall04T21</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall04T00.unity3d/PfGrp2021Dreadfall04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>MazeDreadfallDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall04T03.unity3d/PfGrp2021Dreadfall04T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall04T00B.unity3d/PfGrp2021Dreadfall04T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Unraveling Dreadfall [2021]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3024 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3025 + 6413 + 0 + + + 1 + 3025 + 6420 + 0 + + + 1 + 3025 + 6421 + 0 + + + 1 + 3025 + 6422 + 0 + + + 1 + 3025 + 6423 + 0 + + + 2 + 3025 + 3029 + 0 + + + 1 + 3025 + 6425 + 0 + + + 2 + 3025 + 3030 + 0 + + + 1 + 3025 + 6429 + 0 + + + 1 + 3025 + 6430 + 0 + + + 1 + 3025 + 6431 + 0 + + + 1 + 3025 + 6432 + 0 + + + 1 + 3025 + 6433 + 0 + + + 1 + 3025 + 6434 + 0 + + + 1 + 3025 + 6435 + 0 + + + 1 + 3025 + 6436 + 0 + + + 1 + 3025 + 6437 + 0 + + + 1 + 3025 + 6438 + 0 + + + 1 + 3025 + 6439 + 0 + + + 1 + 3025 + 6440 + 0 + + + 1 + 3025 + 6441 + 0 + + + + 1 + 206568 + 0 + + 3029 + 2021Dreadfall04A + 4 +

3025

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3029 + 6424 + 0 + + + + 1 + 206567 + 0 + + 6424 + 2021Dreadfall04T06 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Botanist_Hob</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940216</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Plegma will know, let’s get her eyes on this mystery.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940217</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>What’s that you have there? Let me see…@@Not only is this dragon nip, but it’s from the garden of one of our most talented botany students: Clueless!@@ Did you know Clueless found a way to grow dragon nip larger and with a far stronger odor? It’s attracted all manner of dragons from miles around: they’ve often tried to make his farm into a nest. Poor lad, with him being afraid of dragons and all.@@I do have a few samples ye can have. I hope this helps.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet the Botanist at the Lookout</Text><ID>927183</ID></Title></Data> + 0 + false + + + 3 +

6

+ 19098 + + 1 + 8519 + 206567 + true + 3 + 3 + + 0 + +
+ false + + + 3030 + 2021Dreadfall04B + 4 +

3025

+ <Data><Offer><Type>Popup</Type><ID>939935</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>There ya are! If we can repeat what Clueless did, we might get to see the dragon. Head down the tunnel and pop down that nip in a few places. Should be safe enough; spirits don’t eat dragon nip!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><RemoveItem><ItemID>19098</ItemID><Quantity>3</Quantity></RemoveItem><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3030 + 6426 + 0 + + + 1 + 3030 + 6427 + 0 + + + 1 + 3030 + 6428 + 0 + + + + 1 + 0 + 0 + + 6426 + 2021Dreadfall04T08 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Location</Key><Value>PfPlacePlant01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPlacePlant01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the Dragon Nip by the rocks</Text><ID>940218</ID></Title></Data> + 0 + false + + + 6427 + 2021Dreadfall04T09 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Location</Key><Value>PfPlacePlant02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPlacePlant02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the Dragon Nip by the rocks</Text><ID>940218</ID></Title></Data> + 0 + false + + + 6428 + 2021Dreadfall04T10 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Location</Key><Value>PfPlacePlant03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfPlacePlant03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the Dragon Nip by the rocks</Text><ID>940218</ID></Title></Data> + 0 + false + + false +
+ + 6413 + 2021Dreadfall04T01 + <Data><Offer><Type>Popup</Type><ID>940219</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The first place to start is to look at which dragons could cause the earthquake. I’ve asked Fishlegs to check the Book of Dragons to see if anything jumps out at him. Please give him a hand at the Great Hall.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940220</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I’m over here, {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Great Hall</Text><ID>923331</ID></Title></Data> + 0 + false + + + 6420 + 2021Dreadfall04T02 + <Data><End><Type>Popup</Type><ID>940222</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>So, a Boulder class dragon is the most likely culprit. There are a few in the Mystery class which also could do something like this, but if a duck quacks like a duck, it’s probably a duck, and we should look for ducks.@@Well, Boulder class ducks, in this case. You know what I mean.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs in the Great hall</Text><ID>940221</ID></Title></Data> + 0 + false + + + 6421 + 2021Dreadfall04T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_HauntedHouseExit</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940224</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We know of a few dragons that form deep tunnels, such as the Whispering Death. They are known to cause earthquakes as they burrow, but there would have to be a lot of them, and we heard this is a single big dragon. Snafflefang, while they also like caverns, don’t go very deep.@@I think the next step is to check out the collapsed area to see if there are tunnels. We need to know how deep they go, and how big the dragon would have to be. I’ll keep looking for more information. Check in with Gobber before you go into the maze, though, okay?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940225</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Time to get another look into the maze, is it? </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HauntedHouseExit</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet with Gobber outside the Maze</Text><ID>940223</ID></Title></Data> + 0 + false + + + 6422 + 2021Dreadfall04T04 + <Data><Offer><Type>Popup</Type><ID>940227</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>No spirits have made any sounds while you were gone, but I’ve got a bad feelin’ all the same. See ya inside, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RockCollapseExterior</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the rock collapse in the maze</Text><ID>940226</ID></Title></Data> + 0 + false + + + 6423 + 2021Dreadfall04T05 + <Data><Setup><Scene>MazeDreadfallDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall04T05.unity3d/PfGrp2021Dreadfall04T05</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940229</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Let’s see if there’s anything we missed from before… @@Hey, what are those trampled bits of plants? Smells a wee bit like dragon nip, but it’s the wrong color.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectPlantPiece</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the shiny pieces in the maze</Text><ID>940228</ID></Title></Data> + 0 + false + + + 6425 + 2021Dreadfall04T07 + <Data><Offer><Type>Popup</Type><ID>940231</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I knew the lad was struggling to get his own dragon. I didn’t know that he was a star farmer!@@What if he was mindin’ his own business, and a dragon smelled the nip on him? That could’ve meant trouble. Let’s head back in there and retrace his steps.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RockCollapseExterior</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the collapse in the maze</Text><ID>940230</ID></Title></Data> + 0 + false + + + 6429 + 2021Dreadfall04T11 + <Data><Offer><Type>Popup</Type><ID>940233</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Let’s step back and see if our dragon peeks out to check on that stench.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940234</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Watch out, somethin's coming!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HidingSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Move to a hiding spot</Text><ID>940232</ID></Title></Data> + 0 + false + + + 6430 + 2021Dreadfall04T12 + <Data><Setup><Scene>MazeDreadfallDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940238</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>What sort of dragon was that? Not a Whispering Death: the tail’s all wrong.@@Looks like that tunnel’s open now. Time to do some explorin’. I’ll be right behind ya, {{Name}}.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall04T11CS.unity3d/PfGrp2021Dreadfall04T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940239</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Help! I’m stuck under these rocks! Quick, before the dragon comes back!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GobberEnd</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Gobber and head down the tunnel</Text><ID>940235</ID></Title><Reminder><Text>Keep Gobber with you!</Text><ID>940236</ID></Reminder><Failure><Text>Stay with Gobber!</Text><ID>940237</ID></Failure></Data> + 0 + false + + + 6431 + 2021Dreadfall04T13 + <Data><Setup><Scene>MazeDreadfallDO</Scene><Asset>PfDWGobber</Asset><Location>PfMarker_GobberEnd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940241</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Hurry! Dig to free the poor lad!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Location</Key><Value>PfCluelessDigSpot</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfCluelessDigSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Dig to free Clueless in the maze</Text><ID>940240</ID></Title></Data> + 0 + false + + + 6432 + 2021Dreadfall04T14 + <Data><Setup><Scene>MazeDreadfallDO</Scene><Asset>PfDWGobber</Asset><Location>PfMarker_GobberEnd</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>MazeDreadfallDO</Scene><Asset>RS_DATA/PfGrp2021Dreadfall04T14.unity3d/PfGrp2021Dreadfall04T14</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940243</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>How did ye get to be trapped down here, Clueless?</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>940244</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I was helping Ruffnut set up her side of the maze. I saw this huge dragon in the ceiling in the main room, coming towards me. I ran…. @@I dropped my shield and my sword when the rocks fell, and I ended up stuck down here. Is Ruffnut okay?</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><ID>940245</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>She’s fine. Clueless, did ye also drop your dragon nip?</Text><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>Popup</Type><ID>940246</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>What? No, I don’t carry it around. It attracts dragons.</Text><ItemID>0</ItemID><Priority>4</Priority></Offer><Offer><Type>Popup</Type><ID>940247</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>We found crushed dragon nip bits all over up in the passage.</Text><ItemID>0</ItemID><Priority>5</Priority></Offer><Offer><Type>Popup</Type><ID>940248</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I don’t know about that. I don’t even have any right now, I gave my last in trade to Mildew for some new wool britches, but that was days ago.@@None of the other stuff here is mine, I just fell on it. The dragon’s been sleeping here and eating those gems like snacks. I was afraid I’d be next.</Text><ItemID>0</ItemID><Priority>6</Priority></Offer><Offer><Type>Popup</Type><ID>940249</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Boulder dragons like nip and shiny rocks: I think somebody’s tryin’ to sabotage the maze, and it’s somebody that ain’t afraid to hurt people to do it.@@Yer safe now, lad, with {{Name}} and me.</Text><ItemID>0</ItemID><Priority>7</Priority></Offer><Offer><Type>Popup</Type><ID>940250</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I was afraid I’d die down here! You saved my life, thank you.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940251</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Good idea to pick up the gems, {{Name}}. </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDreadfallGem</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the gem "snacks"</Text><ID>940242</ID></Title></Data> + 0 + false + + + 6433 + 2021Dreadfall04T15 + <Data><Offer><Type>Popup</Type><ID>940252</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>We better get all these clues to Hiccup.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940253</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All of it points to Mildew, doesn't it. He doesn’t have any good reason to want dragon nip.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup</Text><ID>939187</ID></Title></Data> + 0 + false + + + 6434 + 2021Dreadfall04T16 + <Data><Offer><Type>Popup</Type><ID>940255</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We need answers. Confront Mildew and see what he has to say for himself.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940256</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>You don’t need to accuse me; I didn’t do anything wrong. So what if I did take gems from a cave on Dark Deep? I found them, therefore they are rightfully mine.@@That monster showing up isn't my problem. If we vikings were exterminating the beasts like we should be, this wouldn’t have happened.@@Dragon nip? I did put dragon nip in the tunnel, only to get the dragon away from my gems. Nobody can control them: it attacked the maze all on its own! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Confront Mildew</Text><ID>940254</ID></Title></Data> + 0 + false + + + 6435 + 2021Dreadfall04T17 + <Data><Offer><Type>Popup</Type><ID>940258</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I’d never harm Clueless; he’s one of the few young vikings who can see that dragons aren’t everything. They're dangerous, I tell you. How many innocent lads like Clueless must nearly die until you see the truth?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940259</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It sounds like Mildew can’t accept the consequences of his greedy actions and is trying to twist the situation. Still, I believe he wouldn’t have intentionally hurt Clueless. Mildew is trying to protect the old ways as much as he is himself.@@When we were at war with the dragons, he had a clear place in the village. It’s less clear to him now. We must have empathy and see that change can be scary. I know what it’s like to not fit in.@@Dealing with Mildew is my responsibility, {{Name}}, so I’ll take him from here. Thanks for unraveling this mystery. Can you handle getting the wild dragon away from New Berk?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Regroup with Hiccup</Text><ID>940257</ID></Title></Data> + 0 + false + + + 6436 + 2021Dreadfall04T18 + <Data><Offer><Type>Popup</Type><ID>940261</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Before you do that, though, please check on Clueless to make sure he's okay.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940262</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I’m okay, but I think that dragon might be following us. We picked up some of the gems, could that be it? Can he smell the gems I’m carrying?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check with Clueless</Text><ID>940260</ID></Title></Data> + 0 + false + + + 6437 + 2021Dreadfall04T19 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Dreadfall04Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Dreadfall04Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_Dreadfall04Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Dreadfall04Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940264</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Yer gettin’ a knack for dragon behavior, Clueless! {{Name}}, what do you say we place a bit out here, see if we can get 'im to come out?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall04T19CS.unity3d/PfGrp2021Dreadfall04T19CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940265</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>He's a big un, isn't he!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>932908</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>...</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfRockClickableSpot</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfRockClickableSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the tasty rocks</Text><ID>940263</ID></Title></Data> + 0 + false + + + 6438 + 2021Dreadfall04T20 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_Dreadfall04Gobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Dreadfall04Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_Dreadfall04Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Dreadfall04Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940266</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>He looks like some cross between a Whispering Death and somethin’ even more spikey. Fishlegs might have a guess.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940267</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow, I have heard of a mix of a Whispering Death and a Snafflefang before, called a Humbanger, but this looks well beyond that. Maybe it’s even a titan version of a hybrid! Wouldn’t that be amazing?@@What do you think, Hiccup?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940268</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Yes, he's a titan Humbanger all right. Getting him home should be our big priority, right now.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Fishlegs</Text><ID>940190</ID></Title></Data> + 0 + false + + + 6439 + 2021Dreadfall04T21 + <Data><Offer><Type>Popup</Type><ID>940269</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oops, sorry, sorry, right: wild dragon. I bet if we carry the gems and dragon nip back towards his home, he’ll follow us.@@Mildew said a cave on Dark Deep? I know that place well. Let’s head to Dark Deep!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940270</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Spread out! Let's see if we can find the right cave! It should be pretty obvious, if Mildew found it.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Dark Deep</Text><ID>930056</ID></Title></Data> + 0 + false + + + 6440 + 2021Dreadfall04T22 + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Dreadfall04T22CS.unity3d/PfGrp2021Dreadfall04T22CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>940272</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That looks about right. Let’s see if he’s with us.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key><Value>PfDreadfallTreasures</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDreadfallTreasures</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Return the treasures in Dark Deep</Text><ID>940271</ID></Title></Data> + 0 + false + + + 6441 + 2021Dreadfall04T23 + <Data><Offer><Type>Popup</Type><ID>940274</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Awwww, look at the big guy! The cuddly boulder class dragons are just the best.@@Clueless, you first discovered this dragon: do you want to try to train him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940275</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I don’t want to let you guys down, but….</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940276</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Nobody’s feelin’ let down, lad!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940277</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I think this huge titan is too much for a beginner like me. Honestly, I never thought I’d be good enough to train any dragon. Besides, look how happy he is here.@@Still, I do think I might finally be ready for…. maybe a baby Gronckle, if you’re willing to help me out sometime, Fishlegs?</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>940278</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I would LOVE to! You can come play with Fishmeat and see how you feel!</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><ID>940279</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Just be sure that you do you, Clueless, at yer own pace. There’s a lot more to a viking than what dragons ‘e trains! Some of us are dentists, or masterful dragon nip growers! I hear that last one’s pretty rare, so we'll be looking forward to more of that great nip in the future!</Text><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><ID>940280</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>You got it, Gobber.</Text><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Clueless</Text><ID>940273</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206568 + true + 35 + 35 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206568 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206568 + true + 50 + 50 + + 0 + +
+ + 300 +

6

+ 19055 + + 1 + 8559 + 206568 + true + 300 + 300 + + 0 + +
+ false +
+ + 3031 + 2021Snoggletog01 + 61 +

+ <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>RS_DATA/PfGrp2021Snoggletog01T00A.unity3d/PfGrp2021Snoggletog01T00A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Golden Migration [2021]</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20904 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3031 + 6443 + 0 + + + 1 + 3031 + 6444 + 0 + + + 1 + 3031 + 6445 + 0 + + + 1 + 3031 + 6446 + 0 + + + 1 + 3031 + 6447 + 0 + + + 1 + 3031 + 6448 + 0 + + + 1 + 3031 + 6449 + 0 + + + 1 + 3031 + 6450 + 0 + + + 1 + 3031 + 6451 + 0 + + + 1 + 3031 + 6452 + 0 + + + 1 + 3031 + 6453 + 0 + + + 1 + 3031 + 6454 + 0 + + + 1 + 3031 + 6455 + 0 + + + 1 + 3031 + 6456 + 0 + + + 1 + 3031 + 6457 + 0 + + + + 1 + 206597 + 0 + + 6443 + 2021Snoggletog01T01 + <Data><Offer><Type>Popup</Type><ID>940667</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey {{Name}}. I was going over some of Hiccup’s maps, updating them to show recent movement of our enemies. We need to stay on top of it, after all of the troubles we had this summer. @@I noticed a strange note Hiccup wrote next to Armorwing Island. It says something about danger for Snoggletog. Can you check in with him about this?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940668</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid sent you to ask about a map notation by Armorwing Island?.... @@Oh! I’d forgotten about putting that on my map. Yeah, I can shed some light on that note. I was being cryptic in case my map fell into the wrong hands, and this is important.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Hiccup about his map markings</Text><ID>940666</ID></Title></Data> + 0 + false + + + 6444 + 2021Snoggletog01T02 + <Data><Offer><Type>Popup</Type><ID>940669</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Many years ago, my dad Stoick found golden shards of an egg on Armorwing island. I recently found a piece among his old hunting trophies.@@I did a test in the lab with Heather, and it turned out to be made of solid gold. We realized this could mean the legend of the Golden Dragon is true: a dragon whose eggshells are made of gold could really exist.@@Still, we hadn’t seen either the dragon or a nest – until last winter. I found more eggshells, at the same island. I think this dragon migrates during the year: the dragon is only here during certain windows of time to lay eggs. In this case, during Snoggletog!@@With the hunters being so aggressive lately, we should go check on those nest areas to be sure they are ready for when the Golden Dragons come back.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940670</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Over here! Hiccup! {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Armorwing Island</Text><ID>930380</ID></Title></Data> + 0 + false + + + 6445 + 2021Snoggletog01T03 + <Data><Offer><Type>Popup</Type><ID>940672</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let’s check the area where the egg shell pieces were. It’s over by those trees ahead of us.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940673</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There's a new nest, but...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GoldenNest</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the nest site on Armorwing Island</Text><ID>940671</ID></Title></Data> + 0 + false + + + 6446 + 2021Snoggletog01T04 + <Data><Offer><Type>Popup</Type><ID>940675</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let’s get a closer look.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940676</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This nest looks like somebody pulled it apart with an axe. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940677</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Dragon Hunters.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfSnoggletogGoldenNest</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSnoggletogGoldenNest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the ruined nest</Text><ID>940674</ID></Title></Data> + 0 + false + + + 6447 + 2021Snoggletog01T05 + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFootprints</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridFootprints</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940679</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Yeah, I think so. Are those dragon footprints? They look more recent than the damage.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940680</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Are those Golden Dragon footprints, Hiccup?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940681</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Yes. They look very fresh. I think the Golden Dragon was here but couldn’t use this destroyed nest. We should look for her.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfSnoggletogGoldenFootprint</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSnoggletogGoldenFootprint</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the dragon footprints</Text><ID>940678</ID></Title></Data> + 0 + false + + + 6448 + 2021Snoggletog01T06 + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFootprints</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridFootprints</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940683</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Head outside to Stormfly. Stormfly’s a tracker class dragon, and her sense of smell might be the quickest way to find the Golden Dragon.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940684</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We need a scent sample for Stormfly to follow.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWStormfly</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go over to Stormfly</Text><ID>940682</ID></Title></Data> + 0 + false + + + 6449 + 2021Snoggletog01T07 + <Data><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWDeadlyNadderNPC</Asset><Location>PfMarker_GoldenStormflyStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFootprints</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ArmorWingIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridFootprints</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940686</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Input}} on Stormfly and lead her to the footprints.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog01T07CS.unity3d/PfGrp2021Snoggletog01T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940687</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Stormfly’s got the scent!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GoldenStormflyEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDeadlyNadderNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead Stormfly to the nest and footprints</Text><ID>940685</ID></Title></Data> + 0 + false + + + 6450 + 2021Snoggletog01T08 + <Data><Offer><Type>Popup</Type><ID>940689</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Jump on Stormfly, she’ll help you find the trail, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWStormflyMountable</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWStormflyMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount Stormfly</Text><ID>940688</ID></Title></Data> + 0 + false + + + 6451 + 2021Snoggletog01T09 + <Data><Offer><Type>Popup</Type><ID>940691</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Great! Now, follow the golden scent trail with Stormfly.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GoldenTrail01</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GoldenTrail01</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the scent trail</Text><ID>940690</ID></Title></Data> + 0 + false + + + 6452 + 2021Snoggletog01T10 + <Data><Offer><Type>Popup</Type><ID>940692</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Keep it up.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GoldenTrail02</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GoldenTrail02</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the scent trail</Text><ID>940690</ID></Title></Data> + 0 + false + + + 6453 + 2021Snoggletog01T11 + <Data><Offer><Type>Popup</Type><ID>940693</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>See anything yet?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog01T11CS.unity3d/PfGrp2021Snoggletog01T11CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940694</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Yes, look! Hiding just ahead!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_GoldenTrail03</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_GoldenTrail03</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the scent trail</Text><ID>940690</ID></Title></Data> + 0 + false + + + 6454 + 2021Snoggletog01T12 + <Data><Offer><Type>Popup</Type><ID>940696</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It’s time to use your training skills, {{Name}}. See if you can soothe the Golden Dragon.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940697</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well done. We can’t leave her here exposed like this. Considering how friendly she is, I think we should bring her and her egg back to New Berk with us.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ArmorWingIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGoldenDragonHiding</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGoldenDragonHiding</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the dragon to soothe her</Text><ID>940695</ID></Title></Data> + 0 + false + + + 6455 + 2021Snoggletog01T13 + <Data><Offer><Type>Popup</Type><ID>940698</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Go ahead of us, {{Name}}, and make a suitable nest with Hiccup. I’ll put together a way to carry the egg safely on Stormfly.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940699</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There’s no time to waste, we should get to work on the nest.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to New Berk</Text><ID>936706</ID></Title></Data> + 0 + false + + + 6456 + 2021Snoggletog01T14 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2021Snoggletog01T14.unity3d/PfGrp2021Snoggletog01T14</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940701</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ll find a good location; can you collect some soft nest materials around New Berk?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940702</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That looks like plenty, bring it over to the spot I’ve found!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectSoftNest</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect soft nest materials</Text><ID>940700</ID></Title></Data> + 0 + false + + + 6457 + 2021Snoggletog01T15 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_NearNest01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog01T15CS.unity3d/PfGrp2021Snoggletog01T15CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940704</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Incredible: a whole group of Golden Dragons! You’re welcome here for as long as you need, to safely hatch your new family.@@I can tell this is going to be a Snoggletog to remember, {{Name}}!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_NewGoldenNest</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfNewGoldenNest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the nest materials</Text><ID>940703</ID></Title></Data> + 0 + false + + + 35 +

2

+ 0 + + 1 + 18 + 206597 + true + 35 + 35 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 206597 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 206597 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206597 + true + 50 + 50 + + 0 + +
+ + 75 +

6

+ 19105 + + 1 + 8625 + 206597 + true + 75 + 75 + + 0 + +
+ false +
+ + 3032 + 2021Snoggletog02 + 4 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_SnoggletogFishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Staging the Legend</Text><ID>939962</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3031 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3032 + 6458 + 0 + + + 1 + 3032 + 6459 + 0 + + + 1 + 3032 + 6460 + 0 + + + 1 + 3032 + 6461 + 0 + + + 1 + 3032 + 6462 + 0 + + + 1 + 3032 + 6463 + 0 + + + 1 + 3032 + 6464 + 0 + + + 1 + 3032 + 6465 + 0 + + + 1 + 3032 + 6466 + 0 + + + 1 + 3032 + 6467 + 0 + + + 1 + 3032 + 6468 + 0 + + + 1 + 3032 + 6469 + 0 + + + 1 + 3032 + 6470 + 0 + + + 2 + 3032 + 3033 + 0 + + + 1 + 3032 + 6475 + 0 + + + + 1 + 206598 + 0 + + 3033 + 2021Snoggletog02A + 4 +

3032

+ <Data><Offer><Type>Popup</Type><ID>939959</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That’s a relief, Gobber’s made a forest, huh? Set them up on the stage!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>939960</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Here's some trees. I'll bring the rest by ter the stage, plus some other props ye might want to use!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>939961</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That's looking good. Oh hey, Hiccup! We’re setting up the stage!@@All the real credit goes to {{Name}} and Gobber, though, for making these great props.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3033 + 6471 + 0 + + + 1 + 3033 + 6472 + 0 + + + 1 + 3033 + 6473 + 0 + + + 1 + 3033 + 6474 + 0 + + + + 1 + 0 + 0 + + 6471 + 2021Snoggletog02T14 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfStageSpot6471</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfStageSpot6471</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the props on the stage</Text><ID>940705</ID></Title></Data> + 0 + false + + + 6472 + 2021Snoggletog02T15 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfStageSpot6472</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfStageSpot6472</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the props on the stage</Text><ID>940705</ID></Title></Data> + 0 + false + + + 6473 + 2021Snoggletog02T16 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfStageSpot6473</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfStageSpot6473</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the props on the stage</Text><ID>940705</ID></Title></Data> + 0 + false + + + 6474 + 2021Snoggletog02T17 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfStageSpot6474</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfStageSpot6474</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place the props on the stage</Text><ID>940705</ID></Title></Data> + 0 + false + + false + + + 6458 + 2021Snoggletog02T01 + <Data><Offer><Type>Popup</Type><ID>940707</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>In years past, we have put together stage performances to celebrate the season of Snoggletog. This year, Fishlegs has kindly stepped up to select and direct the show! @@He was asking if you were interested in helping out. If so, meet him over by the new stage!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940708</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It's so empty, this stage. But that means there are so many possibilities! @@I’ve chosen the play: we will be doing the Legend of Baldr, a yule-time favorite. If you’re not familiar, don’t worry, it’s a fun story. @@In a nutshell, the story goes that Baldr was immune to damage, protected by the magic of the goddess Frigg. He was showing off; his immunity was a game. @@Loki was jealous and wanted to teach a lesson. He figures out a loophole: the forgotten, little Mistletoe can harm him, and, spoiler – Baldr dies.@@In the end, though, Frigg’s tears grant Mistletoe healing powers, and it’s used to bring Baldr back, instead of to harm or divide the gods further. Yule is a time of rebirth and peace.@@So! We need actors to fill the roles, and we need to create a set for the masterpiece here on this stage! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnoggletogStage01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take a look at the empty stage with Fishlegs</Text><ID>940706</ID></Title></Data> + 0 + false + + + 6459 + 2021Snoggletog02T02 + <Data><Offer><Type>Popup</Type><ID>940710</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We need someone to play the title role of Baldr. I was thinking of Snotlout: he’ll be able to exude the level of, ummmm, "confidence" that the role requires. Can you see if he’s willing?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940711</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, the legend of Baldr! He’s the favorite golden god. I’d be happy to star in your show.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Snotlout to play a role</Text><ID>940709</ID></Title></Data> + 0 + false + + + 6460 + 2021Snoggletog02T03 + <Data><Offer><Type>Popup</Type><ID>940713</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Great! Next up is the role of the goddess Frigg. In the story, she ---</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940714</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Me, me! Ask me!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940715</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Hi {{Name}}. Frigg is awesome, I’m in.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Ruffnut to play a role</Text><ID>940712</ID></Title></Data> + 0 + false + + + 6461 + 2021Snoggletog02T04 + <Data><Offer><Type>Popup</Type><ID>940717</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow, thanks for the enthusiasm, Ruffnut!@@Next, we need our villain: we need Loki. Let’s ask Tuffnut.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940718</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Act in your play? I mean, it’s interfering in my busy schedule, but I think I can slot this in. Maybe.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Tuffnut to play a role</Text><ID>940716</ID></Title></Data> + 0 + false + + + 6462 + 2021Snoggletog02T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DreadfallDagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940720</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I guess that’ll have to do. I was expecting more excitement, I wonder what’s eating Tuffnut. @@Anyway, we need Loki’s unwitting assistant, someone that’s good with a bow, now. Please ask Dagur if he'd mind playing the role of Hod. We also need a blunt arrow or spear that won't harm Snotlout for him to use. After all, in the story, Hod has to hit Baldr!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940721</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>I'm a fan of the idea of hitting Snotlout with blunt arrows.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Dagur to play a role</Text><ID>940719</ID></Title></Data> + 0 + false + + + 6463 + 2021Snoggletog02T06 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrp2021Snoggletog02T06.unity3d/PfGrp2021Snoggletog02T06</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWDagur.unity3d/PfDWDagur</Asset><Location>PfMarker_DreadfallDagur</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940723</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>BUT! We have to find some mistletoe! It's not worth doing if it's not accurate! After you find mistletoe, take it to Gobber, he can make the arrow you want.@@Remember, Mistletoe grows up in trees, so don’t be looking at the ground. It's a parasite, eatin' the trees, so pick away!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectMistletoe</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find some Mistletoe for Dagur</Text><ID>940722</ID></Title></Data> + 0 + false + + + 6464 + 2021Snoggletog02T07 + <Data><Offer><Type>Popup</Type><ID>940725</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That seems like enough. It is time to bring the Mistletoe back to Gobber.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940726</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>A blunted weapon made of mistletoe... This must be for the Legend of Baldr! Ye need a weapon for the stage, eh, {{greeting}}? @@I got yer back, this'll be nice'n harmless.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring the Mistletoe to Gobber</Text><ID>940724</ID></Title></Data> + 0 + false + + + 6465 + 2021Snoggletog02T08 + <Data><Offer><Type>Popup</Type><ID>940728</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>That stage is mighty empty, what’s the plan for the decorations? If ye bring some more wood, we can make some other props to spice up yer empty stage. @@Some hunks of fresh wood from the wilderness'll do nicely.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect wood by chopping trees in the Wilderness</Text><ID>940727</ID></Title></Data> + 0 + false + + + 6466 + 2021Snoggletog02T09 + <Data><Offer><Type>Popup</Type><ID>940730</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>That’s thirty logs. That seems like a lot. Now to bring them back to Gobber.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940731</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>I'll set to work right away to carve some mighty fine set dressin’!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>ItemID</Key><Value>7967</Value></Pair><Pair><Key>ItemDescription</Key><Value>Wood Log</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the excessive pile of wood to Gobber</Text><ID>940729</ID></Title></Data> + 0 + false + + + 6467 + 2021Snoggletog02T10 + <Data><Offer><Type>Popup</Type><ID>940732</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Still, ye need to give me some time! Maybe check in with Fishlegs about what else ya got to do?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940733</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I'm actually not sure anyone will come to our play. Maybe that’s just the nerves talking. What can we do to help entice them?@@Ummmm. How about we coax them by providing snacks and drinks?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6468 + 2021Snoggletog02T11 + <Data><Offer><Type>Popup</Type><ID>940735</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Astrid’s the best when it comes to organizing yule feasts. Can you see if she’ll help us out?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940736</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I’m excited to see the play, but a refreshment table is a great addition to any show. Here's some Yaknog and cookies to put out. That should get you some interest!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Astrid about food and drinks</Text><ID>940734</ID></Title></Data> + 0 + false + + + 6469 + 2021Snoggletog02T12 + <Data><Offer><Type>Popup</Type><ID>940738</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>How kind of Astrid! Let’s put them out on the tables by the audience area.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940739</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Yaknog might not be a favorite, but the savory pies always are a hit. Those should help!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>SnackTable</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTableSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Put the snacks out</Text><ID>940737</ID></Title></Data> + 0 + false + + + 6470 + 2021Snoggletog02T13 + <Data><Offer><Type>Popup</Type><ID>940741</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thor’s beard, there’s still so much to do. I'm still trying to work on the script. Ummmm... Can you see how far Gobber is with our props?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940742</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Well, this was a bit o’ a rush job, but I’ve made some trees and bits, and the mistletoe arrow. Not just blunt: I padded the tip for extra safety.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check with Gobber</Text><ID>940740</ID></Title></Data> + 0 + false + + + 6475 + 2021Snoggletog02T18 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_SnoggletogHiccup2021</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940744</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Fishlegs, {{Name}}, would you like a bit of golden sparkle added to your set? This Golden Dragon has been very happy to add a golden glow to all sorts of things!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog02T18CS.unity3d/PfGrp2021Snoggletog02T18CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940745</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow! That’ll really enhance our play. Let me know when you’re ready to do the performance, {{Name}}!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940746</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Speak for yourself, it’s up my nose!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWSnoggletogGoldenDragon</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWSnoggletogGoldenDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Golden Dragon by the stage</Text><ID>940743</ID></Title></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206598 + true + 150 + 150 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 206598 + true + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 206598 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206598 + true + 50 + 50 + + 0 + +
+ + 75 +

6

+ 19105 + + 1 + 8626 + 206598 + true + 75 + 75 + + 0 + +
+ false +
+ + 3034 + 2021Snoggletog03 + 10 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_SnoggletogAstrid2021</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_SnoggletogBucket</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_SnoggletogMulch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_SnoggletogEret</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_SnoggletogGobber</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_SnoggletogValka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWCloudjumper.unity3d/PfDWCloudjumper</Asset><Location>PfMarker_SnoggletogCloudjumper</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWToothlessAlpha.unity3d/PfDWToothlessAlpha</Asset><Location>PfMarker_SnoggletogToothless2021</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_SnoggletogHiccup2021</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Legend of Baldr</Text><ID>939963</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3032 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3034 + 6476 + 0 + + + 1 + 3034 + 6477 + 0 + + + 1 + 3034 + 6478 + 0 + + + 1 + 3034 + 6479 + 0 + + + 1 + 3034 + 6480 + 0 + + + 1 + 3034 + 6481 + 0 + + + 1 + 3034 + 6482 + 0 + + + 1 + 3034 + 6483 + 0 + + + 1 + 3034 + 6484 + 0 + + + 1 + 3034 + 6485 + 0 + + + 1 + 3034 + 6486 + 0 + + + 1 + 3034 + 6487 + 0 + + + 1 + 3034 + 6488 + 0 + + + 1 + 3034 + 6489 + 0 + + + 1 + 3034 + 6490 + 0 + + + 1 + 3034 + 6491 + 0 + + + 1 + 3034 + 6492 + 0 + + + 1 + 3034 + 6493 + 0 + + + 1 + 3034 + 6494 + 0 + + + + 1 + 206599 + 0 + + 6476 + 2021Snoggletog03T01 + <Data><Offer><Type>Popup</Type><ID>940748</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>How exciting, let's get this going!@@When you're ready to start the performance, check in with our star, Snotlout. He should be backstage.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog03T01CS.unity3d/PfGrp2021Snoggletog03T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940749</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I'm always ready!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Head backstage to Snotlout</Text><ID>940747</ID></Title></Data> + 0 + false + + + 6477 + 2021Snoggletog03T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_Backstage</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfPrtLocationFocus_QuestObjective.unity3d/PfPrtLocationFocus_QuestObjective</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940751</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Are we all set? Oof, I have stage fright, and I can't see my feet in this Odin beard!@@{{Name}}? Can you help lead me to my spot on stage?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog03T02CS.unity3d/PfGrp2021Snoggletog03T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StageCenter</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair></Objective><Type>Escort</Type><Title><Text>Help Fishlegs onto the stage</Text><ID>940750</ID></Title></Data> + 0 + false + + + 6478 + 2021Snoggletog03T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfPrtLocationFocus_QuestObjective</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940753</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Let us begin! @@[c][3eebff]Once upon a time, there was Baldr, the most favorite of all of the gods. Everybody loved Baldr![/c][ffffff]@@I said, [c][3eebff]Everyone loved Baldr![/c][ffffff] ... quick, go shower him with some praise, {{Name}}.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940754</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]Exactly. But, Baldr was having scary dreams about how something was going to kill him. His dreams usually were prophecy, so this made him very afraid indeed.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Go and praise "Baldr"</Text><ID>940752</ID></Title></Data> + 0 + false + + + 6479 + 2021Snoggletog03T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940756</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]The goddess Frigg thought up a way to comfort Baldr. She had every plant, rock and animal living or growing on the land to swear never to harm the beloved Baldr.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940757</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>[c][3eebff]I am the goddess Frigg! You, trees and rocks there, swear not to harm Baldr![/c][ffffff]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWStageTrees</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWStageTrees</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Go behind the trees and "Instruct" them to agree</Text><ID>940755</ID></Title></Data> + 0 + false + + + 6480 + 2021Snoggletog03T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940759</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]Even the powerful dragons agreed, and swore not to harm him.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940760</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>[c][3eebff]You dragons better promise! Pinky promise![/c][ffffff]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940761</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]This meant that Baldr was invincible! It seemed nothing could harm him.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWStageDragons</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWStageDragons</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Instruct dragons to agree</Text><ID>940758</ID></Title></Data> + 0 + false + + + 6481 + 2021Snoggletog03T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940763</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]Everyone began to take advantage of this, though, knowing he wouldn't mind, and shot at him for target practice![/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940764</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, wait a minute...</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940765</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]But he didn't have to dodge, since nothing could harm him.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Instruct everyone to attack Baldr</Text><ID>940762</ID></Title></Data> + 0 + false + + + 6482 + 2021Snoggletog03T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940767</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I said, he didn't have to dodge!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940768</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, sorry. Habit.@@[c][3eebff]I'm invincible! Keep it coming! Baldr, Baldr, oi oi oi![/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Remind Snotlout that he's invincible</Text><ID>940766</ID></Title></Data> + 0 + false + + + 6483 + 2021Snoggletog03T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940770</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It's okay Snot--Baldr. @@[c][3eebff]Everything was going fine, except that Loki, the god of mischief, was jealous and angry that Baldr was invincible.[/c][ffffff]@@.... Loki??</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940771</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Where's Tuffnut? Oh, Thor's beard....! What a distaster! {{Name}}, sub in for him as Loki, okay?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Backstage</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Tell Tuffnut to come on stage</Text><ID>940769</ID></Title></Data> + 0 + false + + + 6484 + 2021Snoggletog03T09 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfPrtLocationFocus_QuestObjective.unity3d/PfPrtLocationFocus_QuestObjective</Asset><Location>PfMarker_LokiStageSpot</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940773</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>(Just come out to the mark and do what I narrate!)</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940774</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]As I was saying, Loki was jealous. Loki realized there was a loophole in Frigg's pact. The Mistletoe, which does not grow on the land, was forgotten. It was overlooked as unimportant and too weak to need to promise.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LokiStageSpot</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Be Loki on stage</Text><ID>940772</ID></Title></Data> + 0 + false + + + 6485 + 2021Snoggletog03T10 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940776</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]Loki found some mistletoe....[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940777</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]....and fashioned it into a weapon.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMistletoe</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMistletoe</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Mistletoe on stage</Text><ID>940775</ID></Title></Data> + 0 + false + + + 6486 + 2021Snoggletog03T11 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940779</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]Loki then gave the weapon to one of the gods that was having a great time using Baldr for target practice.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940780</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>That's true, I AM having a great time.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog03T11CS.unity3d/PfGrp2021Snoggletog03T11CS</Asset><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><ID>940781</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>[c][3eebff]I AM NOW ARMED WITH A ---[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940782</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>He did NOT realize he had a deadly weapon as he took aim!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>940783</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>[c][3eebff]Oh, right...I AIM WITH AN ARROW THAT IS CLEARLY NO DIFFERENT IN ANY WAY.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give Mistletoe weapon to Dagur</Text><ID>940778</ID></Title></Data> + 0 + false + + + 6487 + 2021Snoggletog03T12 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940785</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]The mistletoe arrow hit Baldr with a single killing blow, and he fell.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940786</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>[c][3eebff]Aggggh! Not a single killing blow![/c][ffffff]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940787</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]His spirit was taken to Hel, while all of the gods and mortals wept.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWDragonHel</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWDragonHel</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the dragon to send Baldr to Hel</Text><ID>940784</ID></Title></Data> + 0 + false + + + 6488 + 2021Snoggletog03T13 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940789</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ahem. [c][3eebff]They wept.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940790</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]But especially Frigg.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWStageDragons</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWStageDragons</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the dragon to remind them to be sad</Text><ID>940788</ID></Title></Data> + 0 + false + + + 6489 + 2021Snoggletog03T14 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940792</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Uh, small problem. Tuffnut’s not here to stomp on my foot to make me cry, Fishlegs.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940793</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, I remember seeing an onion in the props backstage! Find it!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWOnion</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWOnion</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Find the onion in the backstage props</Text><ID>940791</ID></Title></Data> + 0 + false + + + 6490 + 2021Snoggletog03T15 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940795</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Crush this onion, Ruffnut!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940796</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>AUGH IT BURNS.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940797</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You don't have to put it IN your eyes!... @@MOVING ON!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Give onion to Frigg (Ruffnut)</Text><ID>940794</ID></Title></Data> + 0 + false + + + 6491 + 2021Snoggletog03T16 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940799</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>As I was saying... [c][3eebff]Frigg cried...[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940800</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>[c][3eebff]BOOHOOHOO![/c][ffffff]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940801</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]... and her tears became the white berries of the Mistletoe, blessing it. Frigg forgave Mistletoe and bestowed it the ability to bring Baldr back.[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMistletoe</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMistletoe</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Show the Mistletoe to the audience</Text><ID>940798</ID></Title></Data> + 0 + false + + + 6492 + 2021Snoggletog03T17 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_StageCenter</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfPrtLocationFocus_QuestObjective.unity3d/PfPrtLocationFocus_QuestObjective</Asset><Location>PfMarker_StageEndSpot</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940803</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]With a wave of the Mistletoe, Baldr was revived from Hel![/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940804</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]Forevermore, the little Mistletoe was no longer forgotten, but a symbol of remembrance and forgiveness![/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StageEndSpot</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to your place for the finale!</Text><ID>940802</ID></Title></Data> + 0 + false + + + 6493 + 2021Snoggletog03T18 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_SnoggletogTuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940806</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>[c][3eebff]The End![/c][ffffff]@@Thank you everyone!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog03T17CS.unity3d/PfGrp2021Snoggletog03T17CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940807</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'd almost forgotten about this story. It has some good lessons: not to ignore the little guy, not to assume invincibility, but also to forgive. If we hold anger for mistakes, we can't heal.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup about the play</Text><ID>940805</ID></Title></Data> + 0 + false + + + 6494 + 2021Snoggletog03T19 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_SnoggletogTuffnut</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940809</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hey Hiccup, {{Name}}, can I talk to you for a sec?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940810</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I got get something off my chest. It was me that accidentally messed up the Golden Dragon nest. I thought it was a cool hideout, but didn't mean to scare the momma Golden Dragons away.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>940811</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That's all right, Tuffnut, accidents happen. Thanks for telling us. It's good to know that the nest is still a safe place for them after all, though they seem to be very happy here with us. It turned out all right in the end!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Tuffnut</Text><ID>940808</ID></Title></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 206599 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 206599 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206599 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206599 + true + 50 + 50 + + 0 + +
+ + 100 +

6

+ 19105 + + 1 + 8628 + 206599 + true + 100 + 100 + + 0 + +
+ false +
+ + 3035 + 2021Snoggletog04 + 4 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_SnoggletogTuffnutNest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Baby Golden Dragon</Text><ID>939964</ID></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3034 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3035 + 6495 + 0 + + + 1 + 3035 + 6496 + 0 + + + 1 + 3035 + 6497 + 0 + + + 1 + 3035 + 6503 + 0 + + + 1 + 3035 + 6504 + 0 + + + 1 + 3035 + 6498 + 0 + + + 1 + 3035 + 6499 + 0 + + + 1 + 3035 + 6500 + 0 + + + + 1 + 206602 + 0 + + 6495 + 2021Snoggletog04T01 + <Data><Offer><Type>Popup</Type><ID>940813</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>While we now know it wasn’t Dragon Hunters disrupting the Golden Dragon nest, they do visit Zippleback Island for trapping. This could still have been a close call, if hunters had spotted them. @@I’m glad we could create a safe place for them to nest this year. Would you check on them, {{Name}}?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940814</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Aw, look at the two newly hatched baby dragons! On my honor, this last egg will be safe until it hatches …. Wait. It’s hatched! There are just shells!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnogGDNestSpot</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the Golden Dragons</Text><ID>940812</ID></Title></Data> + 0 + false + + + 6496 + 2021Snoggletog04T02 + <Data><Offer><Type>Popup</Type><ID>940816</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>But where’s the third, newly hatched baby? I was all ready to name him or her.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940817</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Doesn’t look like the baby dragon is hiding anywhere. Not in any hiding spot I’d use, anyway. Where could it be?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfNewGoldenNest</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfNewGoldenNest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Search the nest area</Text><ID>940815</ID></Title></Data> + 0 + false + + + 6497 + 2021Snoggletog04T03 + <Data><Offer><Type>Popup</Type><ID>940819</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hiccup will know what to do… but we should look around more first before alarming him. The dragon could be right behind us!@@Is it right behind me?!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearNest01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the baby dragon</Text><ID>940818</ID></Title></Data> + 0 + false + + + 6498 + 2021Snoggletog04T04 + <Data><Offer><Type>Popup</Type><ID>940821</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, time to admit defeat and ask Hiccup. Maybe these Golden Dragons have cursed me, from messing up their house.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940822</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I don’t think you’re cursed, Tuffnut, just unlucky. We'll find the new Golden Dragon. @@Wait a minute, weren’t there golden sparkles during the stage play? That could attract a young Golden!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask Hiccup for help</Text><ID>940820</ID></Title></Data> + 0 + false + + + 6499 + 2021Snoggletog04T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishmeat.unity3d/PfDWFishmeat</Asset><Location>PfMarker_BackstageDragon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940824</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Check the backstage area for the baby Golden Dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940825</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Were you looking for the Golden Dragon baby? It's been hanging out here with Fishmeat!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StageBabyStart</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the baby dragon backstage</Text><ID>940823</ID></Title></Data> + 0 + false + + + 6500 + 2021Snoggletog04T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWGoldenBaby</Asset><Location>PfMarker_StageBabyStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishmeat.unity3d/PfDWFishmeat</Asset><Location>PfMarker_BackstageDragon</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940829</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I bet if you lead Fishmeat back to the nest, the little Golden Dragon will follow. I know Fishmeat would be happy to help.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940830</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>The whole Golden Dragon family is here safely! Celebrating the season together with these special dragons for Snoggletog... it's hard to picture a better holiday.@@Happy Snoggletog, {{Name}}!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2021Snoggletog04T06CS.unity3d/PfGrp2021Snoggletog04T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StageBabyEnd</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishmeat</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead Fishmeat (and the Golden Dragon) back to the nest</Text><ID>940826</ID></Title><Reminder><Text>Fishmeat is falling behind!</Text><ID>940827</ID></Reminder><Failure><Text>The baby dragons went back to the stage, don't let them fall behind.</Text><ID>940828</ID></Failure></Data> + 0 + false + + + 6503 + 2021Snoggletog04T03B + <Data><Offer><Type>Popup</Type><ID>940832</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Thank Thor, he didn't fall off the cliff! @@Baby dragons often like the town fountain to play in. So do I, truth be told. So, check that out next, okay {{Name}}?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Unique</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the baby Golden Dragon by the Fountain</Text><ID>940831</ID></Title></Data> + 0 + false + + + 6504 + 2021Snoggletog04T03C + <Data><Offer><Type>Popup</Type><ID>940834</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>This isn't working. We need to anticipate his moves. Hmmm. Let me put my mind in the state of a baby dragon. What would I want most.....@@Snacks! It's definitely snacks.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_NearNest03</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the baby Golden Dragon by the snack tables</Text><ID>940833</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206602 + true + 50 + 50 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 206602 + true + 150 + 150 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206602 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206602 + true + 50 + 50 + + 0 + +
+ + 150 +

6

+ 19105 + + 1 + 8627 + 206602 + true + 150 + 150 + + 0 + +
+ false +
+ + 3036 + SnoggletogMaze 2021 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Snoggletog Maze First run Completion</Text><ID>940013</ID></Title></Data> + false + 0 + + + 5 + 01-01-2021 12:00:00 AM,01-18-2022 08:00:00 AM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3036 + 6501 + 0 + + + + 1 + 206600 + 0 + + 6501 + SnoggletogMaze01T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSnoggletogChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the chest</Text><ID>941084</ID></Title></Data> + 0 + false + + + 250 +

6

+ 19105 + + 1 + 8601 + 206600 + true + 250 + 250 + + 0 + + + false +
+ + 3038 + BewilderbeastStable Intro + 2 +

+ <Data><Setup><Scene>DragonStableBewilderbeastINTDO</Scene><Asset>RS_DATA/PfGrpBewilderStableIntro01T00.unity3d/PfGrpBewilderStableIntro01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Bewilderbeast Stable</Text><ID>939967</ID></Title></Data> + false + 0 + + + 7 + 19191 + 1 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3038 + 6505 + 0 + + + 1 + 3038 + 6506 + 0 + + + 1 + 3038 + 6507 + 0 + + + 1 + 3038 + 6508 + 0 + + + 1 + 3038 + 6509 + 0 + + + 1 + 3038 + 6510 + 0 + + + 1 + 3038 + 6511 + 0 + + + 1 + 3038 + 6512 + 0 + + + + 1 + 206609 + 0 + + 6505 + BewilderStableIntro01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>You’ve acquired a [c][3eebff]Bewilderbeast Stable[/c][ffffff]! Valka has something to show you, head on over to the stable now.@@[i][c][ffb33e]You can do this by entering the Dragon Stables, selecting the Stables button, and selecting 'Visit' on the Bewilderbeast Stable![/c][ffffff][/i]</Text><ID>940899</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpBewilderStableIntro01T01CS_FAO.unity3d/PfGrpBewilderStableIntro01T01CS_FAO</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Bewilderbeast Stable</Text><ID>940898</ID></Title><Desc><Text>Go to the Bewilderbeast Stable</Text><ID>942170</ID></Desc></Data> + 0 + false + + + 6506 + BewilderStableIntro01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Welcome, {{Name}}! In this Dragon Stable, not only can you house dragons, but this mighty Bewilderbeast can also provide you access to unique abilities. Come closer, and I will show you how to use them.</Text><ID>940901</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWValka</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Talk to Valka in the Bewilderbeast Stable</Text><ID>940900</ID></Title><Desc><Text>Talk to Valka in the Bewilderbeast Stable</Text><ID>942171</ID></Desc></Data> + 0 + false + + + 6507 + BewilderStableIntro01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The first ability here is [i][c][3eebff]Fish Spray[/c][ffffff][/i].</Text><ID>940903</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishSpray</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Activation Spot for Fish Spray</Text><ID>940902</ID></Title><Desc><Text>Go to Activation Spot for Fish Spray</Text><ID>942172</ID></Desc></Data> + 0 + false + + + 6508 + BewilderStableIntro01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>When triggered, the Bewilderbeast will bestow upon you a rather [i]fishy[/i] gift! Go ahead and activate it now with a {{input}} on the Ability Button.</Text><ID>940905</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Now it is important to note, the Bewilderbeast will typically need time to recover after an ability has been used!</Text><ID>940906</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Location</Key><Value>AbilityObject</Value></Pair><Pair><Key>Name</Key><Value>FishSpray</Value></Pair><Pair><Key>ItemName</Key><Value>PfStableAbilityManager</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Activate Fish Spray Ability</Text><ID>940904</ID></Title><Desc><Text>Activate Fish Spray Ability</Text><ID>942173</ID></Desc></Data> + 0 + false + + + 6509 + BewilderStableIntro01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Let’s move on to our next ability, [i][c][3eebff]King of Dragons[/c][ffffff][/i].</Text><ID>940908</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KingOfDragons</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Activation Spot for King of Dragons Ability</Text><ID>940907</ID></Title><Desc><Text>Go to Activation Spot for King of Dragons Ability</Text><ID>942174</ID></Desc></Data> + 0 + false + + + 6510 + BewilderStableIntro01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>This ability will call upon the Bewilderbeast to reveal a unique chest, found only within the Sanctuary, containing many amazing things! @@Go ahead and activate it now with a {{input}} on the Ability Button.</Text><ID>940910</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Beautiful! And as I said previously, that chest contains a wide variety of amazing and rare items!</Text><ID>940911</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Location</Key><Value>AbilityObject</Value></Pair><Pair><Key>Name</Key><Value>KingOfDragons</Value></Pair><Pair><Key>ItemName</Key><Value>PfStableAbilityManager</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Activate King of Dragons Ability</Text><ID>940909</ID></Title><Desc><Text>Activate King of Dragons Ability</Text><ID>942175</ID></Desc></Data> + 0 + false + + + 6511 + BewilderStableIntro01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The last ability here is [i][c][3eebff]Alpha Rally[/c][ffffff][/i], but I won’t blame you if you want to open that chest first! Head over whenever you’re ready.</Text><ID>940913</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AlphaRally</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Activation Spot for Alpha Rally Ability</Text><ID>940912</ID></Title><Desc><Text>Go to Activation Spot for Alpha Rally Ability</Text><ID>942176</ID></Desc></Data> + 0 + false + + + 6512 + BewilderStableIntro01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>[i][c][3eebff]Alpha Rally[/c][ffffff][/i] will grant a limited time boost to experience gained for any and all of your Dragons! @@Go ahead and activate it now with a {{input}} on the Ability Button.</Text><ID>940915</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Earlier I told you that each ability has a recovery period for the Bewilderbeast, but another thing here is that these cooldown times vary between abilities!</Text><ID>940916</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>And there you have it! I do want to make one final note that these abilities are shared across [b]all[/b] versions of the Bewilderbeast Stable. @@Owning two stable for instance does not give you double the amount of activation's. @@Otherwise, I hope you are able to make full use of these new abilities, I can tell that our Bewilderbeast here is very excited to have you here! </Text><ID>942178</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DragonStableBewilderbeastINTDO</Value></Pair><Pair><Key>Location</Key><Value>AbilityObject</Value></Pair><Pair><Key>Name</Key><Value>AlphaRally</Value></Pair><Pair><Key>ItemName</Key><Value>PfStableAbilityManager</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Activate Alpha Rally Ability</Text><ID>940914</ID></Title><Desc><Text>Activate Alpha Rally Ability</Text><ID>942177</ID></Desc></Data> + 0 + false + + + 50 +

1

+ 0 + + 1 + 36 + 206609 + true + 50 + 50 + + 0 + + + + 250 +

8

+ 0 + + 1 + 651 + 206609 + true + 250 + 250 + + 0 + +
+ false +
+ + 3039 + Branch04 Part 1 + 61 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpBranch04T00A.unity3d/PfGrpBranch04T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Flight Quest</Text><ID>939969</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDWDragonsFlightSchoolExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 7 + 19197 + 1 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3039 + 6513 + 0 + + + 1 + 3039 + 6514 + 0 + + + 1 + 3039 + 6515 + 0 + + + 1 + 3039 + 6516 + 0 + + + 2 + 3039 + 3040 + 0 + + + 1 + 3039 + 6522 + 0 + + + 1 + 3039 + 6523 + 0 + + + 1 + 3039 + 6524 + 0 + + + 1 + 3039 + 6525 + 0 + + + 1 + 3039 + 6526 + 0 + + + 1 + 3039 + 6527 + 0 + + + 1 + 3039 + 6528 + 0 + + + + 1 + 206614 + 0 + + 3040 + Branch04A + 61 +

3039

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Anyways, if we split the work and each do five flags, we can get this over with faster. Smart right?</Text><ID>939968</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3040 + 6517 + 0 + + + 1 + 3040 + 6518 + 0 + + + 1 + 3040 + 6519 + 0 + + + 1 + 3040 + 6520 + 0 + + + 1 + 3040 + 6521 + 0 + + + + 1 + 0 + 0 + + 6517 + Branch04A5 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBranch4Flag01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBranch4Flag01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place racing flags for the lesson</Text><ID>940917</ID></Title></Data> + 0 + false + + + 6518 + Branch04A6 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBranch4Flag02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBranch4Flag02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place racing flags for the lesson</Text><ID>940917</ID></Title></Data> + 0 + false + + + 6519 + Branch04A7 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBranch4Flag03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBranch4Flag03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place racing flags for the lesson</Text><ID>940917</ID></Title></Data> + 0 + false + + + 6520 + Branch04A8 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBranch4Flag04</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBranch4Flag04</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place racing flags for the lesson</Text><ID>940917</ID></Title></Data> + 0 + false + + + 6521 + Branch04A9 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWBranch4Flag05</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWBranch4Flag05</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Place racing flags for the lesson</Text><ID>940917</ID></Title></Data> + 0 + false + + false + + + 6513 + Branch04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfExpansionBoard</NPC><Text>Earn your Dragon Wings on this special adventure; [c][3eebff]Flight Quest![/c][ffffff]@@Access your Map and travel to Hobblegrunt Island, there you’ll find Fishlegs and the others!</Text><ID>940920</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Open your map to travel to Hobblegrunt Island</Text><ID>940919</ID></Title></Data> + 0 + false + + + 6514 + Branch04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, come meet us at the beach! Flight class is about to begin!</Text><ID>940922</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Welcome to the official Fishlegs flight class! Is everyone ready to catch some wind currents?</Text><ID>940923</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidC</NPC><Text>Ready!</Text><ID>940924</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Ready!</Text><ID>940924</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Well, I’m not ready. My dragon, Sprite, can’t carry me.</Text><ID>940925</ID><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_FlightClass</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Flight Class on Hobblegrunt Island</Text><ID>940921</ID></Title></Data> + 0 + false + + + 6515 + Branch04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Everyone needs an adult Broad Wing dragon…</Text><ID>940927</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>She is an adult! Terrible Terror Broad Wings are just tiny.</Text><ID>940928</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, I probably should have seen that coming...@@Er! That’s all right, you can still help me set up the obstacle course flags for the lesson! Grab the flags out of the bin.@@{{Name}}, would you mind giving Rayne a hand with those?</Text><ID>940929</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfFlagBox</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfFlagBox</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the flag box to get some flags</Text><ID>940926</ID></Title></Data> + 0 + false + + + 6516 + Branch04T04 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneFollow</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteFollow</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Now, please head down to the end to set up the ten flags! Thanks {{Name}} and Rayne!</Text><ID>940931</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>This is stupid. I came here to fly, not set up flags! Ugh, but my dragon Sprite is too small and refuses to become a titan no matter what I do.@@I even gathered some Titan Runes to help her reach Titan Stage, but I guess she’s just not strong enough yet.</Text><ID>940932</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_FlagChore</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidD</Value></Pair><Pair><Key>Spline</Key><Value>ChoreArea6516</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Rayne to the flag area</Text><ID>940930</ID></Title><Reminder><Text>Follow Rayne to the chore area!</Text><ID>941667</ID></Reminder><Failure><Text>What are you doing viking? I told you to keep Rayne company!</Text><ID>941668</ID></Failure></Data> + 0 + false + + + 6522 + Branch04T10 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>You’re so lucky to have a dragon that can carry you... Well, thanks for keeping me company setting up these dumb flags. Let’s head back to the others.</Text><ID>940934</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>All set? Great going! Speedifist and Clueless, start running relays with those markers!</Text><ID>940935</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report back to Fishlegs</Text><ID>940933</ID></Title></Data> + 0 + false + + + 6523 + Branch04T11 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrpBranch04T11.unity3d/PfGrpBranch04T11</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_RayneChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, there's some rings to challenge you. Please show them how it’s done: hit those flight rings above the flag area!</Text><ID>940937</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Wow you made that look easy!@@Can you check on Rayne, though? I asked her to go rake up the sheep “fertilizer” on the flight course, but she’s been up there for some time now…</Text><ID>940938</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRing</Value></Pair><Pair><Key>Quantity</Key><Value>9</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Show off by flying through the rings</Text><ID>940936</ID></Title></Data> + 0 + false + + + 6524 + Branch04T12 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_Trees</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There’s no sign of Rayne; it’s just her dragon, Sprite.</Text><ID>940940</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_FlagChore</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Rayne</Text><ID>940939</ID></Title></Data> + 0 + false + + + 6525 + Branch04T13 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_Trees</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Maybe she’s hidden in the trees? Her pink outfit doesn’t exactly make for good camouflage, she should be easy to spot…</Text><ID>940942</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_Trees</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search trees for Rayne</Text><ID>940941</ID></Title></Data> + 0 + false + + + 6526 + Branch04T14 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_Trees</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteChoreArea</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no! Is Rayne in trouble?! Help defend her, we’re on the way!</Text><ID>940944</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>No, wait, I’ve got this!</Text><ID>940945</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpBranch04T14CS.unity3d/PfGrpBranch04T14CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>DeathGripperTarget</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>DeathGripperTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Distract the dragon by shooting near it</Text><ID>940943</ID></Title></Data> + 0 + false + + + 6527 + Branch04T15 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_Branch4_Trees</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Drat! I was just about to tame that dragon.</Text><ID>940947</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidC</NPC><Text>It was just about to eat you. That’s a wild Deathgripper!</Text><ID>940948</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>I almost had it! I would have been flying in no time.@@Get out of the way, Sprite!</Text><ID>940949</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Poor Sprite; it’s okay little one, I’m sure she didn’t mean it.</Text><ID>940950</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSprite</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on Rayne's dragon Sprite</Text><ID>940946</ID></Title></Data> + 0 + false + + + 6528 + Branch04T16 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSpriteNPC</Asset><Location>PfMarker_Branch4_SpriteStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Can you please {{input}} on Sprite and lead her back over?</Text><ID>940954</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Looks like Sprite is feeling down, I don’t blame her. But where did Rayne go?</Text><ID>940955</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_SpriteEnd</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpriteNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Sprite and lead her to Fishlegs</Text><ID>940951</ID></Title><Reminder><Text>Don't leave Sprite behind!</Text><ID>940952</ID></Reminder><Failure><Text>You left Sprite behind!</Text><ID>940953</ID></Failure></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206614 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 206614 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 206614 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 206614 + true + 350 + 350 + + 0 + +
+ false +
+ + 3041 + Branch04 Part 2 + 10 +

+ <Data><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpBranch04T00B.unity3d/PfGrpBranch04T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpBranch04T00C.unity3d/PfGrpBranch04T00C</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Missing Trainer</Text><ID>939972</ID></Title><Icon>RS_DATA/QuestIconsDO.unity3d/IcoDWDragonsFlightSchoolExpansion</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3039 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3041 + 6529 + 0 + + + 1 + 3041 + 6530 + 0 + + + 1 + 3041 + 6531 + 0 + + + 2 + 3041 + 3042 + 0 + + + 1 + 3041 + 6533 + 0 + + + 1 + 3041 + 6534 + 0 + + + 1 + 3041 + 6535 + 0 + + + 1 + 3041 + 6536 + 0 + + + 1 + 3041 + 6537 + 0 + + + 1 + 3041 + 6538 + 0 + + + + 1 + 206613 + 0 + + 3042 + Branch04B + 10 +

3041

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Rayne’s in trouble! Scare the dragons away!</Text><ID>939970</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Ieeeeeeee!</Text><ID>939971</ID><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 5 + + 1 + 3042 + 6532 + 0 + + + + 1 + 0 + 0 + + 6532 + Branch04T20 + <Data><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfBranch4Target</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfBranch4Target</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the dragons to scare them off</Text><ID>940956</ID></Title></Data> + 0 + false + + false + + + 6529 + Branch04T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I was thinking about where Rayne could have gone when I remembered she was just asking me the other day about all the massive dragons that can be found in the Hidden World.@@I have a bad feeling about this! Would you do me a favor and see if she ventured into the Hidden World?@@There’s an entrance by New Berk, and you can open your map to go there directly!</Text><ID>940958</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Hidden World by New Berk</Text><ID>940957</ID></Title></Data> + 0 + false + + + 6530 + Branch04T18 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>She can’t have gone far... now where is she?</Text><ID>940960</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_Rayne01</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Rayne in the Hidden World</Text><ID>940959</ID></Title></Data> + 0 + false + + + 6531 + Branch04T19 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Come on big fella! I just want to ride you!</Text><ID>940962</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>941669</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>There she is!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Wait a minute...</Text><ID>940963</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpBranch04T19CS.unity3d/PfGrpBranch04T19CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Branch4_Rayne02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Rayne in the Hidden World</Text><ID>940959</ID></Title></Data> + 0 + false + + + 6533 + Branch04T21 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpBranch04T20CS.unity3d/PfGrpBranch04T20CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Sprite!</Text><ID>940965</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Don’t worry, we’ll do all we can for your loyal, brave little dragon!</Text><ID>940966</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Stay with her Rayne, so she knows she isn’t alone.</Text><ID>940967</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Valka in the Hidden World</Text><ID>940964</ID></Title></Data> + 0 + false + + + 6534 + Branch04T22 + <Data><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfGrpBranch04T22.unity3d/PfGrpBranch04T22</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}}, we must act quickly. The blast that little dragon endured is a lot like suffering from frostbite.@@Fortunately, I know of a mushroom in this part of the Hidden World that, when crushed, produces a slight heat.@@We’ll make a gentle warming paste from them to treat the effects of that icy blast. You can identify them by the faint red glow they give off.</Text><ID>940969</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRedMushroom</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather glowing red mushrooms in the Hidden World</Text><ID>940968</ID></Title></Data> + 0 + false + + + 6535 + Branch04T23 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Did you find those mushrooms Valka mentioned? Head back over here!</Text><ID>940970</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Valka and Rayne took Sprite back to New Berk. They asked me to send you there as soon as you found the mushrooms.</Text><ID>940971</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title></Data> + 0 + false + + + 6536 + Branch04T24 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Branch4Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Branch4Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Branch4Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Branch4Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940972</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Let's hurry to New Berk!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to New Berk</Text><ID>936706</ID></Title></Data> + 0 + false + + + 6537 + Branch04T25 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Branch4Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Branch4Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Branch4Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Branch4Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>We are up near Hiccup’s house, {{Name}}! Please bring the mushrooms with you!</Text><ID>940974</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Here you are, Rayne. Apply this paste to the frost injury.</Text><ID>940975</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>ItemID</Key><Value>15881</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom for Antidote</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>True</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the mushrooms to Valka</Text><ID>940973</ID></Title></Data> + 0 + false + + + 6538 + Branch04T26 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Branch4Hiccup</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Branch4Toothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Branch4Fishlegs</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWValka</Asset><Location>PfMarker_Branch4Valka</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>I’m sorry, Sprite. This is all my fault. Please be okay.</Text><ID>940977</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpBranch04T25CS.unity3d/PfGrpBranch04T25CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Sprite?! Is that really you?</Text><ID>940978</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It looks like you’ve come to trust your dragon as much as she trusts you.@@The strength of your bond helped her finally reach Titan stage. Well done, Rayne!</Text><ID>940979</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>Thank you, {{Name}}, for sticking by me. You’re a loyal friend… just like Sprite.@@Oh Sprite, I can’t wait to go flying with you once you’re all healed up. But take your time!</Text><ID>940980</ID><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidD</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Rayne</Text><ID>940976</ID></Title></Data> + 0 + false + + + 60 +

2

+ 0 + + 1 + 28 + 206613 + true + 60 + 60 + + 0 + +
+ + 200 +

1

+ 0 + + 1 + 218 + 206613 + true + 200 + 200 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 206613 + true + 200 + 200 + + 0 + +
+ + 350 +

8

+ 0 + + 1 + 1432 + 206613 + true + 350 + 350 + + 0 + +
+ false +
+ + 3043 + 2022Friendship01 + 10 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2022Friendship01A.unity3d/PfGrp2022Friendship01A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrp2022Friendship01B.unity3d/PfGrp2022Friendship01B</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrp2022Friendship01C.unity3d/PfGrp2022Friendship01C</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Tradition of Love</Text><ID>939966</ID></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-01-2023 19:00:00,02-21-2023 19:00:00 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3043 + 6539 + 0 + + + 1 + 3043 + 6540 + 0 + + + 1 + 3043 + 6541 + 0 + + + 1 + 3043 + 6542 + 0 + + + 1 + 3043 + 6543 + 0 + + + 1 + 3043 + 6544 + 0 + + + 1 + 3043 + 6545 + 0 + + + 1 + 3043 + 6546 + 0 + + + 1 + 3043 + 6547 + 0 + + + 1 + 3043 + 6548 + 0 + + + 1 + 3043 + 6549 + 0 + + + 1 + 3043 + 6550 + 0 + + + 1 + 3043 + 6551 + 0 + + + 1 + 3043 + 6552 + 0 + + + 1 + 3043 + 6553 + 0 + + + 1 + 3043 + 6554 + 0 + + + + 1 + 206621 + 0 + + 6539 + 2022Friendship01T01 + <Data><Offer><Type>Popup</Type><ID>940851</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Last year, we spread the love in the form of letters. If we keep it up again this year, maybe it’ll become a tradition. After all, we've built something amazing together, {{Name}}. @@It's the people, and the dragons, and our relationships. It's so important, don't you think? Can you check with Astrid to see if she agrees about our special letters?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940852</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Fishlegs is such a kind fellow. I love his idea to continue the friendship letters.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Astrid</Text><ID>940850</ID></Title></Data> + 0 + false + + + 6540 + 2022Friendship01T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfPrtLocationFocus_QuestObjective.unity3d/PfPrtLocationFocus_QuestObjective</Asset><Location>PfMarker_LettersMissing</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>940854</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup and I used to do this a lot even before last year - we'd write letters to each other to put to words the feelings we're too embarrassed to say out loud. Well - me, really. Hiccup's usually good about that.@@The thing is, someone’s wandered off with all of our writing supplies... @@So - please, choose a letter here - and you'll help us spread the message of friendship and joy and togetherness among the people who matter most to us in the world.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940855</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Wait, where are the letters?! Did someone steal them?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_LettersMissing</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Choose a letter to send</Text><ID>940853</ID></Title></Data> + 0 + false + + + 6541 + 2022Friendship01T03 + <Data><Offer><Type>Popup</Type><ID>940857</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>This is a bit of an unexpected twist; we’ll need to do some sleuthing. The Headmaster is often near the school mailbox, can you see if he’s seen anything?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940858</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Missing letters, you say? I haven’t seen anyone stealing mail, but I am missing a letter I was expecting. Only Terrible terrors have been to the mailbox, though.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with the Headmaster</Text><ID>940856</ID></Title></Data> + 0 + false + + + 6542 + 2022Friendship01T04 + <Data><Offer><Type>Popup</Type><ID>940860</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Perhaps Hiccup has an idea about what could be awry with the Terrible Terrors. They’ve been so reliable, perhaps we have gotten too comfortable.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940861</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Terrible terrors behaving strangely. Hmmmm…@@Oh, no. Our local pirate Harald Forkbeard has a terrible terror. He could have infiltrated our mail system without anyone noticing! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup about Terror Mail</Text><ID>940859</ID></Title></Data> + 0 + false + + + 6543 + 2022Friendship01T05 + <Data><Offer><Type>Popup</Type><ID>940863</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I have an idea. Let’s write a letter and see what happens. But for that, we still need paper and an envelope! @@Tuffnut might still have some materials squirreled away, he wanted to write a letter to Chicken.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940864</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You need some letter supplies? I am writing a series of sonnets to Chicken, though, so I need them. She loves my couplets. @@Imagine her disappointment if she didn’t get them!@@But to be honest, I’ve only written two. Writer’s block is a real thing.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Ask for letter supplies from Tuffnut</Text><ID>940862</ID></Title></Data> + 0 + false + + + 6544 + 2022Friendship01T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2022Friendship01T06.unity3d/PfGrp2022Friendship01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>940866</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>How about this… I’ll let you have my other mostly blank letters if you deliver my sonnets by hand to Chicken. Deal?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>932908</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWChickenTuffnut</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWChickenTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Deliver Sonnets to Chicken</Text><ID>940865</ID></Title></Data> + 0 + false + + + 6545 + 2022Friendship01T07 + <Data><Offer><Type>Popup</Type><ID>940868</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Chicken has the sonnets. Maybe she’ll read them after you leave?@@Back to Tuffnut!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940869</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Did you see her reaction? Did she shed tears?@@Oh, she kept them for private reading later? Of course, she’s very private about her feelings.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect materials from Tuffnut</Text><ID>940867</ID></Title></Data> + 0 + false + + + 6546 + 2022Friendship01T08 + <Data><Offer><Type>Popup</Type><ID>940871</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Here’s the spare materials, with some bonus heart doodles.@@You’re welcome.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940872</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, aren’t these envelopes with hearts, um, cheerful.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Bring materials back to Hiccup</Text><ID>940870</ID></Title></Data> + 0 + false + + + 6547 + 2022Friendship01T09 + <Data><Offer><Type>Popup</Type><ID>940874</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Take this mail over to the mailbox, and we’ll see if Harald’s terror takes the bait!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Friendship01T09CS.unity3d/PfGrp2022Friendship01T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Mailbox</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Mailbox at the school</Text><ID>940873</ID></Title></Data> + 0 + false + + + 6548 + 2022Friendship01T10 + <Data><Offer><Type>Popup</Type><ID>940876</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There he is! Follow that terror!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940877</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Hey there {{Name}}, glad to see you. Can you give me a hand?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FFLeopold</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow the terrible terror!</Text><ID>940875</ID></Title></Data> + 0 + false + + + 6549 + 2022Friendship01T11 + <Data><Offer><Type>Popup</Type><ID>940879</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Leopold here has been delivering tons of junk mail, and I can’t get him to stop. Please take this stuff away, this is obnoxious!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940880</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Leopold must have seen some other terrors with mail and is trying to mimic them…. Except all that mail is going to poor old Harald...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMailPile</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWMailPile</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the mail pile</Text><ID>940878</ID></Title></Data> + 0 + false + + + 6550 + 2022Friendship01T12 + <Data><Offer><Type>Popup</Type><ID>940882</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHarald</NPC><Text>Maybe he just needs some proper training. You can handle that, can’t you, {{Name}}? You’re a real trainer, right?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>940883</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This first letter is for Phlegma, she will probably be at the Lookout. Maybe Leopold will get the idea of delivery.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>940884</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Thank you, I’ve been hoping for this letter for a while!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWBotanist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Deliver a letter to Phlegma</Text><ID>940881</ID></Title></Data> + 0 + false + + + 6551 + 2022Friendship01T13 + <Data><Offer><Type>Popup</Type><ID>940886</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>The next letter is for Wartihog.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940887</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Wow, Clueless sent me chocolate. Let me send a thank you note back!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Deliver a letter to Wartihog</Text><ID>940885</ID></Title></Data> + 0 + false + + + 6552 + 2022Friendship01T14 + <Data><Offer><Type>Popup</Type><ID>940889</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>This thank-you note is for Clueless. Maybe it's time to let Leopold deliver one.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>940890</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Leopold's got it!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWLeopold</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWLeopold</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Give Leopold the letter for Clueless</Text><ID>940888</ID></Title></Data> + 0 + false + + + 6553 + 2022Friendship01T15 + <Data><End><Type>Popup</Type><ID>940892</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Oh, hi {{Name}}. Leopold brought me mail from Wartihog. @@It's only a bit nibbled on, but maybe he can work on that. I’m so glad Wartihog enjoyed the chocolate!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Make sure Clueless got the mail</Text><ID>940891</ID></Title></Data> + 0 + false + + + 6554 + 2022Friendship01T16 + <Data><End><Type>Popup</Type><ID>940894</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Thanks for helping so much this year to make sure our tradition continues. @@Now that the mail is back on, you’ve helped us spread the messages of friendship and joy and togetherness among the people who matter most to us in the world!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Astrid</Text><ID>940893</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206621 + true + 50 + 50 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 206621 + true + 100 + 100 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 206621 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 206621 + true + 50 + 50 + + 0 + +
+ false +
+ + 3052 + SpringMaze 2022 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spring Maze 2022</Text><ID>940016</ID></Title></Data> + false + 0 + + + 5 + 01-27-2022 11:13:55,06-07-2022 18:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3052 + 6564 + 0 + + + + 1 + 206634 + 0 + + 6564 + Springmaze2022_01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSpringDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Thawfest Chest in the maze</Text><ID>941166</ID></Title></Data> + 0 + false + + + 50 +

1

+ 0 + + 1 + 36 + 206634 + true + 50 + 50 + + 0 + + + + 250 +

6

+ 19194 + + 1 + 8768 + 206634 + true + 250 + 250 + + 0 + +
+ false +
+ + 3053 + SpringMaze 2022 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Spring Maze Repeatable 2022</Text><ID>940017</ID></Title></Data> + false + 0 + + + 5 + 01-27-2022 11:13:55,06-07-2022 18:59:59 + 0 + false + + + 3 + 3052 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3053 + 6565 + 0 + + + + 1 + 206635 + 0 + + 6565 + SpringMaze2022T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSpringDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the spring maze goal</Text><ID>941167</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 206635 + true + 50 + 50 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 206635 + true + 50 + 50 + + 0 + +
+ false +
+ + 3054 + Thawfest2022Story01 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory01T00.unity3d/PfGrp2022ThawfestStory01T00</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Biggest Thawfest [2022]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20905 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3054 + 6566 + 0 + + + 1 + 3054 + 6567 + 0 + + + 1 + 3054 + 6568 + 0 + + + 1 + 3054 + 6569 + 0 + + + 1 + 3054 + 6570 + 0 + + + 1 + 3054 + 6571 + 0 + + + 1 + 3054 + 6572 + 0 + + + + 1 + 207680 + 0 + + 6566 + Thawfest2022Story01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The very best season of the year is coming up! Of course, you and every other Berkian know EXACTLY what I'm talking about. Thawfest! Whoo! @@Let's go to [c][3eebff]Old Berk[/c][ffffff] and start setting up!</Text><ID>941281</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]He could have mentioned where he was going to be...[/i]</Text><ID>941282</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Old Berk</Text><ID>940098</ID></Title><Desc><Text>Go to Old Berk</Text><ID>941857</ID></Desc></Data> + 0 + false + + + 6567 + Thawfest2022Story01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Typical Snotlout. @@Well, he’s got to be somewhere around here.[/i]</Text><ID>941284</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Finally! I've been waiting here for - eh - ver. You're never going to win at Thawfest with that lackadaisical attitude! @@The thing is, as I flew over Berk, I had a sinking feeling. It seems like we’re just doing the same old thing every year.</Text><ID>941285</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Snotlout in Old Berk</Text><ID>941283</ID></Title><Desc><Text>Talk to Snotlout in Old Berk</Text><ID>941858</ID></Desc></Data> + 0 + false + + + 6568 + Thawfest2022Story01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It’s hard to one-up yourself each year when you’re as incredible as I am. But what can we do differently? How can our parade be bigger? @@Wait, where’s Hookfang? He was just here.</Text><ID>941287</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh no, Hookfang!</Text><ID>941288</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Hookfang in Old Berk</Text><ID>941286</ID></Title><Desc><Text>Find Hookfang in Old Berk</Text><ID>941859</ID></Desc></Data> + 0 + false + + + 6569 + Thawfest2022Story01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hurry and help out Hookfang! Get away from my dragon you two-headed terror!</Text><ID>941290</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022ThawfestStory01T04CS.unity3d/PfGrp2022ThawfestStory01T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>ZipplewraithTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Fire at the Dragon to Scare it Off</Text><ID>941289</ID></Title><Desc><Text>Fire at the Dragon to Scare it Off</Text><ID>942369</ID></Desc></Data> + 0 + false + + + 6570 + Thawfest2022Story01T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Better make sure Snotlout is okay.[/i]</Text><ID>941293</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Okay, I admit that ‘run at it’ might not be the right approach for some dragons, huh. @@Your shot barely budged it, that new dragon is tougher than it looks. @@Don’t worry, it takes more than that to keep a Jorgenson down!</Text><ID>941861</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Snotlout</Text><ID>941292</ID></Title><Desc><Text>Check on Snotlout</Text><ID>930513</ID></Desc></Data> + 0 + false + + + 6571 + Thawfest2022Story01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Only my pride is singed, and besides… babes love scars.</Text><ID>941295</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Hookfang seems really worried. Ought to check on him too![/i]</Text><ID>941296</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Don’t worry, Hookie, you’ve scorched me worse than that before!</Text><ID>941297</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Hookfang to calm him</Text><ID>941294</ID></Title><Desc><Text>{{Input}} on Hookfang to calm him</Text><ID>941862</ID></Desc></Data> + 0 + false + + + 6572 + Thawfest2022Story01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>But I’m still burning with anger, who does that dragon think they are attacking my Hookfang! @@I’ll have to track them down and teach both heads a lesson they will never forget. @@Speaking of two heads, I saw the twins here earlier, maybe they saw it fly off!</Text><ID>941299</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I did see a two-headed giant zipple-like-zipple-dragon!</Text><ID>941300</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>No, I saw it first!</Text><ID>941301</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I’m naming it first!</Text><ID>941302</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>This, from a viking that named a chicken ‘Chicken’.</Text><ID>941303</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>She named herself!</Text><ID>941304</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Well if we don’t hurry up and follow that dragon, no one will get to name it. I suppose you can come along, {{Name}}, just remember I saw it first!</Text><ID>941305</ID><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check in with Tuffnut</Text><ID>941298</ID></Title><Desc><Text>Check in with Tuffnut</Text><ID>941863</ID></Desc></Data> + 0 + false + + + 40 +

2

+ 0 + + 1 + 22 + 207680 + true + 40 + 40 + + 0 + + + + 100 +

1

+ 0 + + 1 + 38 + 207680 + true + 100 + 100 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 207680 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207680 + true + 50 + 50 + + 0 + +
+ + 50 +

6

+ 19194 + + 1 + 9952 + 207680 + true + 50 + 50 + + 0 + +
+ false +
+ + 3055 + Thawfest2022Story02 + 13 +

+ <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory02T00A.unity3d/PfGrp2022ThawfestStory02T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory02T00B.unity3d/PfGrp2022ThawfestStory02T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory02T00C.unity3d/PfGrp2022ThawfestStory02T00C</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>GlacierIslandDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory02T00D.unity3d/PfGrp2022ThawfestStory02T00D</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Something Extra [2022]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3054 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3055 + 6573 + 0 + + + 1 + 3055 + 6574 + 0 + + + 1 + 3055 + 6575 + 0 + + + 1 + 3055 + 6576 + 0 + + + 1 + 3055 + 6577 + 0 + + + 1 + 3055 + 6578 + 0 + + + 1 + 3055 + 6579 + 0 + + + 1 + 3055 + 6580 + 0 + + + 1 + 3055 + 6581 + 0 + + + 1 + 3055 + 6582 + 0 + + + 1 + 3055 + 6583 + 0 + + + 1 + 3055 + 6584 + 0 + + + 1 + 3055 + 6585 + 0 + + + 1 + 3055 + 6586 + 0 + + + 1 + 3055 + 6587 + 0 + + + 1 + 3055 + 6588 + 0 + + + 1 + 3055 + 6589 + 0 + + + 1 + 3055 + 6590 + 0 + + + + 1 + 207681 + 0 + + 6573 + Thawfest2022Story02T01 + <Data><Offer><Type>Popup</Type><ID>942370</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Let’s chase down that new zipple-dragon! Now, which way did it go again…</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942371</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Well, it left [c][3eebff]Old Berk[/c][ffffff] heading in a northeast direction. Based on that heading, and accounting for air currents, I surmise that it was headed for [c][3eebff]Scuttleclaw Island[/c][ffffff]!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>942372</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You just picked a random island, aren’t you?</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><ID>942373</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Of course I did, who do I look like Heather? @@Well, I guess my hair is long enough…</Text><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>Popup</Type><ID>942374</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Race you to [c][3eebff]Scuttleclaw Island[/c][ffffff], {{Name}}!</Text><ItemID>0</ItemID><Priority>4</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Scuttleclaw Island</Text><ID>930024</ID></Title><Desc><Text>Go to Scuttleclaw Island</Text><ID>938741</ID></Desc></Data> + 0 + false + + + 6574 + Thawfest2022Story02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I’ve never lost a race in my life! I owe my flawless record to my brilliant strategy of quitting as soon as I start losing. @@First one to find the big dragon wins! </Text><ID>941865</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Aha! I spot two heads over there by that cave. Looks like I win.</Text><ID>941866</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_2022ThawfestShivertooths</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search for the Mysterious Dragon</Text><ID>941306</ID></Title><Desc><Text>Search for the Mysterious Dragon</Text><ID>942375</ID></Desc></Data> + 0 + false + + + 6575 + Thawfest2022Story02T03 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWBarfBelchTwinRiders</Asset><Location>PfMarker_2022ThawfestTwins01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Wait, no – those two heads belong to two different bodies. It’s a couple of Shivertooths! Better get out of here before they notice us.</Text><ID>941868</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That Zippledragon must be around here somewhere… keep looking!</Text><ID>941869</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Still nothing?</Text><ID>941870</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_2022ThawfestRockFormation</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the Rock Formation</Text><ID>941307</ID></Title><Desc><Text>Investigate around the Rock Formation for the Mysterious Dragon</Text><ID>942376</ID></Desc></Data> + 0 + false + + + 6576 + Thawfest2022Story02T04 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWBarfBelchTwinRiders</Asset><Location>PfMarker_2022ThawfestTwins02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Should we give up?</Text><ID>941872</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I am starting to get bored… Let’s try one more spot.</Text><ID>941873</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Normally I love flying in circles, but the dragon is clearly gone. Or was never here in the first place… Mystery not solved.</Text><ID>941874</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_2022ThawfestScuttleclawDock</Value></Pair><Pair><Key>Range</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look around the Ice Flows for the Mysterious Dragon</Text><ID>941308</ID></Title><Desc><Text>Look around the Ice Flows for the Mysterious Dragon</Text><ID>942377</ID></Desc></Data> + 0 + false + + + 6577 + Thawfest2022Story02T05 + <Data><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>PfDWBarfBelchTwinRiders</Asset><Location>PfMarker_2022ThawfestTwins03</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Maybe Hiccup could shed some light on this situation! He’s sure to be more helpful than the twins…[/i]</Text><ID>941875</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you are {{Name}}! @@Fishlegs was just looking for you.</Text><ID>941876</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>He’s noticed some odd behavior from the dragons that usually stick to colder climates. </Text><ID>941877</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Hiccup at New Berk</Text><ID>940344</ID></Title><Desc><Text>Talk with Hiccup at New Berk</Text><ID>941336</ID></Desc></Data> + 0 + false + + + 6578 + Thawfest2022Story02T06 + <Data><Offer><Type>Popup</Type><ID>941878</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Sounds like Fishlegs might have some clues to help you locate that new dragon you and Snoutlout spotted. @@You should pay him a visit!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941879</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Just the Viking I was looking for! @@I heard about the new dragon you discovered from Snotlout. Two heads but with eyebrow-like appendages? I’d say we are dealing with a Zipplewraith all right! @@They are a fascinating hybrid, a mix between a Hideous Zippleback and a Snow Wraith! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>941880</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>With the temperature significantly warmer than usual this time of year, we’ve noticed that the dragons more at home in colder climates have been changing their flight patterns to seek out more frigid territory. @@Perhaps the dragon you have been tracking was forced from its habitat by the rising temperatures? @@Warmer climates certainly wouldn’t agree with the Zipplewraith, especially if it inherited the Snow Wraith’s inclination for sub-zero climates!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Fishlegs</Text><ID>940190</ID></Title><Desc><Text>Talk with Fishlegs</Text><ID>941398</ID></Desc></Data> + 0 + false + + + 6579 + Thawfest2022Story02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Although, this is all just a theory! At the end of the day, my expertise lies with Dragons, not Climatology. @@I wouldn’t mind having Heather’s take on this… Stop by the lab to see what she thinks of this!</Text><ID>941882</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Fishlegs noticed the rising temperatures? Even with a head full of dragons, nothing gets by him! @@I’ve been keeping an eye on the climate changes myself.</Text><ID>941883</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>The odd dragon behavior Fishlegs noted is likely due to Global Warming, or the rising of the average temperature on our planet. @@The climate has experienced temperature fluctuations throughout history due to natural phenomena like increased volcanic eruptions and increased solar activity. @@The climate can also be influenced by the byproducts of our modern-day Viking activities. </Text><ID>941884</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>When we burn fuel like coal, oil, and wood to power our ships and forge our weapons, we also release carbon dioxide into the air. @@CO2, and other greenhouse gases like it, end up trapping the heat that would normally escape the atmosphere. @@While greenhouse gases do help keep our planet warm, acting like layers of insulation, the more that is released into the atmosphere the warmer our planet becomes.</Text><ID>941885</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I’ve already heard reports of melting glaciers and shifting ocean patterns that I suspect might be due to the effects of Global Warming... @@I have no doubt that the rising temperatures are also disturbing the natural habitats of dragons across the Archipelago! @@With Snow Wraith blood coursing through that Zipplewraith’s veins, I wouldn’t be surprised if they were scouting for colder territory when you spotted it in Old Berk! @@Perhaps its previous habitat became too hot to bear?</Text><ID>941886</ID><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Heather</Text><ID>941309</ID></Title><Desc><Text>Talk with Heather</Text><ID>941881</ID></Desc></Data> + 0 + false + + + 6580 + Thawfest2022Story02T08 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Got it.[/i]</Text><ID>941888</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfThermometer_Peak</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfThermometer_Peak</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check the temperature at Berk's highest point</Text><ID>941310</ID></Title><Desc><Text>Check the temperature at Berk's highest point</Text><ID>942378</ID></Desc></Data> + 0 + false + + + 6581 + Thawfest2022Story02T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Heather is nothing if not thorough! She probably set up a thermometer to measure the temperature at a low point of Old Berk as well.[/i]</Text><ID>941890</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Found it![/i]</Text><ID>941891</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfThermometer_Low</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfThermometer_Low</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check the temperature at Berk's lowest point</Text><ID>941311</ID></Title><Desc><Text>Check the temperature at Berk's lowest point</Text><ID>942379</ID></Desc></Data> + 0 + false + + + 6582 + Thawfest2022Story02T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Time to bring the results back to Heather.[/i]</Text><ID>941892</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well done! Unfortunately, these readings do confirm my fears. The average temperature of Old Berk has been steadily rising over the past few years!</Text><ID>941893</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Next, let’s go measure the temperatures of the two locations most likely to provide a suitable environment for your Zipplewraith. @@[c][3eebff]Zippleback Island[/c][ffffff] and [c][3eebff]Glacier Island[/c][ffffff] are both excellent candidates! I’ll go with you this time. Windshear has been itching to stretch her wings!</Text><ID>941894</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Heather</Text><ID>926811</ID></Title><Desc><Text>Return to Heather</Text><ID>926811</ID></Desc></Data> + 0 + false + + + 6583 + Thawfest2022Story02T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>What’s the temperature like on Zippleback Island?</Text><ID>941896</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Just as I suspected… Zippleback Island’s temperature has increased as well. @@Huh, odd that there aren’t many Zipplebacks around. The heat shouldn’t bother them that much. Unless something else scared them off…</Text><ID>941897</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Anyway, let’s check on [c][3eebff]Glacier Island[/c][ffffff] next!</Text><ID>941898</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfThermometer_Zippleback</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfThermometer_Zippleback</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check the temperature on Zippleback Island</Text><ID>941312</ID></Title><Desc><Text>Check the temperature on Zippleback Island</Text><ID>941895</ID></Desc></Data> + 0 + false + + + 6584 + Thawfest2022Story02T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I sure hope Glacier Island hasn’t begun to melt!</Text><ID>941900</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>These readings indicate that the temperature of Glacier Island is increasing at a much faster rate than the other islands we checked. @@It must have something to do with its northern location... @@Sorry, I’m getting ahead of myself here. @@Although these temperature changes are worrying, the good news is at this rate Glacier Island won’t be thawing anytime soon and should continue to support Snow Wraiths and Zipplewraiths for years to come! +</Text><ID>941901</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I’m already feeling a hypothesis coming on… Perhaps proximity to the equator correlates to the speed at which the temperatures of certain areas increase. @@I’ll have to do some more research…</Text><ID>941902</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfThermometer_Glacier</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfThermometer_Glacier</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check the temperature on Glacier Island</Text><ID>941313</ID></Title><Desc><Text>Check the temperature on Glacier Island</Text><ID>941899</ID></Desc></Data> + 0 + false + + + 6585 + Thawfest2022Story02T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>In the meantime, let’s find that Zipplewraith! The temperature of Glacier Island hasn’t risen enough to drive out the more coldblooded dragons yet, so chances are your Zipplewraith is here somewhere! @@ Hmmm, maybe we should investigate that odd-shaped pile of snow?</Text><ID>941904</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Unbelievable! I spend all day chasing that Zipplewraith around while you two play in the snow and fiddle with theremins!</Text><ID>941905</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>A theremin is an instrument! We on the other hand were checking THERMOMETERS to measure the fluctuations in…@@You already stopped listening, didn’t you?</Text><ID>941906</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Almost immediately. Who cares about that science mumbo jumbo when there are deadly dragons to enact revenge upon!</Text><ID>941907</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well, with {{Name}}’s help, that ‘mumbo jumbo’ tracked your new dragon to this island.</Text><ID>941908</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh yeah? Then why don’t I see it anywhere-</Text><ID>941909</ID><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Zipplewraith</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the Snow Pile</Text><ID>941314</ID></Title><Desc><Text>Investigate the Snow Pile</Text><ID>942380</ID></Desc></Data> + 0 + false + + + 6586 + Thawfest2022Story02T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You know what I think I do see it now. Actually, I think I’m seeing double!</Text><ID>941912</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That’s because there are two of them. It looks like the green Zipplewraith you saw is in a territorial battle with this blue one! @@That would explain why it was acting so aggressively on New Berk. I wonder how long it’s been fighting to find a place to nest…</Text><ID>941913</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>So, it only went after Hookfang because it’s been struggling to find a new home? @@Well, I guess I can understand putting on a gruff exterior and pushing others away to ensure you don’t get hurt… uh since I’ve seen other Vikings do that so often, you know?</Text><ID>941914</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I’m sure… So, still out for revenge Snotlout?</Text><ID>941915</ID><ItemID>0</ItemID><Priority>4</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, I’ve got a better idea. {{Name}} come over here, I have a plan!</Text><ID>941916</ID><ItemID>0</ItemID><Priority>5</Priority></Offer><Offer><Type>Popup</Type><ID>941910</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You were saying?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>We need to break this up. @@Catch an Eel so we can get those Zipplewraiths to separate, will you? I think I saw some swimming around the island when I first landed. </Text><ID>941917</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Snotlout</Text><ID>940187</ID></Title><Desc><Text>Talk with Snotlout</Text><ID>941911</ID></Desc></Data> + 0 + false + + + 6587 + Thawfest2022Story02T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Better find an Eel fast![/i]</Text><ID>941919</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]There we go. Now to hurry back to Snotlout![/i]</Text><ID>941920</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfFishingZone_Ocean_EEL</Value></Pair><Pair><Key>Name</Key><Value>PfFishEelDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch an Eel</Text><ID>941315</ID></Title><Desc><Text>Catch an Eel</Text><ID>942381</ID></Desc></Data> + 0 + false + + + 6588 + Thawfest2022Story02T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Where is that Eel? This Blue Zipplewraith is getting nasty!</Text><ID>941922</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It’s about time! Hey, you big blue bully, get away from Greenie!</Text><ID>941923</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022ThawfestStory02T16CS.unity3d/PfGrp2022ThawfestStory02T16CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>7140</Value></Pair><Pair><Key>ItemDescription</Key><Value>Eel</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Hurry back to Snotlout</Text><ID>941316</ID></Title><Desc><Text>Hurry back to Snotlout</Text><ID>941921</ID></Desc></Data> + 0 + false + + + 6589 + Thawfest2022Story02T17 + <Data><Offer><Type>Popup</Type><ID>941925</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Guess you like the name Greenie huh? It’s a good thing I was here to-</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>941926</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, what’s your problem?</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>941927</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Well, you did just save the dragon that attacked him earlier. Maybe Hookfang is a little jealous?</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><ID>941928</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, come on Hookie no one could ever replace you! I was just helping out a fellow warrior. @@Once we find him a new home without any angry blue Zipplewraiths around, you won’t have to see Greenie again. @@I hear Zippleback Island is nice this time of year.</Text><ItemID>0</ItemID><Priority>3</Priority></Offer><End><Type>Popup</Type><ID>941929</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Yeah, sure just fly away again. That’s how you solve all of your problems! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GlacierIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Snotlout and Hookfang</Text><ID>941317</ID></Title><Desc><Text>Check on Snotlout and Hookfang</Text><ID>941924</ID></Desc></Data> + 0 + false + + + 6590 + Thawfest2022Story02T18 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Don’t worry about Hookfang, he’s just throwing one of his monstrous temper tantrums. @@Although, I guess we should make sure he is okay... @@Any ideas on where he is going?</Text><ID>941930</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>It looked like he was heading due south with a slight western tilt… Hmm, that would put him on a trajectory towards [c][3eebff]Zippleback Island[/c][ffffff].</Text><ID>941931</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh Thor, I sure hope he isn’t going to take out his frustration on the Zipplebacks over there…</Text><ID>941932</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Zippleback Island</Text><ID>941318</ID></Title><Desc><Text>Go to Zippleback Island</Text><ID>936896</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 207681 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 207681 + true + 45 + 45 + + 0 + +
+ + 250 +

8

+ 0 + + 1 + 651 + 207681 + true + 250 + 250 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207681 + true + 50 + 50 + + 0 + +
+ + 75 +

6

+ 19194 + + 1 + 9950 + 207681 + true + 75 + 75 + + 0 + +
+ false +
+ + 3056 + Thawfest2022Story04 + 4 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory04T00.unity3d/PfGrp2022ThawfestStory04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Everyone Really Loves a Parade [2022]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3069 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3056 + 6592 + 0 + + + 1 + 3056 + 6593 + 0 + + + 1 + 3056 + 6594 + 0 + + + 1 + 3056 + 6595 + 0 + + + 1 + 3056 + 6596 + 0 + + + 1 + 3056 + 6597 + 0 + + + + 1 + 207683 + 0 + + 6592 + Thawfest2022Story04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Each year we hold a Thawfest ceremony on [c][3eebff]Old Berk![/c][ffffff] It's traditional to do it there, even though we've moved. When you're ready, head on over!</Text><ID>941269</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Looks like that is just about everyone...</Text><ID>941270</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to Old Berk</Text><ID>941268</ID></Title><Desc><Text>Head to Old Berk</Text><ID>941985</ID></Desc></Data> + 0 + false + + + 6593 + Thawfest2022Story04T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait... I forgot Snotlout mentioned having a surprise addition to the parade. Can you check with Astrid about where he might be?</Text><ID>941319</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hey there {{Name}}! Last I heard, Snotlout was setting up his big surprise down towards the piers.</Text><ID>941320</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Astrid</Text><ID>940850</ID></Title><Desc><Text>Talk with Astrid</Text><ID>941986</ID></Desc></Data> + 0 + false + + + 6594 + Thawfest2022Story04T03 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Found him! And is that, Greenie?[/i]</Text><ID>922542</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_2022ThawfestSnotlout03</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Snotlout</Text><ID>941321</ID></Title><Desc><Text>Find Snotlout</Text><ID>941987</ID></Desc></Data> + 0 + false + + + 6595 + Thawfest2022Story03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Just the Viking I was looking for! Even though I did heroically and almost single-handedly save Greenie, you helped a bit. @@So, I figured the least I could do is let you ride him for the parade, [b]plus[/b] I don’t feel like getting torched by Hookfang again… Go ahead and mount him!</Text><ID>941323</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wow! Greenie didn’t even try to nip you. See Hookfang, he’s not that bad!</Text><ID>1010</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGreenieMountable</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWGreenieMountable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount the Zipplewraith for the Parade</Text><ID>941322</ID></Title><Desc><Text>Mount the Zipplewraith for the Parade</Text><ID>941988</ID></Desc></Data> + 0 + false + + + 6596 + Thawfest2022Story04T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now, will you and Greenie do the honors? Take the lane between the Berkians and approach the torch, {{Name}}.</Text><ID>941277</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ThawfestTorch</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Lead the Parade to the Torch</Text><ID>941276</ID></Title><Desc><Text>Lead the Parade to the Torch</Text><ID>941989</ID></Desc></Data> + 0 + false + + + 6597 + Thawfest2022Story04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Shoot a fireball at the torch to start Thawfest off with a bang!</Text><ID>941991</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022ThawfestStory04T06CS.unity3d/PfGrp2022ThawfestStory04T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Now that’s how you kick off a Thawfest! @@Let. The Games. BEGIN!</Text><ID>941992</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ThawfestTorch</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWTorchThawfest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot the Thawfest Torch</Text><ID>941278</ID></Title><Desc><Text>Shoot the Thawfest Torch</Text><ID>941990</ID></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207683 + true + 50 + 50 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 207683 + true + 150 + 150 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 207683 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207683 + true + 50 + 50 + + 0 + +
+ + 150 +

6

+ 19194 + + 1 + 9955 + 207683 + true + 150 + 150 + + 0 + +
+ false +
+ + 3057 + Thawfest2022Maze01 + 16 +

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Golden Hue of Chicken</Text><ID>939965</ID></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3052 + 0 + false + + + 5 + 05-01-2022 19:00:00,07-01-2022 19:00:00 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3057 + 6598 + 0 + + + 1 + 3057 + 6599 + 0 + + + 1 + 3057 + 6600 + 0 + + + 1 + 3057 + 6601 + 0 + + + 2 + 3057 + 3059 + 0 + + + 1 + 3057 + 6603 + 0 + + + 2 + 3057 + 3060 + 0 + + + 1 + 3057 + 6605 + 0 + + + 2 + 3057 + 3061 + 0 + + + 1 + 3057 + 6607 + 0 + + + 2 + 3057 + 3062 + 0 + + + 1 + 3057 + 6609 + 0 + + + 2 + 3057 + 3063 + 0 + + + 1 + 3057 + 6611 + 0 + + + 2 + 3057 + 3064 + 0 + + + 1 + 3057 + 6613 + 0 + + + 2 + 3057 + 3065 + 0 + + + 1 + 3057 + 6615 + 0 + + + 1 + 3057 + 6616 + 0 + + + + 1 + 206642 + 0 + + 3059 + Thawfest2022Maze01T05 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3059 + 6602 + 0 + + + + 1 + 206643 + 0 + + 6602 + Thawfest2022Maze01T05_Chest + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's fifty medals, and there's lots more to come! I hope you're spacing this out, though. Doing this all in one go might be crazy.@@I'd probably do it all at once. Pain lets you know you are alive. Also puts hair on your face. (I know from experience.)</Text><ID>940617</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6600</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 19194 + + 1 + 8775 + 206643 + true + 50 + 50 + + 0 + +
+ false + + + 3060 + Thawfest2022Maze01T07 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3060 + 6604 + 0 + + + + 1 + 206644 + 0 + + 6604 + Thawfest2022Maze01T07_Chest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>She's as good as a Changewing. Maybe better. Anyway, time to find the chest!@@If you're finishing puzzles, doors might start to lock down. If so, just look for the chest on your next maze challenge!</Text><ID>940618</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6604</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 19194 + + 1 + 8776 + 206644 + true + 50 + 50 + + 0 + +
+ false +
+ + 3061 + Thawfest2022Maze01T09 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3061 + 6606 + 0 + + + + 1 + 206645 + 0 + + 6606 + Thawfest2022Maze01T09_Chest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Right on! Head back to the entrance to unlock the next chest. I wonder what's inside...</Text><ID>940835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6606</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 19194 + + 1 + 8777 + 206645 + true + 50 + 50 + + 0 + +
+ false +
+ + 3062 + Thawfest2022Maze01T11 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3062 + 6608 + 0 + + + + 1 + 206646 + 0 + + 6608 + Thawfest2022Maze01T11_Chest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chest four: find it now!</Text><ID>940620</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6608</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 19194 + + 1 + 8778 + 206646 + true + 50 + 50 + + 0 + +
+ false +
+ + 3063 + Thawfest2022Maze01T13 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3063 + 6610 + 0 + + + + 1 + 206647 + 0 + + 6610 + Thawfest2022Maze01T13_Chest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good job, Fishmeat! Way to hustle! You did okay too, {{Name}}. But it's chest-finding time!</Text><ID>940836</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6610</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 19194 + + 1 + 8779 + 206647 + true + 50 + 50 + + 0 + +
+ false +
+ + 3064 + Thawfest2022Maze01T15 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3064 + 6612 + 0 + + + + 1 + 206648 + 0 + + 6612 + Thawfest2022Maze01T15_Chest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Getting into the vibe of this, aren't you? You know what to do now! +</Text><ID>940837</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6612</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 50 +

6

+ 19194 + + 1 + 8780 + 206648 + true + 50 + 50 + + 0 + +
+ false +
+ + 3065 + Thawfest2022Maze01T17 + 16 +

3057

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3065 + 6614 + 0 + + + + 1 + 206649 + 0 + + 6614 + Thawfest2022Maze01T17_Chest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Last chest time!</Text><ID>940838</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6614</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a locked chest in the maze</Text><ID>940031</ID></Title></Data> + 0 + false + + + 100 +

6

+ 19194 + + 1 + 8781 + 206649 + true + 100 + 100 + + 0 + +
+ false +
+ + 6598 + Thawfest2022Maze01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You there! You loved the maze, didn't you? Looking for an epic quest to win hundreds of medals? I see the 'yes' in your eyes!@@For the holiday, I've hidden medals in locked boxes throughout the maze. Just to warn you, this will be really time consuming and frustrating: just like me!</Text><ID>940839</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Thawfest Maze</Text><ID>940624</ID></Title></Data> + 0 + false + + + 6599 + Thawfest2022Maze01T02_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken is going to be keymaster: find her and the first key.@@Here's a hint: You'll need an umbrella! Hahaha! Start a new maze challenge when you're ready.</Text><ID>940840</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, the first key! I was gonna place the chests somewhere crazy, but they're super heavy... You'll be able to find each chest in the entrance hub of the current room Chicken is in.</Text><ID>940841</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6599</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken inside the maze to get a key (1/7)</Text><ID>940626</ID></Title></Data> + 0 + false + + + 6600 + Thawfest2022Maze01T03_Chest + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The chest is nearby! Can you smell it? You are getting warmer!</Text><ID>940630</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest6600</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the hidden chest in the maze</Text><ID>940629</ID></Title></Data> + 0 + false + + + 6601 + Thawfest2022Maze01T04_Chest + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>SUPER WARM!</Text><ID>940631</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest6600</Value></Pair><Pair><Key>Range</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the hidden chest in the maze</Text><ID>940629</ID></Title></Data> + 0 + false + + + 6603 + Thawfest2022Maze01T06_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has another key. I’ve instructed her to hide somewhere in the maze.@@She’s stealthy, but you [i]strike[/i] me as one of the smarter vikings at this school. I'm sure you'll find her. </Text><ID>940842</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6603</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze (2/7)</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6605 + Thawfest2022Maze01T08_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken's all set. These hints are getting harder to think up! She, uh. She... uhhh... Sorry, I can barely keep [i]track[/i] of my thoughts right now!</Text><ID>940843</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6605</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze (3/7)</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6607 + Thawfest2022Maze01T10_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has hidden again! Honestly, at this hour she's probably hangry. I hope she didn't get into my [i]sharp[/i] cheese. </Text><ID>940844</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6607</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze (4/7)</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6609 + Thawfest2022Maze01T12_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken needed a break. I got Fishmeat to tag in. (Don't tell Fishlegs, please.) @@ I had to drag him. Even though he's small, that dragon is as heavy as a [i]boulder[/i].</Text><ID>940636</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFishmeat6609</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Fishmeat to get a key in the maze (5/7)</Text><ID>940635</ID></Title></Data> + 0 + false + + + 6611 + Thawfest2022Maze01T14_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWThawfest</NPC><Text>Chicken's back in it -- that we know for sure. Where she is..? That's still a complete [i]mystery[/i].</Text><ID>940845</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6611</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze (6/7)</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6613 + Thawfest2022Maze01T16_Chicken + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, Chicken's doing one last one. I hope she's not too close to the lava... Last thing I need is some Berk Fried Chicken on my hands...</Text><ID>940846</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken6613</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get a key in the maze (7/7)</Text><ID>940046</ID></Title></Data> + 0 + false + + + 6615 + Thawfest2022Maze01T18_Tuffnut + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Just kidding, there’s one more key and one big prize. You've collected four hundred so far, there's six hundred in the final chest! Worth it! Come see me.@@(This never gets old.)</Text><ID>940640</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Tuffnut</Text><ID>940808</ID></Title></Data> + 0 + false + + + 6616 + Thawfest2022Maze01T19 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrpThawfest2022Q04T19.unity3d/PfGrpThawfest2022Q04T19</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Were you afraid I was going to put you through more awfulness to get the last prize?@@Not this year! Float on over to New Berk to search for the final chest!</Text><ID>940848</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, you found it! This treasure hunt went pretty well after all: twists, turns, trivia... and Chicken!@@Happy Thawfest!</Text><ID>940849</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest6616</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest6616</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Open the chest in New Berk</Text><ID>940847</ID></Title></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 206642 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 206642 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 206642 + true + 200 + 200 + + 0 + +
+ + 600 +

6

+ 19194 + + 1 + 8774 + 206642 + true + 600 + 600 + + 0 + +
+ false +
+ + 3067 + 2022AprilFools01 + 13 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_RuffnutSnoggletog08</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Hen Party</Text><ID>941324</ID></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 03-25-2022 19:00:00,04-04-2022 19:00:00 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3067 + 7619 + 0 + + + 1 + 3067 + 7620 + 0 + + + 1 + 3067 + 7621 + 0 + + + 1 + 3067 + 7622 + 0 + + + + 1 + 207659 + 0 + + 7619 + 2022AprilFools01T01 + <Data><Offer><Type>Popup</Type><ID>941421</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Do me a favor and check on that yak-brained brother of mine would you? @@He flew off to Dragon's Edge with Barf and Belch after this incredibly stupid idea got lodged in his skull, and you know it has to be a terrible idea if even I think it’s dumb! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Dragon's Edge</Text><ID>941420</ID></Title><Desc><Text>Visit Dragon's Edge</Text><ID>941420</ID></Desc></Data> + 0 + false + + + 7620 + 2022AprilFools01T02 + <Data><Offer><Type>Popup</Type><ID>941422</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Hmm Tuffnut must be around here somewhere…[/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941423</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>At last, our first human guest has arrived! You must have received our invitation to this [i][b][c][3eebff]exclusive[/c][ffffff][/b][/i] event.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>939422</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 7621 + 2022AprilFools01T03 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrp2022AprilFools01T03.unity3d/PfGrp2022AprilFools01T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>941425</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You might be the first Viking to arrive, but I have no doubt a whole gaggle of Thorstons will arrive at any moment. @@Like Ruffnut and Buffnut and Scruffnut and Agnut and Lars-</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>941426</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWChickenTuffnut</NPC><Text>[i][c][ffb33e]*Pecks at the ground*[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>941427</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Don't worry Chicken, cousin Gruffnut wasn't invited. @@Before everyone else arrives, I sure could use some help wrangling these fowl fellows. @@I invited all of Chicken’s family, but I never realized just how much that family had grown. @@Think you can herd these chickens wandering around the base into this pen? I’ve got important matters to attend to…</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><ID>941428</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]That’s the last of them![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfLooseChicken</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Round up the loose Chickens</Text><ID>941424</ID></Title><Desc><Text>Round up the loose Chickens</Text><ID>941424</ID></Desc></Data> + 0 + false + + + 7622 + 2022AprilFools01T04 + <Data><End><Type>Popup</Type><ID>941430</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Well done, you would make an excellent sheepdog! Or maybe sheepchicken? No wait chickenviking! Yes that’s the one… @@Anyway, while you were busy, I gathered up the rest of them!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>941431</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]What do you mean the rest of them?[/i]</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>941432</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWChickenTuffnut</NPC><Text>[i][c][ffb33e]*Bwak*[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>941433</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>A tearful reunion indeed chicken. @@Now if you will excuse me {{Name}}, I have some prestigious guests to escort.</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022AprilFools01T04CS.unity3d/PfGrp2022AprilFools01T04CS</Asset><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><ID>941434</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]What am I watching right now?[/i]</Text><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><ID>941435</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>A henaissance my friend. And this is only the beginning…</Text><ItemID>0</ItemID><Priority>6</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ChickenPen</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Bring the Chickens to the Pen</Text><ID>941429</ID></Title><Desc><Text>Bring the Chickens to the Pen</Text><ID>941429</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 207659 + true + 150 + 150 + + 0 + + + + 45 +

2

+ 0 + + 1 + 519 + 207659 + true + 45 + 45 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 207659 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207659 + true + 50 + 50 + + 0 + +
+ false +
+ + 3068 + 2022AprilFools02 + 16 +

+ <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfGrp2022AprilFools02T00.unity3d/PfGrp2022AprilFools02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_Ruffnut2022Prank</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut2022PrankPen</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWChickenTuffnut.unity3d/PfDWChickenTuffnut</Asset><Location>PfMarker_Chicken2022PrankPen</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Who Rules the Roost?</Text><ID>941325</ID></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 03-25-2022 19:00:00,04-04-2022 19:00:00 + 0 + false + + + 3 + 3067 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3068 + 7623 + 0 + + + 1 + 3068 + 7624 + 0 + + + 1 + 3068 + 7625 + 0 + + + 1 + 3068 + 7626 + 0 + + + + 1 + 207660 + 0 + + 7623 + 2022AprilFools02T01 + <Data><Offer><Type>Popup</Type><ID>941437</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Now, let us take this poultry party to the arena! We have been preparing a special exhibition match in your honor my feathered friend. @@You too {{Name}}, and be sure to bring the toughest dragon you’ve got! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>941438</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]I suppose I should meet them there to make sure Tuffnut doesn’t hurt himself…[/i]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Dome</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Dome</Text><ID>941436</ID></Title><Desc><Text>Go to the Dome</Text><ID>941436</ID></Desc></Data> + 0 + false + + + 7624 + 2022AprilFools02T02 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut2022Dome</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWChickenTuffnut.unity3d/PfDWChickenTuffnut</Asset><Location>PfMarker_Chicken2022Dome</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>941439</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>And here is our brave challenger, {{Name}}! I hope they are able to provide us with a battle worthy of your splendor Chicken.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941440</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWChickenTuffnut</NPC><Text>[c][ffb33e]...[/c][ffffff]</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>941441</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I know I know, they don’t look like much to me either, but hey best case we get to watch as they are torn limb from limb by a ferocious beast! @@Or would that be worst case? Either way, it sounds like fun! @@Oh come on {{Name}}, don’t look so nervous I’m sure you’ll probably survive!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>939422</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 7625 + 2022AprilFools02T03 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut2022Dome</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWChickenTuffnut.unity3d/PfDWChickenTuffnut</Asset><Location>PfMarker_Chicken2022Dome</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>Location</Key><Value>DTPortalChicken</Value></Pair><Pair><Key>Name</Key><Value>STPrank01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Titan Wing Chicken in Dragon Tactics</Text><ID>941442</ID></Title><Desc><Text>Defeat the Titan Wing Chicken in Dragon Tactics</Text><ID>941442</ID></Desc></Data> + 0 + false + + + 7626 + 2022AprilFools02T04 + <Data><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Tuffnut2022PrankPostDT</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDragonsEdgeDO</Scene><Asset>RS_DATA/PfDWChickenTuffnut.unity3d/PfDWChickenTuffnut</Asset><Location>PfMarker_Chicken2022PrankPostDT</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>941443</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Unbelievable! {{Name}} survived- I mean bested the Titan Wing Chicken, in what I would call a truly dazzling display of valor and might! @@But the question is, what did our esteemed guest of honor think? </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>941444</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWChickenTuffnut</NPC><Text>[c][ffb33e]*Bwok bwak*[/c][ffffff]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>941445</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>I couldn’t have put it better myself. What a magnificent Inaugural Chickenfest this turned out to be.</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><ID>941446</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Thawfest?[/i]</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>941447</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>No, [c][3eebff]Chickenfest![/c][ffffff] Thawfest isn’t for another few weeks. @@Wow, you really need to learn your holidays.</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>941448</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>For the bravery you displayed today vanquishing the great Titan Wing Chicken, I bestow upon you these strange purple rocks I came across. @@They kept sinking when I was trying to skip them anyways. @@And we had best see you next year, we will be doing this annually! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Tuffnut</Text><ID>939422</ID></Title><Desc><Text>Talk to Tuffnut</Text><ID>939422</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207660 + true + 75 + 75 + + 0 + + + + 200 +

1

+ 0 + + 1 + 218 + 207660 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 207660 + true + 200 + 200 + + 0 + +
+ + 10 +

5

+ 0 + + 1 + 1283 + 207660 + true + 10 + 10 + + 0 + +
+ + 75 +

12

+ 0 + + 1 + 2518 + 207660 + true + 75 + 75 + + 0 + +
+ false +
+ + 3069 + Thawfest2022Story03 + 12 +

+ <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory03T00A.unity3d/PfGrp2022ThawfestStory03T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2022ThawfestStory03T00B.unity3d/PfGrp2022ThawfestStory03T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>O ye, of little Wraith [2022]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 3 + 3055 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3069 + 7627 + 0 + + + 1 + 3069 + 7628 + 0 + + + 2 + 3069 + 3070 + 0 + + + 1 + 3069 + 7630 + 0 + + + 1 + 3069 + 7631 + 0 + + + 1 + 3069 + 7632 + 0 + + + 1 + 3069 + 7633 + 0 + + + 1 + 3069 + 7634 + 0 + + + + 1 + 207682 + 0 + + 3070 + Thawfest2022Story03T03 + 12 +

3069

+ <Data><Offer><Type>Popup</Type><ID>941934</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Oh no! Looks like Hookfang is being attacked by some more blue Zipplewraiths. We’ve got to help him! @@Blast away some of those Zipplewraiths while Snotlout catches up to us.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>1</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>941935</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Nice shooting there!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Help Hookfang</Text><ID>941327</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 3070 + 7629 + 0 + + + + 1 + 0 + 0 + + 7629 + Thawfest2022Story03T03 + <Data><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfZipplewraithTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Defend Hookfang and Shoot the Dragons</Text><ID>941933</ID></Title><Desc><Text>Defend Hookfang and Shoot the Dragons</Text><ID>941933</ID></Desc></Data> + 0 + false + + false + + + 7627 + Thawfest2022Story03T01 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>There you are {{Name}}! I feel like we’ve been waiting weeks for you to arrive.</Text><ID>941937</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Relax Snotlout, I’m sure Hookfang is just fine. </Text><ID>941938</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I know I know. And don’t worry Greenie, we will find you a home soon as I make amends with Hookfang. I promise.</Text><ID>941939</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let’s take a look around the island and see if we can spot Hookfang.</Text><ID>941940</ID><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHeatherAndWindshear</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Snotlout and Heather on Zippleback Island</Text><ID>941936</ID></Title><Desc><Text>Find Snotlout and Heather on Zippleback Island</Text><ID>941936</ID></Desc></Data> + 0 + false + + + 7628 + Thawfest2022Story03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Let’s stay together in case we run into some more territorial Zipplewraiths. I’ll take the lead!</Text><ID>941942</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_2022ThawfestHookfang</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_2022ThawfestHookfang</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Hookfang</Text><ID>941941</ID></Title><Desc><Text>Look for Hookfang</Text><ID>941941</ID></Desc></Data> + 0 + false + + + 7630 + Thawfest2022Story03T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I’m here Hookfang! Thanks for wearing these guys down, now it’s time to finish this. @@{{Name}} come down here and give me a hand!</Text><ID>941944</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wooo now that’s how you do it eh Greenie! Snotlout Snotlout oy oy oy!</Text><ID>941945</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Looks like the blue Zipplewraiths are all headed towards [c][3eebff]Glacier Island[/c][ffffff]. I doubt they will be back anytime soon!</Text><ID>941946</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>And more importantly, we saved Hookie!</Text><ID>941947</ID><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>DTPortalZipplewraith</Value></Pair><Pair><Key>Name</Key><Value>STZippleWraith01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Blue Zipplewraiths</Text><ID>941943</ID></Title><Desc><Text>Defeat the Blue Zipplewraiths</Text><ID>941943</ID></Desc></Data> + 0 + false + + + 7631 + Thawfest2022Story03T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]That was a tough fight, better check on Hookfang.[/i]</Text><ID>941949</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>No! His wing is hurt. </Text><ID>941950</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>He won’t be able to fly in this condition without some medical attention.</Text><ID>941951</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Then it seems I am just in time!</Text><ID>941952</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Valka? Looks like Hiccup must have gotten my terror mail.</Text><ID>941953</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Seriously Heather! We totally had this under control… Well mostly...</Text><ID>941954</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>While I’m here, allow me to attend to your dragon. His bravery helped drive off those territorial Zipplewraiths and restore the natural order on Zippleback Island. </Text><ID>941955</ID><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wait, so Hookfang flew off to make sure Zippleback Island was safe for Greenie? Guess he wasn’t jealous after all!</Text><ID>941956</ID><ItemID>0</ItemID><Priority>6</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>...</Text><ID>932908</ID><ItemID>0</ItemID><Priority>7</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Okay okay! So you were a little jealous. </Text><ID>941957</ID><ItemID>0</ItemID><Priority>8</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Still, he did clear all of the Blue Zipplewraiths from the island. Maybe he was trying to help Greenie find a new home?</Text><ID>941958</ID><ItemID>0</ItemID><Priority>9</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I knew you had a big heart hidden under that scaly exterior!</Text><ID>941959</ID><ItemID>0</ItemID><Priority>10</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>He’s not the only one.</Text><ID>941960</ID><ItemID>0</ItemID><Priority>11</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on Hookfang</Text><ID>941948</ID></Title><Desc><Text>Check on Hookfang</Text><ID>941948</ID></Desc></Data> + 0 + false + + + 7632 + Thawfest2022Story03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Give me a hand holding Hookfang’s wing will you {{Name}}?</Text><ID>941962</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Yes, hold it right there while I apply this herbal salve.</Text><ID>941963</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Based on the temperature readings we took, [c][3eebff]Zippleback Island[/c][ffffff] should be the ideal climate for the [i][c][ffb33e]Green Zipplewraith subspecies[/c][ffffff][/i]. Guess Hookfang found Greenie the perfect home!</Text><ID>941964</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Quite right. The blue subspecies you saw are known as [i][c][ffb33e]Tundra Zipplewraith[/c][ffffff][/i], and as you may have guessed from their name, they prefer much colder habitats than their green counterparts.</Text><ID>941965</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Like [c][3eebff]Glacier Island![/c][ffffff] @@Hmm, I wonder if the rising temperatures drove both Zipplewraith subspecies to migrate north to the Archipelago’s colder climate. </Text><ID>941966</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The only Zipplewraiths I have heard of were observed much further south, so I suspect your theory could hold true. @@The temperature changes you have been charting certainly could have caused them to abandon their previous habitat in search of more appropriate climates.</Text><ID>941967</ID><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Help Valka attend to Hookfang</Text><ID>941961</ID></Title><Desc><Text>Help Valka attend to Hookfang</Text><ID>941961</ID></Desc></Data> + 0 + false + + + 7633 + Thawfest2022Story03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Hm... maybe Heather has an idea about why the Zipplewraiths couldn't share the Island?</Text><ID>941969</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I'm just as lost as you are {{Name}} @@Valka, do you know why they couldn't all just settle on one island?</Text><ID>941970</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>The Tundra Zipplewraiths have much more in common with their Snow Wraith ancestors. @@Besides preferring desolate conditions, they have also adopted the Snow Wraith’s solitary nature and typically seclude their packs from other dragons. @@On the other hand, the green variant’s nature is far more similar to the Zippleback, tending to be a tad more social.</Text><ID>941971</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I see, so Greenie must have been separated from his pack during the migration north. And when he tried to join the Tundra Zipplewraiths, they became territorial and have been chasing him off ever since.</Text><ID>941972</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Precisely.</Text><ID>941973</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Enough with all the dragon prattle. I feel like I’m talking to a couple of Fishlegs over here. @@Ahem… sorry Valka. Thank you for taking care of Hookfang.</Text><ID>941974</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>No matter. What is important is that your dragon is safe, and we found our new Zipplewraith friend here a suitable home.</Text><ID>941975</ID><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>She’s right Greenie, this place is perfect for you. No blue bullies and plenty of Zipplebacks to keep you company. @@Plus, you’re always welcome to visit us. Come to think of it, I just figured out how to make Thawfest even bigger this year…</Text><ID>941976</ID><ItemID>0</ItemID><Priority>6</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Heather about the Zipplewraiths</Text><ID>941968</ID></Title><Desc><Text>Talk to Heather about the Zipplewraiths</Text><ID>941968</ID></Desc></Data> + 0 + false + + + 7634 + Thawfest2022Story03T08 + <Data><Offer><Type>Popup</Type><ID>941978</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}} would you mind informing Hiccup of everything that transpired? He was quite worried when he heard Hookfang was missing. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>941979</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you are {{Name}}! I was so relieved to hear Hookfang is okay. Heather was just filling me in on your Zipplewraith adventure. Sounds like you had quite the day!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>941980</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>That we did! I still need to finish crunching the numbers, but some of the temperature changes we recorded do have me a tad worried…</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>941981</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Me too. Although I am glad your pursuit of the Zipplewraith brought these climate changes to our attention. This is the kind of problem we need to tackle fast before it gets out of hand!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>941982</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I couldn’t agree more! I had some ideas about some new potential sustainable fuel sources I want to run by you…</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><ID>941983</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>And I can’t wait to hear them. But {{Name}} shouldn’t have to listen to us jabber anymore, they’ve already been through enough today! </Text><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><ID>941984</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Good point, we could be here talking about renewable energy all night. @@Thanks for all of your help today {{Name}}, despite what Snotlout thinks, we couldn’t have done this without you!</Text><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report back to Hiccup</Text><ID>941977</ID></Title><Desc><Text>Report back to Hiccup</Text><ID>941977</ID></Desc></Data> + 0 + false + + + 150 +

1

+ 0 + + 1 + 168 + 207682 + true + 150 + 150 + + 0 + +
+ + 45 +

2

+ 0 + + 1 + 519 + 207682 + true + 45 + 45 + + 0 + +
+ + 300 +

8

+ 0 + + 1 + 653 + 207682 + true + 300 + 300 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207682 + true + 50 + 50 + + 0 + +
+ + 100 +

6

+ 19194 + + 1 + 9954 + 207682 + true + 100 + 100 + + 0 + +
+ false +
+ + 3071 + New Farming 261 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3071 + 7635 + 0 + + + + 1 + 207684 + 0 + + 7635 + Owl Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers</Text><ID>942179</ID></Title><Desc><Text>Hiccup is down to his last quill and will need to resupply!</Text><ID>942180</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 207684 + true + 3 + 3 + + 0 + + + + 102 +

2

+ 0 + + 1 + 9960 + 207684 + true + 102 + 102 + + 0 + +
+ false +
+ + 3072 + New Farming 262 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,4 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3072 + 7636 + 0 + + + + 1 + 207685 + 0 + + 7636 + Owl Feathers, Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers, Chicken Eggs</Text><ID>942181</ID></Title><Desc><Text>Snotlout needs items so he can trade at the Markets.</Text><ID>942182</ID></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 207685 + true + 6 + 6 + + 0 + + + + 334 +

2

+ 0 + + 1 + 9961 + 207685 + true + 334 + 334 + + 0 + +
+ false +
+ + 3073 + New Farming 263 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3073 + 7637 + 0 + + + + 1 + 207686 + 0 + + 7637 + Owl Feathers, Flax Flowers, White Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9546</Value></Pair><Pair><Key>ItemDescription</Key><Value>Flax Flower</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers, Flax Flowers, White Wool</Text><ID>942183</ID></Title><Desc><Text>Mala has put in a request for some items.</Text><ID>942184</ID></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207686 + true + 4 + 4 + + 0 + + + + 885 +

2

+ 0 + + 1 + 9962 + 207686 + true + 885 + 885 + + 0 + +
+ false +
+ + 3075 + New Farming 265 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,9 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3075 + 7639 + 0 + + + + 1 + 207688 + 0 + + 7639 + Owl Feathers, Turkey Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers, Turkey Feathers</Text><ID>942187</ID></Title><Desc><Text>Valka needs these feathers to create some Dragon Nests.</Text><ID>942188</ID></Desc></Data> + 0 + false + + + 50 +

9

+ 0 + + 1 + 829 + 207688 + true + 50 + 50 + + 0 + + + + 289 +

2

+ 0 + + 1 + 9964 + 207688 + true + 289 + 289 + + 0 + +
+ false +
+ + 3076 + New Farming 266 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,16 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3076 + 7640 + 0 + + + + 1 + 207689 + 0 + + 7640 + Owl Feathers, Puffin Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers, Puffin Feathers</Text><ID>942189</ID></Title><Desc><Text>Ruffnut misplaced some of Tuffnut's feathers and needs to replace them before he realizes!</Text><ID>942190</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 207689 + true + 112 + 112 + + 0 + + + + 1095 +

2

+ 0 + + 1 + 9965 + 207689 + true + 1095 + 1095 + + 0 + +
+ false +
+ + 3077 + New Farming 267 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,16 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3077 + 7641 + 0 + + + + 1 + 207690 + 0 + + 7641 + Owl Feathers, Turkey Feathers, Puffin Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers, Turkey Feathers, Puffin Feathers</Text><ID>942191</ID></Title><Desc><Text>Heather wants to figure out which quill feather has the highest quality!</Text><ID>942192</ID></Desc></Data> + 0 + false + + + 112 +

9

+ 0 + + 1 + 2036 + 207690 + true + 112 + 112 + + 0 + + + + 1940 +

2

+ 0 + + 1 + 9966 + 207690 + true + 1940 + 1940 + + 0 + +
+ false +
+ + 3078 + New Farming 268 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3078 + 7642 + 0 + + + + 1 + 207691 + 0 + + 7642 + Owl Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers</Text><ID>942179</ID></Title><Desc><Text>Eret wants to make sure to have a backup supply of feathers stashed in his boat!</Text><ID>942193</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 207691 + true + 3 + 3 + + 0 + + + + 507 +

2

+ 0 + + 1 + 9967 + 207691 + true + 507 + 507 + + 0 + +
+ false +
+ + 3079 + New Farming 269 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3079 + 7643 + 0 + + + + 1 + 207692 + 0 + + 7643 + Owl Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers</Text><ID>942179</ID></Title><Desc><Text>Fishlegs needs a lot of feathers to fluff up some pillows for Fishmeat!</Text><ID>942194</ID></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 207692 + true + 3 + 3 + + 0 + + + + 676 +

2

+ 0 + + 1 + 9968 + 207692 + true + 676 + 676 + + 0 + +
+ false +
+ + 3080 + New Farming 270 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3080 + 7644 + 0 + + + + 1 + 207693 + 0 + + 7644 + Owl Feathers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>19179</Value></Pair><Pair><Key>ItemDescription</Key><Value>Owl Feather</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Owl Feathers</Text><ID>942179</ID></Title><Desc><Text>Hiccup wants to see if Owl Feathers could be utilized in the design of some new Flight Suits!</Text><ID>942195</ID></Desc></Data> + 0 + false + + + 845 +

2

+ 0 + + 1 + 1905 + 207693 + true + 845 + 845 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 207693 + true + 3 + 3 + + 0 + +
+ false +
+ + 3081 + Summer2022Story01 + 61 +

+ <Data><Setup><Scene>OpenOceanRemoteDO</Scene><Asset>RS_DATA/PfGrp2022Summer01T00D.unity3d/PfGrp2022Summer01T00D</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>MudrakerIslandDO</Scene><Asset>RS_DATA/PfGrp2022Summer01T00C.unity3d/PfGrp2022Summer01T00C</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>OpenOceanRemoteDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksDO</Scene><Asset>RS_DATA/PfGrp2022Summer01T00B.unity3d/PfGrp2022Summer01T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Kick The Nadder's Nest [2022]</Text></Title><Icon>RS_DATA/DragonsSummerIcons/IcoDWDragonsWarlordPlans</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20906 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3081 + 7646 + 0 + + + 1 + 3081 + 7647 + 0 + + + 1 + 3081 + 7648 + 0 + + + 1 + 3081 + 7649 + 0 + + + 1 + 3081 + 7650 + 0 + + + 1 + 3081 + 7651 + 0 + + + 1 + 3081 + 7652 + 0 + + + 1 + 3081 + 7653 + 0 + + + 2 + 3081 + 3082 + 0 + + + 1 + 3081 + 7655 + 0 + + + 1 + 3081 + 7669 + 0 + + + 1 + 3081 + 7670 + 0 + + + 1 + 3081 + 7671 + 0 + + + 1 + 3081 + 7672 + 0 + + + 1 + 3081 + 7673 + 0 + + + 1 + 3081 + 7674 + 0 + + + 1 + 3081 + 7675 + 0 + + + 1 + 3081 + 7676 + 0 + + + + 1 + 207723 + 0 + + 3082 + Summer2022Story01T09 + 61 +

3081

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Look there she is now! I’d recognize that chipped horn anywhere. And it seems my hunch was right, she needs our help! +</Text><ID>942163</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer01T09CS.unity3d/PfGrp2022Summer01T09CS</Asset><ItemID>0</ItemID><Priority>1</Priority></Offer><Repeat>1</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>942452</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Who are these guys? And where did they get their hands on such dangerous dragons! They look like some sort of cross between a Deathgripper and a Goregutter...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942453</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We need to retreat before we get overwhelmed!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942454</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>We can’t leave Sunny!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Shoot the attacking Goregrippers</Text><ID>942162</ID></Title><Desc><Text>Shoot the attacking Goregrippers</Text><ID>942162</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 3 + + 1 + 3082 + 7654 + 0 + + + + 1 + 0 + 0 + + 7654 + Summer2022Story01T09 + <Data><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>GoregripperTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Shoot The Attacking Goregrippers</Text><ID>942162</ID></Title><Desc><Text>Shoot The Attacking Goregrippers</Text><ID>942162</ID></Desc></Data> + 0 + false + + false + + + 7646 + Summer2022Story01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}} great to see you! Stormfly and are I about to head off to make some renovations down at [c][3eebff]Berk Docks[/c][ffffff], so be sure to keep an eye on Hiccup for me while I’m gone.</Text><ID>942235</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh! I almost forgot, the Headmaster wanted a word with you. He’s probably still somewhere around the [c][3eebff]School[/c][ffffff].</Text><ID>942236</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>There you are {{Name}}! I need a sturdy Viking to help me patch up a part of the School’s outer walls! Snotlout and Hookfang got a little too ambitious while showing off and-</Text><ID>942237</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer01T01CS.unity3d/PfGrp2022Summer01T01CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk To Headmaster Heyral at The School</Text><ID>942234</ID></Title><Desc><Text>Talk To Headmaster Heyral at The School</Text><ID>942234</ID></Desc></Data> + 0 + false + + + 7647 + Summer2022Story01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]That was strange, Headmaster Heyral sure left in a hurry... Maybe I should check in with Hiccup to make sure everything is okay.[/c][ffffff][/i]</Text><ID>942238</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmmm, thanks for bringing this to my attention. I wonder why that shard of an axe hilt sent him running off like that...</Text><ID>942239</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whatever the Headmaster left for must have been important, but there have been reports of severe thunderstorms around the archipelago. @@I’d feel better knowing he has some Dragon Riders watching his back... </Text><ID>942240</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup</Text><ID>929920</ID></Title><Desc><Text>Speak with Hiccup</Text><ID>929920</ID></Desc></Data> + 0 + false + + + 7648 + Summer2022Story01T03 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsCave</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWNightlightBlackBlueAdultNPC.unity3d/PfDWNightlightBlackBlueAdultNPC</Asset><Location>PfMarker_DartCave</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWNightlightBlackGreenAdultNPC.unity3d/PfDWNightlightBlackGreenAdultNPC</Asset><Location>PfMarker_RuffrunnerCave</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWNightlightWhiteAdultNPC.unity3d/PfDWNightlightWhiteAdultNPC</Asset><Location>PfMarker_PouncerCave</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Say {{Name}} would you mind grabbing Fishlegs and following Heyral to make sure he stays safe?</Text><ID>942241</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>While Heather and I have been tied up trying to lower Berk’s emissions with the help of the other riders, Astrid’s been preoccupied with improving the outdated defenses on Old Berk, so we are stretched pretty thin. @@I think I saw Fishlegs around the [c][3eebff]Wilderness[/c][ffffff]! </Text><ID>942242</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh hello {{Name}}! The Night Lights and I were just engaging in some new echolocation training. I’m curious if they are as adept as Toothless when it comes to navigating dark caves.</Text><ID>942243</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hiccup wants us to check in on Heyral you say? Well sure! Let’s ask around Berk to see if anyone saw which way he went. You can start with the Twins!</Text><ID>942244</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 7649 + Summer2022Story01T04 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You better give it your all on this swing sis. We need to be sure these helmets are battle-ready! Oh wait, it’s just you {{Name}}.</Text><ID>942246</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Tuffnut at the Docks</Text><ID>942245</ID></Title><Desc><Text>Find Tuffnut at the Docks</Text><ID>942245</ID></Desc></Data> + 0 + false + + + 7650 + Summer2022Story01T05 + <Data><Setup><Scene>BerkDocksDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_Tuffnut</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Hold that thought {{Name}}! I’m expecting a sneak attack from Ruffnut at any moment, so all my mental facilities must be dedicated to remaining focused and alert! I’ll have time to chat after she makes her move, but for now I must remain vigilant!</Text><ID>942251</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]What if I help you find Ruffnut?[/c][ffffff][/i]</Text><ID>942252</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Then I could finally get the drop on her! @@Help me find her and we can talk about whatever you want.</Text><ID>942253</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Okay, let’s look around together. Why are you trying to sneak up on each other anyway?[/c][ffffff][/i]</Text><ID>942254</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>We are ensuring these new helmets are up to code by walloping each other with maces when we least expect it. Gotta be ready for ambushes after all!</Text><ID>942255</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Of course you are... Wait what is that poking out from behind that (bush)?[/c][ffffff][/i]</Text><ID>942256</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Ha nice try Ruff! But {{Name}} helped me see through your clever camouflage. Come out with your mace in the air!</Text><ID>942256</ID><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RuffnutBush</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair></Objective><Type>Escort</Type><Title><Text>Help Tuffnut find Ruffnut</Text><ID>942247</ID></Title><Desc><Text>{{Input}} on Tuffnut to help him find Ruffnut</Text><ID>942248</ID></Desc><Reminder><Text>Find Ruffnut! Keep Tuffnut nearby!</Text><ID>942249</ID></Reminder><Failure><Text>You left Tuffnut behind! He's not the brightest y'know. Be a little more careful next time!</Text><ID>942250</ID></Failure></Data> + 0 + false + + + 7651 + Summer2022Story01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Okay, okay, you got me.</Text><ID>942257</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Weren’t you supposed to ambush Ruffnut?[/c][ffffff][/i]</Text><ID>942258</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Drat, I totally forgot about that part. Ruff how about you go back in that bush and look the other way for a second.</Text><ID>942259</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>No way! Besides, why do you get to have {{Name}} help you. That’s unfair!</Text><ID>942260</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Oh, that reminds me {{Name}} had something they wanted to talk about.</Text><ID>942261</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Yes! Have either of your seen Headmaster Heyral recently?[/c][ffffff][/i]</Text><ID>942262</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The Headmaster? Sorry, haven’t seen him.</Text><ID>942263</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Well, except for that time we saw the Headmaster sail off with Eret.</Text><ID>942264</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Oh yeah, that’s right! He was raving about [c][3eebff]Mudraker Island[/c][ffffff]. But they sailed off a couple of days ago.</Text><ID>942265</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Uh, Tuff, that was a couple of minutes ago... Maybe we should take a break on the helmet testing for now...</Text><ID>942266</ID><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Don’t tell me you are getting soft on me now!</Text><ID>942267</ID><ItemID>0</ItemID><Priority>6</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Lulled me into a false sense of security huh? Well... </Text><ID>942268</ID><ItemID>0</ItemID><Priority>7</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>938852</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 7652 + Summer2022Story01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Lulled me into a false sense of security huh? Well... played... </Text><ID>942269</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Say why are there three Fishlegs floating around over there? @@{{Name}} you better get over there and stop them from multiplying anymore!</Text><ID>942270</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There you are {{Name}}! Snotlout was no luck. How did it go with the twins? </Text><ID>942271</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>[i]Playyyed![/i]</Text><ID>942272</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942422</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thor have mercy... @@[c][3eebff]Mudraker Island[/c][ffffff]? Oh no! Heather warned me about unpredictable storms in that area, we need to hurry up and catch up with them. @@I’ll round up Dart, Pouncer, and Ruffrunner.</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942423</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Get going to [c][3eebff]Mudraker Island[/c][ffffff] and we will meet you there. We need to find the Headmaster and Eret before that storm does!</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Fishlegs</Text><ID>920835</ID></Title><Desc><Text>Talk to Fishlegs</Text><ID>920835</ID></Desc></Data> + 0 + false + + + 7653 + Summer2022Story01T08 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>What are you doing here {{Name}}?! I know it was rude of me to take off in such a hurry, but I had important personal matters that needed attending to.</Text><ID>942275</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Can’t you see they were worried about you?</Text><ID>942276</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We were all worried! There have been reports of dangerous weather in this area, so Hiccup wanted us to make sure you both stayed safe.</Text><ID>942277</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I appreciate the concern, but I have no time to wait until the storm passes. An old friend of mine Sunflower, the last Nadder I ever tussled with during my days as a Dragon Hunter, nests on this Island. </Text><ID>942278</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Back when we first met, I was known as Heyral the Bloodthirsty, traveling across the archipelago to wipe out all the dragons that threatened Berk. @@After a fierce battle between Sunny and myself, I hesitated to deliver the final blow upon seeing her nest of hatchlings.</Text><ID>942279</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I had set down my hunting axe for good that day, realizing Sunny was only defending her home, just as I was defending Berk. But when I saw a piece of that very same axe today... Well, I just knew she was in danger. </Text><ID>942280</ID><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>MudrakerIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Headmaster Heyral</Text><ID>942273</ID></Title><Desc><Text>Find Headmaster Heyral</Text><ID>942273</ID></Desc></Data> + 0 + false + + + 7655 + Summer2022Story01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We have no choice, there are too many of them! Quick, let’s retreat into that incoming storm.</Text><ID>942282</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It looks less dangerous than those new dragons, and maybe the Night Lights can help lead us through safely with their echolocation!</Text><ID>942283</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Storm</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Retreat into the Approaching Storm</Text><ID>942281</ID></Title><Desc><Text>Retreat into the Approaching Storm</Text><ID>942281</ID></Desc></Data> + 0 + false + + + 7669 + Summer2022Story01T11 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer01T11CS.unity3d/PfGrp2022Summer01T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]How long was I out... and where am I? {{dragon name}}? I should have a look around, maybe they were stranded here.[/c][ffffff][/i]</Text><ID>942284</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Oh no, it’s one of those new dragons! Fishlegs thought they might be a cross between a Goregutter and a Deathgripper... @@So I guess that would make it a Goregripper?[/c][ffffff][/i]</Text><ID>942285</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942424</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]But this one doesn’t look so scary anymore. He looks... tired and old. And it seems his leg was scorched by lighting...[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_RemoteExplore</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_RemoteExplore</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Explore the Island</Text><ID>929592</ID></Title><Desc><Text>Explore the Island</Text><ID>929592</ID></Desc></Data> + 0 + false + + + 7670 + Summer2022Story01T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]If Hiccup were here, he would take care of this dragon. Poor thing must be hungry... I should find him some fish to help it recover![/c][ffffff][/i]</Text><ID>942287</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]That should do it! Now to figure out how to safely feed that Goregripper...[/c][ffffff][/i]</Text><ID>942288</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Fishing</Value></Pair><Pair><Key>Name</Key><Value>PfFishPerchDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Catch a Perch for the Goregripper</Text><ID>942465</ID></Title><Desc><Text>Catch a Perch for the Goregripper</Text><ID>942465</ID></Desc></Data> + 0 + false + + + 7671 + Summer2022Story01T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]This poor dragon is still agitated. I should approach him as slowly as possible.[/c][ffffff][/i]</Text><ID>942290</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Uh oh, looks like he is a bit nervous. It's okay, I’m coming over there nice and slow.[/c][ffffff][/i]</Text><ID>942291</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGoregripperInjured</Value></Pair><Pair><Key>Name</Key><Value>PfDWGoregripperInjured</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the Goregripper</Text><ID>942289</ID></Title><Desc><Text>Return to the Goregripper</Text><ID>942289</ID></Desc></Data> + 0 + false + + + 7672 + Summer2022Story01T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Gotta move a bit closer, but I need to be careful not to startle that Goregripper....[/c][ffffff][/i]</Text><ID>942293</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]It’s alright, there’s no need to worry. Look, I even have a tasty fish just for you![/c][ffffff][/i]</Text><ID>942294</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWGoregripperInjured</Value></Pair><Pair><Key>Name</Key><Value>PfDWGoregripperInjured</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Goregripper</Text><ID>942292</ID></Title><Desc><Text>Approach the Goregripper</Text><ID>942292</ID></Desc></Data> + 0 + false + + + 7673 + Summer2022Story01T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]That right, you can relax. I don’t mean you any harm. [/c][ffffff][/i]</Text><ID>942296</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]There you go, eat up. That will help you regain your strength![/c][ffffff][/i]</Text><ID>942297</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942425</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]A big bruiser like you should have a name just as intimidating as you are. Hmmm... how about Wartooth?[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Feed the Goregripper</Text><ID>942295</ID></Title><Desc><Text>Feed the Goregripper</Text><ID>942295</ID></Desc></Data> + 0 + false + + + 7674 + Summer2022Story01T16 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer01T16CS.unity3d/PfGrp2022Summer01T16CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Wow, thanks for the save there Wartooth! But I don’t think we are out of the woods yet. Let’s fend them off, together! + [/c][ffffff][/i]</Text><ID>942299</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Fierce fighting there! We drove off that first wave, but looks like there are still some more on the horizon...[/c][ffffff][/i]</Text><ID>942300</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanRemoteDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_DragonTactics</Value></Pair><Pair><Key>Name</Key><Value>STRemoteIsland01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defend Yourself from the Skrill</Text><ID>942298</ID></Title><Desc><Text>Defend Yourself from the Skrill</Text><ID>942298</ID></Desc></Data> + 0 + false + + + 7675 + Summer2022Story01T17 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There you are {{Name}}! Looks like we are just in time to help you send these Skrill packing. @@The Night Lights and I kept an eye on {{dragon name}} after you two were separated. Let’s reconvene and discuss how to find the others.</Text><ID>942302</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>First, we are ambushed by riders on these new dragons and now these aggressive Skrill? What in Thor’s name is going on?!</Text><ID>942303</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, at least it looks like you made a new friend through all the chaos.</Text><ID>942304</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942426</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Yeah! This poor Goregripper was stranded just like me, so we’ve been helping each other out.[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942427</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Goregripper... That name is perfect! Totally using that for their dragon card. @@Now how will we find- Oh look! There’s the Headmaster and Eret!</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Reunite with Fishlegs</Text><ID>942301</ID></Title><Desc><Text>Reunite with Fishlegs</Text><ID>942301</ID></Desc></Data> + 0 + false + + + 7676 + Summer2022Story01T18 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer01T18CS.unity3d/PfGrp2022Summer01T18CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942462</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Although I am relieved to see you are all safe, Eret and I received some troubling news...[c][3eebff]Berk Docks[/c][ffffff] is under attack! </Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942463</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>As we sailed through the storm, a tenacious little Terrible Terror managed to find us through the gales. It carried a message from Hiccup recalling all forces immediately. [c][3eebff]Berk Docks[/c][ffffff] is under attack! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Headmaster Heyral</Text><ID>942305</ID></Title><Desc><Text>Talk to Headmaster Heyral</Text><ID>942305</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207723 + true + 75 + 75 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 207723 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207723 + true + 50 + 50 + + 0 + +
+ + 100 +

6

+ 20315 + + 1 + 10064 + 207723 + true + 100 + 100 + + 0 + +
+ false +
+ + 3091 + Summer2022Story02 + 4 +

+ <Data><Setup><Scene>BerkDocksNightDO</Scene><Asset>RS_DATA/PfGrp2022Summer02T00.unity3d/PfGrp2022Summer02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksNightDO</Scene><Asset>RS_DATA/PfGrp2022Summer02T07.unity3d/PfGrp2022Summer02T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksNightDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Viking’s Berk is Never Done [2022]</Text></Title><Icon>RS_DATA/DragonsSummerIcons/IcoDWDragonsWarlordPlans</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3081 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3091 + 7677 + 0 + + + 1 + 3091 + 7678 + 0 + + + 1 + 3091 + 7679 + 0 + + + 1 + 3091 + 7680 + 0 + + + 1 + 3091 + 7681 + 0 + + + 1 + 3091 + 7682 + 0 + + + 2 + 3091 + 3092 + 0 + + + 1 + 3091 + 7684 + 0 + + + + 1 + 207724 + 0 + + 3092 + Summer2022Story02T07 + 4 +

3091

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><ID>942455</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Nice shooting {{Name}} I think we scared them off!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Defend the Docks</Text><ID>942166</ID></Title><Desc><Text>Defend the Docks</Text><ID>942166</ID></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 3 + + 1 + 3092 + 7683 + 0 + + + + 1 + 0 + 0 + + 7683 + Summer2022Story02T07 + <Data><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfWarlordTargetable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Defend the Docks</Text><ID>942166</ID></Title><Desc><Text>Defend the Docks</Text><ID>942166</ID></Desc></Data> + 0 + false + + false + + + 7677 + Summer2022Story02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Astrid and Stormfly are already setting up our defenses, Toothless and I will try to hold off the invaders by the dock while you help them!</Text><ID>942309</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer02T01CS.unity3d/PfGrp2022Summer02T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Stormfly? Oh no, what did that dragon do to you girl? Something is wrong with her!</Text><ID>942310</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BerkDocksCliff</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Help Astrid and Stormfly</Text><ID>942308</ID></Title><Desc><Text>Help Astrid and Stormfly</Text><ID>942308</ID></Desc></Data> + 0 + false + + + 7678 + Summer2022Story02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Easy girl it’s me! It’s still me! She’s so angry it’s like she doesn’t even hear me.</Text><ID>942312</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, don’t just stand there {{Name}}! If you want to help, find a way to lead Stormfly towards the Lake and I’ll meet you there. I have an idea.</Text><ID>942313</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]That seemed to get her attention![/c][ffffff][/i]</Text><ID>942314</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDistractTargetableA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Distract Stormfly</Text><ID>942311</ID></Title><Desc><Text>Distract Stormfly</Text><ID>942311</ID></Desc></Data> + 0 + false + + + 7679 + Summer2022Story02T03 + <Data><Setup><Scene>BerkDocksNightDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]I just have to keep guiding Stormfly by lighting things ablaze. There must be something else we can get her attention with nearby.[/c][ffffff][/i]</Text><ID>942315</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]There we go! That’s right Stormfly, keep heading this way![/c][ffffff][/i]</Text><ID>942316</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDistractTargetableB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Distract Stormfly</Text><ID>942311</ID></Title><Desc><Text>Distract Stormfly</Text><ID>942311</ID></Desc></Data> + 0 + false + + + 7680 + Summer2022Story02T04 + <Data><Setup><Scene>BerkDocksNightDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_Astrid01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]One more blast ought to do it![/c][ffffff][/i]</Text><ID>942317</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Nice work {{Name}}! It’s okay girl, I’m right here. Eat some of this sage fruit, it will help you relax.</Text><ID>942318</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDistractTargetableC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Distract Stormfly</Text><ID>942311</ID></Title><Desc><Text>Distract Stormfly</Text><ID>942311</ID></Desc></Data> + 0 + false + + + 7681 + Summer2022Story02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Stormfly has finally calmed down, but she really wore herself out. I can’t leave her defenseless like this, but the docks will be overrun if we don’t do something.</Text><ID>942320</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I’ll protect Stormfly while you give Fishlegs a hand holding off the Warlords at the docks!</Text><ID>942321</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfDockRamp</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Rush to the Docks</Text><ID>942319</ID></Title><Desc><Text>Rush to the Docks</Text><ID>942319</ID></Desc></Data> + 0 + false + + + 7682 + Summer2022Story02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}, we could sure use your help over here!</Text><ID>942323</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>The Dragon Riders and the Night Lights have been trying to fend off the Warlords, but we need your help blasting them before they can cross the docks.</Text><ID>942324</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Good luck {{Name}}, we are counting on you! Meatlug and I will act as the last line of defense up here while you blast them away!</Text><ID>942429</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWMeatlugFishlegsRider</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>FishlegsClickable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Fishlegs to make a Plan of Attack</Text><ID>942466</ID></Title><Desc><Text>{{Input}} on Fishlegs to make a Plan of Attack</Text><ID>942466</ID></Desc></Data> + 0 + false + + + 7684 + Summer2022Story02T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh no, is that Griselda the Grievous? That lady is intense, she really scares me!</Text><ID>942326</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942430</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I can’t see anything from here... take to the sky with {{dragon name}} and see if you can get a better look!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer02T08CS.unity3d/PfGrp2022Summer02T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>BerkDocksNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HighGround</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a Better Vantage Point</Text><ID>942325</ID></Title><Desc><Text>Find a Better Vantage Point</Text><ID>942325</ID></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 207724 + true + 100 + 100 + + 0 + +
+ + 75 +

12

+ 0 + + 1 + 2518 + 207724 + true + 75 + 75 + + 0 + +
+ + 175 +

8

+ 0 + + 1 + 2802 + 207724 + true + 175 + 175 + + 0 + +
+ + 200 +

6

+ 20315 + + 1 + 10065 + 207724 + true + 200 + 200 + + 0 + +
+ false +
+ + 3093 + Summer2022Story03 + 4 +

+ <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>RS_DATA/PfGrp2022Summer03T00A.unity3d/PfGrp2022Summer03T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Hope for the Nest, Prepare for the Worst [2022]</Text></Title><Icon>RS_DATA/DragonsSummerIcons/IcoDWDragonsWarlordPlans</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3091 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3093 + 7685 + 0 + + + 1 + 3093 + 7686 + 0 + + + 1 + 3093 + 7687 + 0 + + + 1 + 3093 + 7688 + 0 + + + 1 + 3093 + 7689 + 0 + + + 1 + 3093 + 7690 + 0 + + + 1 + 3093 + 7691 + 0 + + + 2 + 3093 + 3094 + 0 + + + 1 + 3093 + 7693 + 0 + + + + 1 + 207725 + 0 + + 3094 + Summer2022Story03T08 + 4 +

3093

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3094 + 7692 + 0 + + + + 1 + 207730 + 0 + + 7692 + Summer2022Story03T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I heard the twins are handling the next task. You should be able to find them around [c][3eebff]Dragon’s Edge[/c][ffffff]!</Text><ID>942328</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You can tell Hiccup we are all finished with that Warlord Disguise! I’m sure Alvin won’t miss this armor... </Text><ID>942329</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDragonsEdgeDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Collect a Disguise from the Twins</Text><ID>942327</ID></Title><Desc><Text>Collect a Disguise from the Twins</Text><ID>942327</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 20343 + + 1 + 10105 + 207730 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 20347 + + 1 + 10106 + 207730 + true + 1 + 1 + + 0 + +
+ false + + + 7685 + Summer2022Story03T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupConversationWithHeadmaster</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>BerkDocksNightDO</Scene><Asset>PfDWHeadmaster</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}} Headmaster Heyral and I would like a word, we can meet up by the [c][3eebff]School[/c][ffffff].</Text><ID>942330</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>We got careless, and now Astrid and Stormfly are paying the price... I have the inklings of a plan coming together, but I’ll need your help! First, we have to scout out the Warlord’s new outpost.</Text><ID>942331</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Is there anything I can do to help Hiccup? I feel terrible they were able to lure us away and capture Astrid and Stormfly. I just knew I had to help Sunny.</Text><ID>942332</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942431</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It’s okay Heyral, I would have done the same. @@We all care about Astrid, but when I start to worry about her, I remind myself she’s the toughest Viking Berk has ever produced. Thor only knows what will happen if they hurt Stormfly!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Headmaster Heyral</Text><ID>942305</ID></Title><Desc><Text>Talk to Headmaster Heyral</Text><ID>942305</ID></Desc></Data> + 0 + false + + + 7686 + Summer2022Story03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>First, we need to scout out the [c][3eebff]Warlord Outpost[/c][ffffff] to see what we are up against. @@Keep an eye out for the Goregrippers they’ve been training and any dragon holding areas where they might have Astrid locked up. @@And be sure to not get too close!</Text><ID>942334</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer03T02CS.unity3d/PfGrp2022Summer03T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]So the Warlords have been training the Goregrippers to fight against all kinds of dragons. No wonder Wartooth was so exhausted.[/c][ffffff][/i]</Text><ID>942335</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Seems they are keeping all of the captured dragons in those cages scattered around the Island. Astrid, Stormfly, and Sunny must be in one of those![/c][ffffff][/i]</Text><ID>942336</ID><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Scout</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Scout</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Scout the Warlord's Outpost</Text><ID>942333</ID></Title><Desc><Text>Scout the Warlord's Outpost</Text><ID>942333</ID></Desc></Data> + 0 + false + + + 7687 + Summer2022Story03T03 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupConversationWithHeadmaster</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWAlchemist</Asset><Location>PfMarker_AlchemistConversationWithHeadmaster</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Better report these findings back to Hiccup before I’m spotted![/c][ffffff][/i]</Text><ID>942339</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>So, they do have cages set up across the Island! Great work on that recon mission {{Name}}, this info is just what we needed.</Text><ID>942340</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942432</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now Heather will need a hand with the next few steps of the plan!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report to Hiccup</Text><ID>942338</ID></Title><Desc><Text>Report to Hiccup</Text><ID>942338</ID></Desc></Data> + 0 + false + + + 7688 + Summer2022Story03T04 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfGrp2022Summer03T04b.unity3d/PfGrp2022Summer03T04b</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>PfDWAlchemist</Asset><Location>PfMarker_AlchemistConversationWithHeadmaster</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Hey there {{Name}}! Hiccup has me making glue from Milk, Honey and a touch of Death Song Amber for durability. Could you grab me some more Yak's Milk from the farm at [c][3eebff]The Lookout[/c][ffffff]?</Text><ID>942342</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Now to bring this to Heather![/c][ffffff][/i]</Text><ID>942343</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectYakMilk</Value></Pair><Pair><Key>Name</Key><Value>PfCollectYakMilk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect Yak Milk at The Lookout</Text><ID>942341</ID></Title><Desc><Text>Collect Yak Milk at The Lookout</Text><ID>942341</ID></Desc></Data> + 0 + false + + + 7689 + Summer2022Story03T05 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Thank you for fetching that!</Text><ID>942345</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>ItemID</Key><Value>8626</Value></Pair><Pair><Key>ItemDescription</Key><Value>Yak’s Milk</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Drop off milk for Heather at the School </Text><ID>942344</ID></Title><Desc><Text>Drop off milk for Heather at the School </Text><ID>942344</ID></Desc></Data> + 0 + false + + + 7690 + Summer2022Story03T06 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2022Summer03T06.unity3d/PfGrp2022Summer03T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Next up, I’ll need to procure a sample of Goregripper Venom from your new friend. Would you mind tagging along? That dragon really seems to trust you!</Text><ID>942347</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>I sure am glad you stuck around, Wartooth here kept giving me a suspicious look. I doubt he would have been as cooperative without you by his side.</Text><ID>942348</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942433</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Fishlegs will be excited to help me study this sample we collected and learn more about our new hybrid dragon.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>GoregripperVenomHarvest</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>GoregripperVenomHarvest</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Harvest Goregripper Venom</Text><ID>942346</ID></Title><Desc><Text>Harvest Goregripper Venom</Text><ID>942346</ID></Desc></Data> + 0 + false + + + 7691 + Summer2022Story03T07 + <Data><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrp2022Summer03T07.unity3d/PfGrp2022Summer03T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Over here {{Name}}, I finished my part!</Text><ID>942350</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>I checked the temperatures and wrote down all the measurements just as Hiccup instructed.</Text><ID>942351</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942434</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>The weather seems to be dying down, so we should have smooth sailing- or rather flying conditions for our mission!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check-in with the Headmaster about the Weather</Text><ID>942349</ID></Title><Desc><Text>Check-in with the Headmaster about the Weather</Text><ID>942349</ID></Desc></Data> + 0 + false + + + 7693 + Summer2022Story03T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Come on Ruff, Hiccup said to meet him back at the [c][3eebff]School[/c][ffffff] once we were finished. See you there {{Name}}!</Text><ID>942353</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks for all of your help {{Name}}. Now that the last of the preparations are complete, we are ready to get this plan underway!</Text><ID>942354</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Reconvene with Hiccup</Text><ID>942352</ID></Title><Desc><Text>Reconvene with Hiccup</Text><ID>942352</ID></Desc></Data> + 0 + false + + + 150 +

2

+ 0 + + 1 + 26 + 207725 + true + 150 + 150 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 207725 + true + 200 + 200 + + 0 + +
+ + 100 +

12

+ 0 + + 1 + 1157 + 207725 + true + 100 + 100 + + 0 + +
+ + 300 +

6

+ 20315 + + 1 + 10066 + 207725 + true + 300 + 300 + + 0 + +
+ false +
+ + 3095 + Summer2022Story04 + 46 +

+ <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>RS_DATA/PfGrp2022Summer04T00.unity3d/PfGrp2022Summer04T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>RS_DATA/PfGrp2022Summer04T02.unity3d/PfGrp2022Summer04T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubTrainingDO</Scene><Asset>RS_DATA/PfGrp2022Summer04T00A.unity3d/PfGrp2022Summer04T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Scalebreak [2022]</Text></Title><Icon>RS_DATA/DragonsSummerIcons/IcoDWDragonsWarlordPlans</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3093 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3095 + 7708 + 0 + + + 1 + 3095 + 7694 + 0 + + + 1 + 3095 + 7695 + 0 + + + 1 + 3095 + 7696 + 0 + + + 1 + 3095 + 7697 + 0 + + + 1 + 3095 + 7698 + 0 + + + 1 + 3095 + 7699 + 0 + + + 1 + 3095 + 7700 + 0 + + + 1 + 3095 + 7701 + 0 + + + 2 + 3095 + 3096 + 0 + + + 1 + 3095 + 7703 + 0 + + + 1 + 3095 + 7704 + 0 + + + 2 + 3095 + 3097 + 0 + + + 2 + 3095 + 3098 + 0 + + + 1 + 3095 + 7707 + 0 + + + + 1 + 207726 + 0 + + 3096 + Summer2022Story04T09 + 46 +

3095

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}, blast those Gronckle War Machines to pieces!</Text><ID>942456</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 4 + + 1 + 3096 + 7702 + 0 + + + + 1 + 0 + 0 + + 7702 + Summer2022Story04T09 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWWarMachineGronckle</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Destroy the Gronckle War Machines</Text><ID>942355</ID></Title><Desc><Text>Destroy the Gronckle War Machines</Text><ID>942355</ID></Desc></Data> + 0 + false + + false + + + 3097 + Summer2022Story04T12 + 46 +

3095

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What on earth! A Matriarchal Goregripper? She’s massive! And sure looks nasty... But if we take her down, the others should clear out!</Text><ID>942457</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Looks like she has thicker armor than the typical Goregripper! @@Maybe if we blast the weak spots between her scales first we can wear down her defenses.</Text><ID>942385</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Repeat>1</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Looks like that did it!</Text><ID>942458</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer04T13CS.unity3d/PfGrp2022Summer04T13CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 3097 + 7705 + 0 + + + + 1 + 0 + 0 + + 7705 + Summer2022Story04T12 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfGoregripperTargetableA</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Weaken the Warlord's Goregripper</Text><ID>942356</ID></Title><Desc><Text>Weaken the Warlord's Goregripper</Text><ID>942356</ID></Desc></Data> + 0 + false + + false +
+ + 3098 + Summer2022Story04T13 + 46 +

3095

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Time to finish this everyone! Let’s hit that Goregripper with everything we’ve got!</Text><ID>942387</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 3 + + 1 + 3098 + 7706 + 0 + + + + 1 + 0 + 0 + + 7706 + Summer2022Story04T13 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfGoregripperTargetableB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>Knock out the Warlord's Goregripper</Text><ID>942357</ID></Title><Desc><Text>Knock out the Warlord's Goregripper</Text><ID>942357</ID></Desc></Data> + 0 + false + + false +
+ + 7694 + Summer2022Story04T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Hiccup says the Dragon Riders are all in position. Head over to the [c][3eebff]Warlord Outpost[/c][ffffff] and we can get this infiltration underway!</Text><ID>942399</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]There they are, time to blend in with the crowd.[/c][ffffff][/i]</Text><ID>942400</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Warlord's Outpost</Text><ID>942358</ID></Title><Desc><Text>Go to the Warlord's Outpost</Text><ID>942358</ID></Desc></Data> + 0 + false + + + 7695 + Summer2022Story04T02 + <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWWarlordGoregripperRider</Asset><Location>PfMarker_WGR01Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWWarlordGoregripperRider02</Asset><Location>PfMarker_WGR02Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWWarlordGoregripperRider03</Asset><Location>PfMarker_WGR03Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Better not break formation here Wartooth, we don’t want to arouse any suspicion.[/c][ffffff][/i]</Text><ID>942403</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Hiccup’s plan worked![/c][ffffff][/i]</Text><ID>942404</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer04T02CS.unity3d/PfGrp2022Summer04T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WGREnd</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>30</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWarlordGoregripperRider</Value></Pair><Pair><Key>Spline</Key><Value>WarlordRider01A</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Warlord Riders and Follow them to Infiltrate the Outpost</Text><ID>942464</ID></Title><Desc><Text>{{Input}} on the Warlord Riders and Follow them to Infiltrate the Outpost</Text><ID>942464</ID></Desc><Reminder><Text>Stick close to the Warlord Riders when flying into the Outpost!</Text><ID>942401</ID></Reminder><Failure><Text>The Warlords caught you trying to sneak in... go back and try again!</Text><ID>942402</ID></Failure></Data> + 0 + false + + + 7696 + Summer2022Story04T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Now, where are those dragons?[/c][ffffff][/i]</Text><ID>942405</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Time to free these trapped dragons![/c][ffffff][/i]</Text><ID>942406</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WarlordDragonCages</Value></Pair><Pair><Key>Name</Key><Value>PfWarlordDragonCages</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search the Island for Dragon Cages</Text><ID>942360</ID></Title><Desc><Text>Search the Island for Dragon Cages</Text><ID>942360</ID></Desc></Data> + 0 + false + + + 7697 + Summer2022Story04T04 + <Data><Offer><Type>Popup</Type><ID>942436</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Looks like the hinges of these cages aren’t dragon proof. Come on Wartooth, let’s blast off these doors![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942437</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]You’re free now little guys![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>CageTarget_7697</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free the Caged Dragons</Text><ID>942361</ID></Title><Desc><Text>Free the Caged Dragons</Text><ID>942435</ID></Desc></Data> + 0 + false + + + 7698 + Summer2022Story04T05 + <Data><Offer><Type>Popup</Type><ID>942438</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]More hatchlings still need to be freed![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942439</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Go on, fly to safety![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>CageTarget_7698</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free the Caged Dragons</Text><ID>942362</ID></Title><Desc><Text>Free the Caged Dragons</Text><ID>942435</ID></Desc></Data> + 0 + false + + + 7699 + Summer2022Story04T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Just one last cage of dragons to go![/c][ffffff][/i]</Text><ID>942407</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Fishlegs would be proud! Now to find Astrid...[/c][ffffff][/i]</Text><ID>942408</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>CageTarget_7699</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Free the Caged Dragons</Text><ID>942363</ID></Title><Desc><Text>Free the Caged Dragons</Text><ID>942435</ID></Desc></Data> + 0 + false + + + 7700 + Summer2022Story04T07 + <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_2022AstridBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWStormfly</Asset><Location>PfMarker_2022StormflyBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well, what took you so long?</Text><ID>942409</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Summer2022AstridStormfly</Value></Pair><Pair><Key>Name</Key><Value>PfSummer2022AstridStormfly</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Astrid and Stormfly</Text><ID>942364</ID></Title><Desc><Text>Look for Astrid and Stormfly</Text><ID>942364</ID></Desc></Data> + 0 + false + + + 7701 + Summer2022Story04T08 + <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_2022AstridBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWStormfly</Asset><Location>PfMarker_2022StormflyBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Oh so that's the plan? Great. I will take out as many as I can out here, head to the compound entrance! @@Don’t worry, tell Hiccup I will catch up once I’m finished.</Text><ID>942410</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer04T08CS.unity3d/PfGrp2022Summer04T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SummarhildrOutpostEntryway</Value></Pair><Pair><Key>Name</Key><Value>PfSummarhildrOutpostEntryway</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Rush the Warlords and take them by Surprise!</Text><ID>942365</ID></Title><Desc><Text>Rush the Warlords and take them by Surprise!</Text><ID>942365</ID></Desc></Data> + 0 + false + + + 7703 + Summer2022Story04T10 + <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_2022AstridBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWStormfly</Asset><Location>PfMarker_2022StormflyBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>There you are {{Name}}! Seems everything is going to plan so far. And look, there’s Sunny! @@Give me a hand opening this cage, will you?</Text><ID>942411</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Sunny! I’m so relieved to see you are okay lass. @@I know you want to see your hatchlings, but I have a feeling we are going to need your help first.</Text><ID>942412</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Help Heyral free Sunny</Text><ID>942366</ID></Title><Desc><Text>Help Heyral free Sunny</Text><ID>942366</ID></Desc></Data> + 0 + false + + + 7704 + Summer2022Story04T11 + <Data><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_2022AstridBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWarlordIslandDO</Scene><Asset>PfDWStormfly</Asset><Location>PfMarker_2022StormflyBreakout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>So, the Berkians have finally caught on. Well, since you made it this far, allow me to show you firsthand how we command the Goregrippers with such ease!</Text><ID>942413</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>I molded this Matriarchal Goregripper into the perfect weapon. She was stubborn and needed some... reeducation... but I sharpened her just like I would any sword. And now, she heeds only my words...</Text><ID>942440</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>Go forth beast, and put an end to their interference once and for all!</Text><ID>942414</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer04T11CS.unity3d/PfGrp2022Summer04T11CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Summer2022GriseldaBattle</Value></Pair><Pair><Key>Name</Key><Value>PfSummer2022GriseldaBattle</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Confront Griselda</Text><ID>941403</ID></Title><Desc><Text>Confront Griselda</Text><ID>941403</ID></Desc></Data> + 0 + false + + + 7707 + Summer2022Story04T14 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer04T14ACS.unity3d/PfGrp2022Summer04T14ACS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I think this dragon has had enough. Well done everyone, that should give the Warlords something to think about next time they try to mess with Berk! @@ Now, where is- Astrid!</Text><ID>942442</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Hiccup! You sure took your time getting here.</Text><ID>942416</ID><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, I had to make sure the plan was airtight. Besides, I had a hunch you’d break yourself out before we even arrived.</Text><ID>942417</ID><ItemID>0</ItemID><Priority>3</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>At least you know better than to underestimate me.</Text><ID>942418</ID><ItemID>0</ItemID><Priority>4</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, I do. Although it seems the Warlords had to learn that lesson the hard way.</Text><ID>942443</ID><ItemID>0</ItemID><Priority>5</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Happy to see you safe and sound Astrid! And Sunny, you were so brave in that battle. As was that Goregripper friend of yours {{Name}}!</Text><ID>942444</ID><ItemID>0</ItemID><Priority>6</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>As much as I hate to break up the celebration, we should probably do something about Griselda before she gets away!</Text><ID>942445</ID><ItemID>0</ItemID><Priority>7</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>No, no, no... we can still fight...</Text><ID>942446</ID><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>About that, we Thorston Twins took things into our own hands. </Text><ID>942447</ID><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>That’s right! We’ve got Ragnar and Khan right here, there’s no escaping now.</Text><ID>942448</ID><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>By Odin’s beard! Ruff, Tuff, you grabbed the wrong guys! </Text><ID>942449</ID><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWarlordSlavicFemale</NPC><Text>Hahahaha, this isn’t over yet Dragon Riders...</Text><ID>942450</ID><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Summer04T14CS.unity3d/PfGrp2022Summer04T14CS</Asset><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWarlordIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Summer2022CaptureGriselda</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Summer2022CaptureGriselda</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Griselda and the Goregripper</Text><ID>942367</ID></Title><Desc><Text>Go to Griselda and the Goregripper</Text><ID>942441</ID></Desc></Data> + 0 + false + + + 7708 + Summer2022Story04T00 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Time to put the plan into motion. All that’s left now is to put on that disguise the Twins whipped up, and we will be ready for action!</Text><ID>942419</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWEret</NPC><Text>Looking sharp!</Text><ID>942420</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTrainingDO</Value></Pair><Pair><Key>Name</Key><Value>EquipItem</Value></Pair><Pair><Key>ItemName</Key><Value>Warlord Disguise</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Equip your Disguise</Text><ID>942368</ID></Title><Desc><Text>Equip your Disguise</Text><ID>942368</ID></Desc></Data> + 0 + false + + + 200 +

2

+ 0 + + 1 + 29 + 207726 + true + 200 + 200 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 207726 + true + 200 + 200 + + 0 + +
+ + 100 +

12

+ 0 + + 1 + 1157 + 207726 + true + 100 + 100 + + 0 + +
+ + 400 +

6

+ 20315 + + 1 + 10067 + 207726 + true + 400 + 400 + + 0 + +
+ false +
+ + 3099 + DreadfallMaze 2022 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dreadfall Maze 2022 T01</Text></Title></Data> + false + 0 + + + 5 + 08-01-2022 18:59:59,11-08-2022 18:59:59 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3099 + 7714 + 0 + + + + 1 + 207738 + 0 + + 7714 + DreadfallMaze2022T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeRewardChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the Chest!</Text><ID>942467</ID></Title></Data> + 0 + false + + + 300 +

6

+ 20410 + + 1 + 10162 + 207738 + true + 300 + 300 + + 0 + + + false +
+ + 3100 + DreadfallMaze 2022 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Dreadfall Maze 2022 T02</Text></Title></Data> + false + 0 + + + 5 + 08-01-2022 18:59:59,11-08-2022 18:59:59 + 0 + false + + + 3 + 3099 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3100 + 7715 + 0 + + + + 1 + 207739 + 0 + + 7715 + DreadfallMaze2022T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeDreadfallDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeRewardChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the Chest!</Text><ID>942467</ID></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207739 + true + 50 + 50 + + 0 + + + false +
+ + 3101 + Dreadfall2022Story01 + 61 +

+ <Data><Setup><Scene>DarkDeepDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall01T00A.unity3d/PfGrp2022Dreadfall01T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>DarkDeepCavesDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall01T00B.unity3d/PfGrp2022Dreadfall01T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>One Foot in the Cave [2022]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20907 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3101 + 7716 + 0 + + + 1 + 3101 + 7717 + 0 + + + 1 + 3101 + 7718 + 0 + + + 1 + 3101 + 7719 + 0 + + + 1 + 3101 + 7720 + 0 + + + 1 + 3101 + 7721 + 0 + + + 1 + 3101 + 7722 + 0 + + + 1 + 3101 + 7723 + 0 + + + 1 + 3101 + 7724 + 0 + + + 1 + 3101 + 7725 + 0 + + + 1 + 3101 + 7726 + 0 + + + 1 + 3101 + 7727 + 0 + + + 1 + 3101 + 7728 + 0 + + + 1 + 3101 + 7729 + 0 + + + 1 + 3101 + 7730 + 0 + + + + 1 + 207740 + 0 + + 7716 + Dreadfall2022Story01T01 + <Data><Offer><Type>Popup</Type><ID>942485</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Happy Dreadfall {{Name}}! If you’re feeling festive, you should swing by [c][3eebff]Dark Deep[/c][ffffff].@@Tuffnut and I could use your help on a special project we’re putting together to celebrate the holiday!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942486</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You were wise to heed my invitation! We’ve been constructing the greatest [c][3eebff]Dreadfall Racetrack[/c][ffffff] of all time.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942487</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>It’s almost ready now, we are just putting on the finishing touches.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meetup with Ruffnut at Dark Deep</Text><ID>942484</ID></Title><Desc><Text>Meetup with Ruffnut at Dark Deep</Text><ID>942484</ID></Desc></Data> + 0 + false + + + 7717 + Dreadfall2022Story01T02 + <Data><Offer><Type>Popup</Type><ID>942489</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Since you’re here, why don’t you give Tuffnut a hand scrounging up decorations? He’s over by that cave with Chicken and Clueless. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942490</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Ahh {{Name}}, I’m sure you heard about the miraculous racetrack Ruffnut and I have been working on. Well, hold your sheep, it’s not ready quite yet!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942491</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Clueless was supposed to find some eerie decorations inside that cave, but he took too long. So naturally, I sent Chicken in there after him.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Tuffnut</Text><ID>931018</ID></Title><Desc><Text>Speak with Tuffnut </Text><ID>942488</ID></Desc></Data> + 0 + false + + + 7718 + Dreadfall2022Story01T03 + <Data><Offer><Type>Popup</Type><ID>942493</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Come to think of it, it’s been a while since I’ve seen either one of them... Maybe you could go in there and check on Chicken? Oh, and Clueless.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942494</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]This torch is still warm, it must have gone out recently.[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectCaveTorch</Value></Pair><Pair><Key>Name</Key><Value>PfCollectCaveTorch</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search for Clueless and Chicken inside the Cave</Text><ID>942492</ID></Title><Desc><Text>Search for Clueless and Chicken inside the Cave</Text><ID>942492</ID></Desc></Data> + 0 + false + + + 7719 + Dreadfall2022Story01T04 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall01T04.unity3d/PfGrp2022Dreadfall01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><End><Type>Popup</Type><ID>942496</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Can’t stop here, Clueless and Chicken need our help. Let’s keep blasting through these webs away and push forward![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfDarkDeepCavesWebBlocker_01</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>SpiderWeb01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Clear away the Spider Webs in your Path</Text><ID>942495</ID></Title><Desc><Text>Clear away the Spider Webs in your Path</Text><ID>942495</ID></Desc></Data> + 0 + false + + + 7720 + Dreadfall2022Story01T05 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall01T05.unity3d/PfGrp2022Dreadfall01T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfDarkDeepCavesWebBlocker_02</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>SpiderWeb02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Clear away the Spider Webs in your Path</Text><ID>942495</ID></Title><Desc><Text>Clear away the Spider Webs in your Path</Text><ID>942495</ID></Desc></Data> + 0 + false + + + 7721 + Dreadfall2022Story01T06 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall01T06.unity3d/PfGrp2022Dreadfall01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfDarkDeepCavesWebBlocker_03</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>SpiderWeb03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Clear away the Spider Webs in your Path</Text><ID>942495</ID></Title><Desc><Text>Clear away the Spider Webs in your Path</Text><ID>942495</ID></Desc></Data> + 0 + false + + + 7722 + Dreadfall2022Story01T07 + <Data><Offer><Type>Popup</Type><ID>942498</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Is that you {{Name}}? Thank Thor, I thought I was going to be lost in this cave forever! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942499</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Tuffnut sent me down here to find something, but I forgot what I was supposed to be looking for.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942500</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Then, when I went back up to ask him, something huge startled me! +I was so scared I dropped my torch and ran deeper into the cave.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Clueless</Text><ID>942497</ID></Title><Desc><Text>Find Clueless</Text><ID>942497</ID></Desc></Data> + 0 + false + + + 7723 + Dreadfall2022Story01T08 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_7723Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942504</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>There it is again! I’m getting out of here!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942505</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Do you think we lost it?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942506</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Oh no, I think I hear something coming around the corner!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7723End</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidB</Value></Pair><Pair><Key>Spline</Key><Value>Clueless_7723</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Clueless</Text><ID>942501</ID></Title><Desc><Text>Follow Clueless</Text><ID>942501</ID></Desc><Reminder><Text>Stick close to Clueless!</Text><ID>942502</ID></Reminder><Failure><Text>Looks like you got too far away from Clueless</Text><ID>942503</ID></Failure></Data> + 0 + false + + + 7724 + Dreadfall2022Story01T09 + <Data><Offer><Type>Popup</Type><ID>942508</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Go ahead and take a look. I’ll, um, watch your back!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall01T09CS.unity3d/PfGrp2022Dreadfall01T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942509</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWChickenTuffnut</NPC><Text>[i][c][ffb33e]Boowak![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveCorner</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Peak around the Corner</Text><ID>942507</ID></Title><Desc><Text>Peak around the Corner</Text><ID>942507</ID></Desc></Data> + 0 + false + + + 7725 + Dreadfall2022Story01T10 + <Data><Offer><Type>Popup</Type><ID>942511</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Chicken? It was just Chicken?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942512</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>This doesn’t make any sense... I’m sure I saw something way bigger than Chicken moving around down here...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall01T10CS.unity3d/PfGrp2022Dreadfall01T10CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWChickenTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Chicken</Text><ID>942510</ID></Title><Desc><Text>Talk to Chicken</Text><ID>942510</ID></Desc></Data> + 0 + false + + + 7726 + Dreadfall2022Story01T11 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_Clueless7726</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942514</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Ahhhhh I hate being right! Help!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942515</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>No need to worry {{Name}}, I was all worked up over nothing.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942516</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>It’s just my Humbanger buddy, he was so excited to see me that he practically tackled me!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CluelessCave</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Rescue Clueless!</Text><ID>942513</ID></Title><Desc><Text>Rescue Clueless!</Text><ID>942513</ID></Desc></Data> + 0 + false + + + 7727 + Dreadfall2022Story01T12 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_Clueless7726</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942518</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Aha! I just remembered why Tuffnut sent me down here, we need to find a decoration for the racetrack.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942519</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Look around, there has to be something in this creepy cave we can use.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942520</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Great idea! That huge bone is perfect. It must have belonged to one massive dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall01T12CS.unity3d/PfGrp2022Dreadfall01T12CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWDragonBone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find a Decoration for the Racetrack</Text><ID>942517</ID></Title><Desc><Text>Find a Decoration for the Racetrack</Text><ID>942517</ID></Desc></Data> + 0 + false + + + 7728 + Dreadfall2022Story01T13 + <Data><Setup><Scene>DarkDeepCavesDO</Scene><Asset>PfDWWildBoneknapperTitan</Asset><Location>PfMarker_BoneknapperTitanStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepCavesDO</Scene><Asset>PfDWChickenTuffnut</Asset><Location>PfMarker_Chicken7728</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepCavesDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall01T13.unity3d/PfGrp2022Dreadfall01T13</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>942524</ID><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfDWKidB</NPC><Text>Speaking of massive dragons... {{Name}} let’s make like chicken and fly the coop!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942525</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>I think we lost it, but let's get out of here!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepCavesDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Chase7728</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Chase7728</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>30</Value></Pair><Pair><Key>ResetMarker</Key><Value>PfMarker_ChaseReset</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>7</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWildBoneknapperTitan</Value></Pair></Objective><Type>Chase</Type><Title><Text>Run away from the Titan Boneknapper</Text><ID>942521</ID></Title><Desc><Text>Run away from the Titan Boneknapper</Text><ID>942521</ID></Desc><Reminder><Text>Get away from the Wild Titan Boneknapper!</Text><ID>942522</ID></Reminder><Failure><Text>Oh no! The Titan Boneknapper caught you!</Text><ID>942523</ID></Failure></Data> + 0 + false + + + 7729 + Dreadfall2022Story01T14 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWBarfBelch</Asset><Location>PfMarker_BarfAndBelchDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>942526</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Phew, we barely made it out {{Name}}! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942527</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>There you are! What took you so long? I was about to send Astrid in after yo-</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942528</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken you’re okay! I was starting to worry I’d never see you again!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942529</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Oh, and you two are safe too.</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Tuffnut</Text><ID>904816</ID></Title><Desc><Text>Meet Tuffnut</Text><ID>904816</ID></Desc></Data> + 0 + false + + + 7730 + Dreadfall2022Story01T15 + <Data><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>DarkDeepDO</Scene><Asset>PfDWBarfBelch</Asset><Location>PfMarker_BarfAndBelchDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942531</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Don’t forget about the decoration we found in the cave!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942532</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>What a find! This is one gnarly bone, it will be the perfect addition to our Racetrack!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942533</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good thing I sent you three down there, huh?</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>DarkDeepDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>ItemID</Key><Value>7987</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Bone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver the Bone to Tuffnut</Text><ID>942530</ID></Title><Desc><Text>Deliver the Bone to Tuffnut</Text><ID>942530</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207740 + true + 75 + 75 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 207740 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207740 + true + 50 + 50 + + 0 + +
+ + 150 +

6

+ 20410 + + 1 + 10204 + 207740 + true + 150 + 150 + + 0 + +
+ false +
+ + 3102 + Dreadfall2022Story02 + 12 +

+ <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall02T00.unity3d/PfGrp2022Dreadfall02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Hide and Shriek [2022]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3101 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3102 + 7731 + 0 + + + 1 + 3102 + 7732 + 0 + + + 1 + 3102 + 7733 + 0 + + + 2 + 3102 + 3107 + 0 + + + 1 + 3102 + 7735 + 0 + + + 1 + 3102 + 7736 + 0 + + + 1 + 3102 + 7737 + 0 + + + 1 + 3102 + 7738 + 0 + + + 1 + 3102 + 7739 + 0 + + + 1 + 3102 + 7740 + 0 + + + 1 + 3102 + 7767 + 0 + + + + 1 + 207741 + 0 + + 3107 + Dreadfall2022Story02T04 + 12 +

3102

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3107 + 7734 + 0 + + + + 1 + 207765 + 0 + + 7734 + Dreadfall2022Story02T04 + <Data><Offer><Type>Popup</Type><ID>942536</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Oh, I have the perfect way to decide who will seek! {{Name}} go grab that bone you found in the cave. I was carrying it around as a good luck charm, but I left it over by the table. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942537</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, good idea Tuffnut, been a while since we played spin the bone! Alright, classic rules, of course everyone hides yada yada last one to be found wins.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942538</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>But, if you are too scared and come running out of hiding before you are found, then you have to spend a night sleeping in Sven’s Farms with the Yaks!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942539</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don’t know about this Snotlout, it’s already getting dark...</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942540</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You’re just scared of the Skeleternal Dragon bursting out of the ground at any moment, aren’t you Fishlegs? Nice try but you can’t get anything by me!</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall02T04CS.unity3d/PfGrp2022Dreadfall02T04CS</Asset><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><ID>942541</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>No, no, the other one is the pointing end! Which means, Fishlegs you’re the one seeking. Everyone has one minute to hide, starting... now!</Text><ItemID>0</ItemID><Priority>5</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>ItemID</Key><Value>7987</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Bone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Gather with the others for Hide and Seek</Text><ID>942534</ID></Title><Desc><Text>Gather with the others for Hide and Seek</Text><ID>942534</ID></Desc><Reminder><Text>Tuffnut said that the Dragon Bone was near the table!</Text><ID>942535</ID></Reminder></Data> + 0 + false + + + 1 +

6

+ 7987 + + 1 + 10277 + 207765 + true + 1 + 1 + + 0 + +
+ false + + + 7731 + Dreadfall2022Story02T01 + <Data><Offer><Type>Popup</Type><ID>942543</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>{{Name}} you’re just in time. We’re telling some campfire stories down the hill at [b][c][3eebff]Hobblegrunt Island[/c][ffffff][/b], but we are going to need more logs.@@Go grab some more will ya? And make it snappy or else you’ll miss the scariest story of them all... Mine! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942544</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Are you done chopping that wood yet? Yeesh, I would have chopped up five trees by now!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CampfireTrees</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect Firewood</Text><ID>942542</ID></Title><Desc><Text>Collect Firewood</Text><ID>942542</ID></Desc></Data> + 0 + false + + + 7732 + Dreadfall2022Story02T02 + <Data><Offer><Type>Popup</Type><ID>942546</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Finally! Now, hurry back and add those to the fire before it goes out!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942547</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>And then... What happened next? I think we found a pile of dragons... No, wait... I remember now, it was a pile of bones!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942548</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>And then, a gigantic Boneknapper burst out of the pile! It was probably the size of a Green Death! Well, almost that big.@@Oh, wait! I forgot to mention it only sprang up after we took a bone to decorate the new racetrack...</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942549</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidC</NPC><Text>Clueless focus! What happened with the Boneknapper?</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942550</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidB</NPC><Text>Oh, right! It chased {{Name}} and I all the way out of the cave! We barely made it out of there!</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CampfireDF2022</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfCampfireClickable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><RemoveItem><ItemID>7967</ItemID><Quantity>5</Quantity></RemoveItem><Type>Action</Type><Title><Text>Add the Wood to the Fire</Text><ID>942545</ID></Title><Desc><Text>Add the Wood to the Fire</Text><ID>942545</ID></Desc></Data> + 0 + false + + + 7733 + Dreadfall2022Story02T03 + <Data><Offer><Type>Popup</Type><ID>942552</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Booo not scary and horribly told! Why did you even run? Hookfang and I would have burnt that Boneknapper to a crisp.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942553</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Gather ‘round if you want to hear a real ghost story. I know a tale passed down the Jorgenson clan that would make even Thor Bonecrusher himself shudder.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942554</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>One misty night, a lone Viking was dragging the biggest haul he had ever caught back to his village. To get back faster, he took a shortcut through the woods.@@There, he came across a horrifying sight, so frightening, that he dropped his entire barrel of fish. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942555</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It was the Skeleternal Dragon, a horrifying and colossal creature, covered head to claw in bones!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942556</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>As if the sight of the beast wasn’t enough, it let out a nightmarish roar that stirred dead dragons back to life.@@All around the Skeleternal Dragon, other bone dragons emerged from the dirt, heeding the bone-whistling call!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942557</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The Viking couldn’t believe his eyes. So he took a closer look at the Skeleternal dragon, and that’s when he realized... that dragon’s armor wasn’t made of dragon bones... it was made of Viking bones!</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><ID>942558</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Bah, I’ve heard scarier. Besides, if a dragon like that really existed, Fishlegs would have made a card for it by now.</Text><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><ID>942559</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I have to agree with Astrid. A dragon that could resurrect the dead? There’s no way that’s possible!</Text><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><ID>942560</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You can all act tough and logical, but I know my story spooked everyone in this circle, even you Astrid.@@In fact, I dare all of you to prove you weren’t scared by joining in a game of hide and seek!</Text><ItemID>0</ItemID><Priority>6</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Listen to Snotlout’s Campfire Story</Text><ID>942551</ID></Title><Desc><Text>Listen to Snotlout’s Campfire Story</Text><ID>942551</ID></Desc></Data> + 0 + false + + + 7735 + Dreadfall2022Story02T05 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_RayneHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidA</Asset><Location>PfMarker_WartihogHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_CluelessHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidC</Asset><Location>PfMarker_SpeedifistHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_TuffnutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall02T05CS.unity3d/PfGrp2022Dreadfall02T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942562</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidA</NPC><Text>Hey, I’m already hiding here, find your own spot!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_WartihogHiding</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_WartihogHiding</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a Hiding Place</Text><ID>942561</ID></Title><Desc><Text>Find a Hiding Place</Text><ID>942561</ID></Desc></Data> + 0 + false + + + 7736 + Dreadfall2022Story02T06 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_RayneHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidA</Asset><Location>PfMarker_WartihogHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_CluelessHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidC</Asset><Location>PfMarker_SpeedifistHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_TuffnutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><ID>942564</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This looks like the perfect- hey {{Name}} I was here first! You can find another place to hide because I’m already king of this hill. </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall02T06CS.unity3d/PfGrp2022Dreadfall02T06CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SnotloutHiding</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SnotloutHiding</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a new Hiding Place</Text><ID>942563</ID></Title><Desc><Text>Find a new Hiding Place</Text><ID>942563</ID></Desc></Data> + 0 + false + + + 7737 + Dreadfall2022Story02T07 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWWildBonestormer</Asset><Location>PfMarker_BonestormerChase</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutHiding</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942568</ID><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The Skeleternal Dragon? It’s real? But I was just trying to scare Fishlegs. I’m out of here {{Name}}! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942569</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Phew, you’re lucky I was here to lead us to safety! Do you really think it could have been the Skeleternal Dragon?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HidingSpotDF2022</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HidingSpotDF2022</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>40</Value></Pair><Pair><Key>ResetMarker</Key><Value>PfMarker_ChaseReset</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>6</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWildBonestormer</Value></Pair></Objective><Type>Chase</Type><Title><Text>Run on Foot and Escape from the Bonestormer</Text><ID>942565</ID></Title><Desc><Text>Run on Foot and Escape from the Bonestormer</Text><ID>942565</ID></Desc><Reminder><Text>Get away from the Wild Bonestormer!</Text><ID>942566</ID></Reminder><Failure><Text>Oh no! The Bonestormer caught you!</Text><ID>942567</ID></Failure></Data> + 0 + false + + + 7738 + Dreadfall2022Story02T08 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfHidingSpot</Asset><Location>PfMarker_HidingSpotDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWWildBonestormer</Asset><Location>PfMarker_BonestormerSearch</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutScared</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942572</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Wait a minute, I think I can hear it coming. Quick, time to find a place to hide for real. {{Input}} on the one behind those rocks!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942573</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It’s heading away! Let’s sneak back to camp so we can get some reinforcements.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHidingSpot</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Hiding Spot to Hide from the Bonestormer</Text><ID>942570</ID></Title><Desc><Text>{{Input}} on the Hiding Spot to Hide from the Bonestormer</Text><ID>942570</ID></Desc><Reminder><Text>Stay very still, otherwise the Bonestormer will find you!</Text><ID>942571</ID></Reminder><Failure><Text>Oh no! The Bonestormer caught you!</Text><ID>942567</ID></Failure></Data> + 0 + false + + + 7739 + Dreadfall2022Story02T09 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutScared</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWAstrid</Asset><Location>PfMarker_AstridCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_RayneCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidA</Asset><Location>PfMarker_WartihogCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_CluelessCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidC</Asset><Location>PfMarker_SpeedifistCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_TuffnutCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsCampfire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942577</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Follow me. Just give me a shout if the Skeleternal Dragon sneaks up on you so I can run- I mean help!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942578</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>We made it back! And look there are our reinforcements! </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942579</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Snotlout? I found just about everyone, except for you and {{Name}}! Does this mean you two were too scared?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942580</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Stick a sword in it Fishlegs! We’ve got bigger problems. The Skeleternal Dragon is after us! </Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942581</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Now you’re just trying to scare me!@@Actually, um, what’s that rustling in the trees?</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall02T09CS.unity3d/PfGrp2022Dreadfall02T09CS</Asset><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CampfireDF2022</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Spline</Key><Value>Snotlout7739</Value></Pair></Objective><Type>Follow</Type><Title><Text>Sneak back to the Campfire</Text><ID>942574</ID></Title><Desc><Text>Sneak back to the Campfire</Text><ID>942574</ID></Desc><Reminder><Text>Stick close to Snotlout!</Text><ID>942575</ID></Reminder><Failure><Text>Snotlout got too far away from you!</Text><ID>942576</ID></Failure></Data> + 0 + false + + + 7740 + Dreadfall2022Story02T10 + <Data><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidD</Asset><Location>PfMarker_RayneBonestormer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidB</Asset><Location>PfMarker_CluelessBonestormer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWKidC</Asset><Location>PfMarker_SpeedifistBonestormer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWRuffnut</Asset><Location>PfMarker_RuffnutBonestormer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWTuffnut</Asset><Location>PfMarker_TuffnutBonestormer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutBonestormer</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942583</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>That’s not the Skeleternal Dragon, that’s a Bonestormer!@@Their Bone Armor and firepower do make them formidable foes, but if we all blast it together, we should be able to drive it away!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942584</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>We did it! That Bonestormer is running scared!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942585</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>What do you mean we? You and the twins were cowering by the fire.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942586</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Well, we still weren’t sure it wasn’t the Skeleternal Dragon.</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>BonestormerTargetable</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Drive off the Bonestormer</Text><ID>942582</ID></Title><Desc><Text>Drive off the Bonestormer</Text><ID>942582</ID></Desc></Data> + 0 + false + + + 7767 + Dreadfall2022Story02T11 + <Data><Offer><Type>Popup</Type><ID>942587</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>{{Name}} would you come over here? I want to talk to you about the racetrack. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942588</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I’ve been thinking about that bone you took. After all of the recent bone dragon attacks, I’m starting to suspect that we disturbed an ancient Dragon burial ground by taking it... </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942589</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Just keep your eyes open. I’ll ask around to see if anyone knows how to lift a curse...</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Ruffnut</Text><ID>938852</ID></Title><Desc><Text>Talk to Ruffnut</Text><ID>938852</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207741 + true + 75 + 75 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 207741 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207741 + true + 50 + 50 + + 0 + +
+ + 300 +

6

+ 20410 + + 1 + 10205 + 207741 + true + 300 + 300 + + 0 + +
+ false +
+ + 3103 + Dreadfall2022Story03 + 13 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall03T00A.unity3d/PfGrp2022Dreadfall03T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubVanaheimNightDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall03T00B.unity3d/PfGrp2022Dreadfall03T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubDreadfallRaceTrackDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall03T00C.unity3d/PfGrp2022Dreadfall03T00C</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Bone-afide Curse [2022]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3102 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3103 + 7741 + 0 + + + 1 + 3103 + 7742 + 0 + + + 2 + 3103 + 3105 + 0 + + + 1 + 3103 + 7744 + 0 + + + 1 + 3103 + 7745 + 0 + + + 1 + 3103 + 7746 + 0 + + + 2 + 3103 + 3106 + 0 + + + 1 + 3103 + 7748 + 0 + + + 1 + 3103 + 7749 + 0 + + + 1 + 3103 + 7750 + 0 + + + 1 + 3103 + 7751 + 0 + + + + 1 + 207742 + 0 + + 3105 + Dreadfall2022Story03T03 + 13 +

3103

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3105 + 7743 + 0 + + + + 1 + 207763 + 0 + + 7743 + Dreadfall2022Story03T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWGobber</Asset><Location>PfMarker_GobberDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942591</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ruffnut thinks the bone is cursed? Well, against my better judgement, I’m curious. Let me see it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942592</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>How peculiar... hmm, I can see why this bone had Ruffnut rattled! I’m afraid I’m not sure entirely sure what dragon this belonged to.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942593</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>At first glance, I thought it was a [c][3eebff]Whispering Death Vertebra[/c][ffffff], but upon further inspection, I realized it was much too large and jagged.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942594</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>So, I have no idea what kind of dragon this bone belongs to, it’s eerie! Here you can take this back...</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>ItemID</Key><Value>7987</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Bone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Let Fishlegs inspect the Bone</Text><ID>942590</ID></Title><Desc><Text>Let Fishlegs inspect the Bone</Text><ID>942590</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7987 + + 1 + 10274 + 207763 + true + 1 + 1 + + 0 + +
+ false + + + 3106 + Dreadfall2022Story03T07 + 13 +

3103

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3106 + 7747 + 0 + + + + 1 + 207764 + 0 + + 7747 + Dreadfall2022Story03T07 + <Data><Setup><Scene>HubVanaheimNightDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_Fishlegs7747</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimNightDO</Scene><Asset>PfDWMeatlug</Asset><Location>PfMarker_Meatlug7747</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942596</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Fishlegs my friend, I couldn’t be happier to see you! Yes, it’s quite odd, but bone dragons have been pilfering from my dig sites.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942597</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>How intriguing, you seem to be holding onto a rather unusual specimen there {{Name}}. Mind if I take a closer look?</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942598</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>How fascinating!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942599</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>It’s actually the reason we came. We were hoping you could identify it!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942600</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>I certainly can! This is an incredibly rare find, a procoelous vertebrae belonging to a [c][3eebff]Screaming Death[/c][ffffff].</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942601</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>How exciting! I’ve never actually seen such a pristine specimen myself.</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><ID>942602</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A Screaming Death bone? No wonder I thought it was from a Whispering Death at first!</Text><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><ID>942603</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thanks for your help Skulder, we should report back about what we’ve discovered. Will you be all right here on your own?</Text><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><ID>942604</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Not to worry, Muddy and I will head back soon as I finish cataloging my findings!</Text><ItemID>0</ItemID><Priority>6</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimNightDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWArchaeologist</Value></Pair><Pair><Key>ItemID</Key><Value>7987</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Bone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Have Skulder Inspect the Dragon Bone</Text><ID>942595</ID></Title><Desc><Text>Have Skulder Inspect the Dragon Bone</Text><ID>942595</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 7987 + + 1 + 10275 + 207764 + true + 1 + 1 + + 0 + +
+ false +
+ + 7741 + Dreadfall2022Story03T01 + <Data><Offer><Type>Popup</Type><ID>942606</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>{{Name}} after enduring a horrifying nightmare last night about that bone we took, my fears about the curse have been confirmed!@@Rayne should be somewhere around here... Can you find her? I’m enlisting you two to do some investigating for me...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall03T01CS.unity3d/PfGrp2022Dreadfall03T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWKidD</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet up with Rayne</Text><ID>942605</ID></Title><Desc><Text>Meet up with Rayne</Text><ID>942605</ID></Desc></Data> + 0 + false + + + 7742 + Dreadfall2022Story03T02 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWGobber</Asset><Location>PfMarker_GobberDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942607</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Finally! You two took so long that I was afraid the bone curse would claim me before you arrived.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942608</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>First order of business, to remove this curse, we will need more info.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>942609</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>You two, go find Fishlegs and see if he can help us identify the dragon bone! Last I saw he was with Gobber.</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><ID>942610</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Great to see you {{Name}} and Rayne! Excuse the soot, I’ve been helping Gobber with forge maintenance.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942611</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>A cursed dragon bone? Wait a minute, did Snotlout put you up to this?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942612</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidD</NPC><Text>No, Ruffnut did! And trust us, she isn’t fooling around, she really believes this bone is haunted.</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Find Fishlegs</Text><ID>938991</ID></Title><Desc><Text>Find Fishlegs</Text><ID>938991</ID></Desc></Data> + 0 + false + + + 7744 + Dreadfall2022Story03T04 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWGobber</Asset><Location>PfMarker_GobberDF2022</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942614</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Although I can’t identify this bone, I do know who can. [c][ffb33e]Skulder the Archeologist[/c][ffffff]!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942615</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>He’s on an expedition to survey several dig sites on [c][3eebff]Vanaheim[/c][ffffff], if we hurry we might be able to catch him.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>942616</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Let's meet up just off the coast of [c][3eebff]Vanaheim[/c][ffffff] so we can go in together. Please do your best to avoid disturbing the sentinels, and remember, we will be stepping foot on scared dragon soil!</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall03T04CS.unity3d/PfGrp2022Dreadfall03T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942617</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Boneknappers and Bonestormers working together to invade Vanaheim, what in Thor’s name is going on around here?</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimNightDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Reconvene at Vanaheim</Text><ID>942613</ID></Title><Desc><Text>Reconvene at Vanaheim</Text><ID>942613</ID></Desc></Data> + 0 + false + + + 7745 + Dreadfall2022Story03T05 + <Data><Setup><Scene>HubVanaheimNightDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsStart7745</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimNightDO</Scene><Asset>PfDWMeatlug</Asset><Location>PfMarker_Meatlug7745</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942619</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Skulder is at one of the dig sites around the island. The first one isn’t far, just follow me. Remember to stick close!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942620</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don’t see Skulder here! Come to think of it, I don’t see a single bone either... I’m positive there was a dig site right here though! How peculiar...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsEnd7745</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>20</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Spline</Key><Value>Fishlegs7745</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Fishlegs to the Burial Ground</Text><ID>942618</ID></Title><Desc><Text>Follow Fishlegs to the Burial Ground</Text><ID>942618</ID></Desc></Data> + 0 + false + + + 7746 + Dreadfall2022Story03T06 + <Data><Setup><Scene>HubVanaheimNightDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsStart7746</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubVanaheimNightDO</Scene><Asset>PfDWMeatlug</Asset><Location>PfMarker_Meatlug7746</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942622</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, there is another dig site on the other side of the island, so Skulder must be there. I’ll lead the way! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942623</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Skulder there you are! We’ve been looking all over Vanaheim for you. What is going on around here?</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubVanaheimNightDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsEnd7746</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>20</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Spline</Key><Value>Fishlegs7746</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Fishlegs and Search for Skulder</Text><ID>942621</ID></Title><Desc><Text>Follow Fishlegs and Search for Skulder</Text><ID>942621</ID></Desc></Data> + 0 + false + + + 7748 + Dreadfall2022Story03T08 + <Data><Offer><Type>Popup</Type><ID>942625</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Alright, {{Name}} let’s report back to Ruffnut with our findings. I’m sure the twins are working on that racetrack!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942626</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Ruffnut! We were able to identify this bone with Skulder’s help. Turns out it’s an extremely rare Screaming Death bone.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942627</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>A Screaming Death bone? No wonder that thing is cursed!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942628</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well, I’m not sure about cursed, but it sure is fascinating!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall03T08CS.unity3d/PfGrp2022Dreadfall03T08CS</Asset><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDreadfallRaceTrackDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWRuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report back to Ruffnut at Ruff and Tuff's Dreadfall Racetrack</Text><ID>942624</ID></Title><Desc><Text>Report back to Ruffnut at Ruff and Tuff's Dreadfall Racetrack</Text><ID>942624</ID></Desc></Data> + 0 + false + + + 7749 + Dreadfall2022Story03T09 + <Data><Offer><Type>Popup</Type><ID>942630</ID><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>See I told you that bone was cursed! {{Name}}, can you keep that dragon busy while we get in position to ambush it? You can take them on a tour of our new racetrack!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942631</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>We're ready! Let’s drive off this dragon before it ruins our new racetrack! +</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDreadfallRaceTrackDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Checkpoint7749</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRing</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Lead the Skrillknapper to the First Checkpoint</Text><ID>942629</ID></Title><Desc><Text>Lead the Skrillknapper to the First Checkpoint</Text><ID>942629</ID></Desc></Data> + 0 + false + + + 7750 + Dreadfall2022Story03T10 + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall03T10CS.unity3d/PfGrp2022Dreadfall03T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDreadfallRaceTrackDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Checkpoint7750</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRing</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Outrun the Skrillknapper and Reach the Second Checkpoint</Text><ID>942632</ID></Title><Desc><Text>Outrun the Skrillknapper and Reach the Second Checkpoint</Text><ID>942632</ID></Desc></Data> + 0 + false + + + 7751 + Dreadfall2022Story03T11 + <Data><Offer><Type>Popup</Type><ID>942634</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}} are you okay? We drove off that Skrillknapper, but when we turned around you were unconscious. Can you walk over here?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942635</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Happy to see you back on your feet. You must have taken quite the fall, maybe we should have Valka or Gothi check up on you?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942636</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>{{Name}} looks fine to me, they were probably just so scared they fainted!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942637</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>I’m telling you this is all about the bone. We must have disturbed a sacred dragon burial site, and now these Bone Dragons won’t rest until they have [b]our[/b] bones!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><ID>942638</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>I don’t know Ruffnut, that seems a little farfetched...</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><ID>942639</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Trust me. I’ve heard of this happening before, it’s called a bone-afide curse!</Text><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubDreadfallRaceTrackDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Fishlegs</Text><ID>942633</ID></Title><Desc><Text>Speak with Fishlegs</Text><ID>942633</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207742 + true + 75 + 75 + + 0 + +
+ + 200 +

8

+ 0 + + 1 + 652 + 207742 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207742 + true + 50 + 50 + + 0 + +
+ + 450 +

6

+ 20410 + + 1 + 10206 + 207742 + true + 450 + 450 + + 0 + +
+ false +
+ + 3104 + Dreadfall2022Story04 + 45 +

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>{{Name}} please meet me outside the Great Hall soon as you can. I heard you took quite the fall, so I’d like to inspect you as soon as possible! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>GreatHallSchoolIntDreamDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall04T00A.unity3d/PfGrp2022Dreadfall04T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>RS_DATA/PfGrp2022Dreadfall04T00B.unity3d/PfGrp2022Dreadfall04T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Grave Danger [2022]</Text></Title><Icon>RS_DATA/SquadTacticsDreadfallDO.unity3d/IcoDWDragonsHUDDazeReward</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3103 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3104 + 7752 + 0 + + + 1 + 3104 + 7753 + 0 + + + 1 + 3104 + 7754 + 0 + + + 1 + 3104 + 7755 + 0 + + + 1 + 3104 + 7756 + 0 + + + 1 + 3104 + 7757 + 0 + + + 1 + 3104 + 7758 + 0 + + + 1 + 3104 + 7759 + 0 + + + 1 + 3104 + 7760 + 0 + + + 1 + 3104 + 7761 + 0 + + + 1 + 3104 + 7762 + 0 + + + 1 + 3104 + 7763 + 0 + + + 1 + 3104 + 7764 + 0 + + + 1 + 3104 + 7765 + 0 + + + 1 + 3104 + 7766 + 0 + + + + 1 + 207743 + 0 + + 7752 + Dreadfall2022Story04T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_KidA</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><End><Type>Popup</Type><ID>942641</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Well, it seems I was right to call you over here. Based on the size of that welt you must have bumped your head on the way down. I certainly hope you didn’t sustain a concussion! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWValka</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Valka in front of the Great Hall</Text><ID>942640</ID></Title><Desc><Text>Meet Valka in front of the Great Hall</Text><ID>942640</ID></Desc></Data> + 0 + false + + + 7753 + Dreadfall2022Story04T02 + <Data><Offer><Type>Popup</Type><ID>942643</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWValka</NPC><Text>Just to be safe, you should take some time off from these escapades with the twins and take it easy. I always find the [c][3eebff]Great Hall[/c][ffffff] to be an excellent spot to rest my legs and collect my thoughts.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><ID>942644</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]I’m feeling a bit woozy, maybe I should just take a little snooze here...[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall04T02CS.unity3d/PfGrp2022Dreadfall04T02CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SleepingSpot</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_SleepingSpot</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a Place to Rest</Text><ID>942642</ID></Title><Desc><Text>Find a Place to Rest</Text><ID>942642</ID></Desc></Data> + 0 + false + + + 7754 + Dreadfall2022Story04T03 + <Data><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDreamDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BonePile</Value></Pair><Pair><Key>Name</Key><Value>PfBonePile</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find Your Dragon</Text><ID>942645</ID></Title><Desc><Text>Find Your Dragon</Text><ID>942645</ID></Desc></Data> + 0 + false + + + 7755 + Dreadfall2022Story04T04 + <Data><Offer><Type>Popup</Type><ID>942647</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i]Ahhh!!![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942648</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidCDream</NPC><Text>[i]It only sprang up after we took a bone to decorate the new racetrack...[/i]</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><ID>942649</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Hello...? Who's there!?[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><ID>942650</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Wait, come back![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDreamDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_KidADream</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KidADream</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Title><Desc><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Desc></Data> + 0 + false + + + 7756 + Dreadfall2022Story04T05 + <Data><Offer><Type>Popup</Type><ID>942651</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidBDream</NPC><Text>[i]Focus! What happened with the Boneknapper?[/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDreamDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_KidBDream</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KidBDream</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Title><Desc><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Desc></Data> + 0 + false + + + 7757 + Dreadfall2022Story04T06 + <Data><Offer><Type>Popup</Type><ID>942652</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidADream</NPC><Text>[i]Hey, I’m hiding here, find your own spot![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDreamDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_KidCDream</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KidCDream</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Title><Desc><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Desc></Data> + 0 + false + + + 7758 + Dreadfall2022Story04T07 + <Data><Offer><Type>Popup</Type><ID>942653</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWKidDDream</NPC><Text>[i]Why did you have to take that bone {{Name}}?[/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDreamDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_KidDDream</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_KidDDream</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Title><Desc><Text>Approach The Shadowy Figure</Text><ID>942646</ID></Desc></Data> + 0 + false + + + 7759 + Dreadfall2022Story04T08 + <Data><Offer><Type>Popup</Type><ID>942655</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfGraveknapperThrone</NPC><Text>[i]Come hither {{Name}}… rest your weary bones...[/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall04T08CS.unity3d/PfGrp2022Dreadfall04T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDreamDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_BoneThrone</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_BoneThrone</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>The Bone Throne Summons...</Text><ID>942654</ID></Title><Desc><Text>The Bone Throne Summons...</Text><ID>942654</ID></Desc></Data> + 0 + false + + + 7760 + Dreadfall2022Story04T09 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsPostSleep</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><ID>942657</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>{{Name}}! {{Name}} are you alright? Thank Thor, you woke up! You were muttering some odd things in your sleep... but I suppose a blow to the head might do that!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942658</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Here, take a sip of this tea that Valka had Gothi brew for you.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942659</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Hiccup and I were worried about you after talking with Valka. We all think that another dragon attacked you at that racetrack.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942660</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We had to pull out the Book of Dragons for this one, but all of the recent Bone Dragon activity might have helped us figure this mystery out.@@We have theorized that this is an unusually aggressive [i][c][ffb33e]Graveknapper[/c][ffffff][/i] that has been causing trouble around the Archipelago.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942661</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>This dragon is a fearsome hybrid between a [i][c][3eebff]Boneknapper[/c][ffffff][/i] and a [i][c][3eebff]Screaming Death[/c][ffffff][/i], featuring a clubbed tail that could definitely knock some nightmares into you!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FishlegsPostSleep</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Take a Sip of the Tea Fishlegs Brought</Text><ID>942656</ID></Title><Desc><Text>Take a Sip of the Tea Fishlegs Brought</Text><ID>942656</ID></Desc></Data> + 0 + false + + + 7761 + Dreadfall2022Story04T10 + <Data><Setup><Scene>DEClubhouseINTDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_HiccupClubhouse</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Once you’re feeling up to it, Hiccup asked to see you. If I know him, he’s already tracking down this Graveknapper!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you are {{Name}}, glad to see you back on your feet. I was concerned after hearing what happened but it looks like Gothi’s Herbal Tea worked wonders!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>If you think you can handle it, I’d really appreciate your help getting to the bottom of this Bone Dragon debacle.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ve heard reports of an eerie call scaring folks away from waters around the [c][3eebff]Ship Graveyard[/c][ffffff], so I believe that’s where we will find the Graveknapper.</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>DEClubhouseINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HiccupClubhouse</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup in the Clubhouse at Dragons Edge</Text></Title><Desc><Text>Speak with Hiccup in the Clubhouse at Dragons Edge</Text></Desc></Data> + 0 + false + + + 7762 + Dreadfall2022Story04T11 + <Data><Offer><Type>Popup</Type><ID>942668</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let’s meet up at the Ship Graveyard soon as possible. We can’t have this dragon attacking more students.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942669</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, and be sure to bring that bone Ruffnut keeps telling me about! I don’t think it’s cursed, but it does seem to be the one constant in all of these bone dragon attacks...</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942670</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thanks for joining me {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_HiccupDF2022</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_HiccupDF2022</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Hiccup at the Ship Graveyard</Text><ID>942667</ID></Title><Desc><Text>Meet Hiccup at the Ship Graveyard</Text><ID>942667</ID></Desc></Data> + 0 + false + + + 7763 + Dreadfall2022Story04T12 + <Data><Offer><Type>Popup</Type><ID>942672</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We have a lot of ground to cover so let’s split up and look around. Just be sure to give me a shout if you find anything!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall04T12CS.unity3d/PfGrp2022Dreadfall04T12CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChestDF2022</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ChestDF2022</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Search for signs of the Graveknapper</Text><ID>942671</ID></Title><Desc><Text>Search for signs of the Graveknapper</Text><ID>942671</ID></Desc></Data> + 0 + false + + + 7764 + Dreadfall2022Story04T13 + <Data><Offer><Type>Popup</Type><ID>942674</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Looks like we were right! The Graveknapper must have taken up residence on this wrecked ship and tyrannized the other Bone Dragons in the area to collect bones for it.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942675</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Come on {{Name}}, let’s do this together!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942676</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well fought {{Name}}! We make quite the team.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>DTPortal</Value></Pair><Pair><Key>Name</Key><Value>STShipGraveyard01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Defeat the Bone Dragons in Dragon Tactics</Text><ID>942673</ID></Title><Desc><Text>Defeat the Bone Dragons in Dragon Tactics</Text><ID>942673</ID></Desc></Data> + 0 + false + + + 7765 + Dreadfall2022Story04T14 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>PfDWToothlessAlphaHiccupRider</Asset><Location>PfMarker_HiccupRider7765</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>PfDWBarfBelchTwinRiders</Asset><Location>PfMarker_RuffTuffRider7765</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942678</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Quick, give them the bone! It’s the only way to break the curse!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Dreadfall04T14CS.unity3d/PfGrp2022Dreadfall04T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWWildGraveknapper</Value></Pair><Pair><Key>ItemID</Key><Value>7987</Value></Pair><Pair><Key>ItemDescription</Key><Value>Dragon Bone</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Offer the bone to the Graveknapper</Text><ID>942677</ID></Title><Desc><Text>Offer the bone to the Graveknapper</Text><ID>942677</ID></Desc></Data> + 0 + false + + + 7766 + Dreadfall2022Story04T15 + <Data><Setup><Scene>ShipGraveyardDO</Scene><Asset>PfDWToothlessAlphaHiccupRider</Asset><Location>PfMarker_HiccupRider7766</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ShipGraveyardDO</Scene><Asset>PfDWBarfBelchTwinRiders</Asset><Location>PfMarker_RuffTuffRider7766</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><ID>942680</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>What do you know, the Graveknapper had a hatchling missing a piece in its bone armor. No wonder it wanted that Screaming Death bone!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><ID>942681</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Stands to reason a Screaming Death Hybrid would need similarly shaped bones to complete their armor. Please come over here so I can thank you properly!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><ID>942682</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for helping us unravel this Dreadfall Mystery {{Name}}! And thank you Ruffnut. I can’t believe I’m saying this, but that was a great idea!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><ID>942683</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>How did you know the Graveknapper needed that bone for its hatchling?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><ID>942684</ID><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Huh? Oh, I had no clue. I just knew I had to break the Bone Dragon Curse. I could never live with the guilt of knowing Tuff and I had cursed {{Name}} for all of eternity just for a racetrack decoration! </Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ShipGraveyardDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ToothlessHiccup</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_ToothlessHiccup</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet up with Hiccup and the Twins</Text><ID>942679</ID></Title><Desc><Text>Meet up with Hiccup and the Twins</Text><ID>942679</ID></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207743 + true + 75 + 75 + + 0 + + + + 200 +

8

+ 0 + + 1 + 652 + 207743 + true + 200 + 200 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207743 + true + 50 + 50 + + 0 + +
+ + 600 +

6

+ 20410 + + 1 + 10207 + 207743 + true + 600 + 600 + + 0 + +
+ false +
+ + 3111 + Snoggletog2022Story02 + 25 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog02T00.unity3d/PfGrp2022Snoggletog02T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>On Thin Ice</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3108 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3111 + 7782 + 0 + + + 1 + 3111 + 7783 + 0 + + + 1 + 3111 + 7784 + 0 + + + 1 + 3111 + 7785 + 0 + + + 1 + 3111 + 7786 + 0 + + + 1 + 3111 + 7787 + 0 + + + 1 + 3111 + 7788 + 0 + + + 1 + 3111 + 7789 + 0 + + + 1 + 3111 + 7790 + 0 + + + 1 + 3111 + 7791 + 0 + + + + 1 + 207795 + 0 + + 7782 + Snoggletog2022Story02T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>Hello {{Name}}! Fishlegs has been learning a great deal about our new dragon friend. He seems quite excited and likes to be hands-on, but I prefer to keep my distance... </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T00CS.unity3d/PfGrp2022Snoggletog02T00CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FishlegsSnogg2022</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FishlegsSnogg2022</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Frostmare and Fishlegs</Text></Title><Desc><Text>Visit Frostmare and Fishlegs</Text></Desc></Data> + 0 + false + + + 7783 + Snoggletog2022Story02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>You couldn’t have better timing {{Name}}, I could sure use a hand keeping an eye on our frosty new friend I’ve dubbed Pupsicle!@@I believe he is a Frostmare, a hybrid between the Groncicles that inhabit Icestorm Island, and the fearsome Flightmare!@@However, he really seems to love hiding. Maybe you could find him? I’m getting a bit winded!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T01CS.unity3d/PfGrp2022Snoggletog02T01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FrostmareHiding01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHidingSpot01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the snow-piles to find Pupsicle</Text></Title><Desc><Text>{{Input}} on the snow-piles to find Pupsicle</Text></Desc></Data> + 0 + false + + + 7784 + Snoggletog2022Story02T03 + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T02CS.unity3d/PfGrp2022Snoggletog02T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FrostmareHiding02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHidingSpot02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the snow-piles to find Pupsicle</Text></Title><Desc><Text>{{Input}} on the snow-piles to find Pupsicle</Text></Desc></Data> + 0 + false + + + 7785 + Snoggletog2022Story02T04 + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T03CS.unity3d/PfGrp2022Snoggletog02T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FrostmareHiding03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfHidingSpot03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the snow-piles to find Pupsicle</Text></Title><Desc><Text>{{Input}} on the snow-piles to find Pupsicle</Text></Desc></Data> + 0 + false + + + 7786 + Snoggletog2022Story02T05 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWFrostmareBaby</Asset><Location>PfMarker_Throw</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, I know what he wants. You had better pick that up! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfFrostmareBranch</Value></Pair><Pair><Key>Name</Key><Value>PfFrostmareBranch</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Branch</Text></Title><Desc><Text>Collect the Branch</Text></Desc></Data> + 0 + false + + + 7787 + Snoggletog2022Story02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Okay, now throw it as far as you can! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T06CS.unity3d/PfGrp2022Snoggletog02T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Throw</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Throw</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find a Spot to Throw the Branch</Text></Title><Desc><Text>Find a Spot to Throw the Branch</Text></Desc></Data> + 0 + false + + + 7788 + Snoggletog2022Story02T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Look’s like Pupsicle is all tuckered out! We should try to find him some food to help him recover his energy.@@This is a perfect opportunity! Since he is part Frostmare, I’ve been wanting to test if he likes eating algae as much as snow.@@There should be some in the nearby lake. If you can get through the ice covering it that is! + </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank you {{Name}} that algae should do wonderfully! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfLakeAlgae</Value></Pair><Pair><Key>Name</Key><Value>PfLakeAlgae</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect Algae from the Lake</Text></Title><Desc><Text>Collect Algae from the Lake</Text></Desc></Data> + 0 + false + + + 7789 + Snoggletog2022Story02T08 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsFollow</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWFishmeat</Asset><Location>PfMarker_FishmeatsFollow</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Let’s see what Pupsicle thinks of it. Hold it close enough so he can get a whiff! + </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T08CS.unity3d/PfGrp2022Snoggletog02T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Aha just as I thought! </Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfDWFrostmareBabyDeliver</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFrostmareBaby</Value></Pair><Pair><Key>ItemID</Key><Value>13415</Value></Pair><Pair><Key>ItemDescription</Key><Value>Fluorescent Algae</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Offer Pupsicle the Algae</Text></Title><Desc><Text>Offer Pupsicle the Algae</Text></Desc></Data> + 0 + false + + + 7790 + Snoggletog2022Story02T09 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsFollow</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWFishmeat</Asset><Location>PfMarker_FishmeatsFollow</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thank you so much for your help {{Name}}, I am learning so much about the Frostmares. It just makes me so happy!@@Look Pupsicle is taking off again! Doesn’t seem like he’s playing this time though... let’s follow him! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>How intriguing, Pupsicle seems oddly fascinated with the aurora borealis. They sure are beautiful, but I can’t help but wonder why he is so fixated on them...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog02T10CS.unity3d/PfGrp2022Snoggletog02T10CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snoggletog2022Story02</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Spline</Key><Value>Spline_Move</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Fishlegs</Text></Title><Desc><Text>Follow Fishlegs</Text></Desc><Reminder><Text>Make sure to follow Fishlegs</Text></Reminder><Failure><Text>Oh no! You were too far away from Fishlegs</Text></Failure></Data> + 0 + false + + + 7791 + Snoggletog2022Story02T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>{{Name}} and Fishlegs, come quick!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>You two were on Icestorm Island not too long ago with Skulder right? Well, a blizzard is suddenly raging out of nowhere above it!@@I was monitoring the barometric pressure at the time and saw no indication it would form. It was as if a cold front appeared out of thin air... and if we don’t stop it, there’s no telling what damage it could do!@@When I told Hiccup, he said he wanted to speak with you both right away!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Heather</Text></Title><Desc><Text>Meet Heather</Text></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 207795 + true + 100 + 100 + + 0 + + + + 100 +

8

+ 0 + + 1 + 611 + 207795 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207795 + true + 50 + 50 + + 0 + +
+ + 300 +

6

+ 20630 + + 1 + 10446 + 207795 + true + 300 + 300 + + 0 + +
+ false +
+ + 3112 + Snoggletog2022Story03 + 4 +

+ <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog03T00A.unity3d/PfGrp2022Snoggletog03T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog03T00D.unity3d/PfGrp2022Snoggletog03T00D</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrp2022Snoggletog03T00B.unity3d/PfGrp2022Snoggletog03T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubArcticINTDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Frozen in Time</Text></Title><Icon>RS_DATA/dragonssnoggletogiconsdo/IcoDragonsSnoggletogCookie03</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3111 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3112 + 7792 + 0 + + + 1 + 3112 + 7793 + 0 + + + 1 + 3112 + 7794 + 0 + + + 1 + 3112 + 7795 + 0 + + + 1 + 3112 + 7796 + 0 + + + 1 + 3112 + 7797 + 0 + + + 1 + 3112 + 7798 + 0 + + + 1 + 3112 + 7799 + 0 + + + 1 + 3112 + 7800 + 0 + + + 1 + 3112 + 7801 + 0 + + + 1 + 3112 + 7802 + 0 + + + + 1 + 207796 + 0 + + 7792 + Snoggletog2022Story03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for joining me {{Name}}!@@Just a few hours after you found that Frostmare hatchling in the ruins, Heather reported icy winds forming into a storm around that very location.@@I have a feeling it is no coincidence. Do me a favor and fly back to the ruins with Skulder to see if you two can discover what is happening! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snogg2022Ruins</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snogg2022Ruins</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Icestorm Island Ruins</Text></Title><Desc><Text>Visit Icestorm Island Ruins</Text></Desc></Data> + 0 + false + + + 7793 + Snoggletog2022Story03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>There you are {{Name}}! As per Hiccup’s request, I’ve been poking around the cavern we opened in hopes of spotting something that might clue us into that sudden storm.@@Let me know if you spot anything!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FrostmareCaveEntrance</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfSnowPile</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Investigate the area you found Pupsicle</Text></Title><Desc><Text>Investigate the area you found Pupsicle</Text></Desc></Data> + 0 + false + + + 7794 + Snoggletog2022Story03T03 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Skulder7794</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>More stone panels? What a find! I simply must sketch them right away!@@Wait, do you hear that?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FrostmareSwarm</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_FrostmareSwarm</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate Commotion</Text></Title><Desc><Text>Investigate Commotion</Text></Desc></Data> + 0 + false + + + 7795 + Snoggletog2022Story03T04 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWArchaeologist</Asset><Location>PfMarker_Skulder7795</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>More Frostmares! And they certainly do not look happy...@@We should head back and report all of this to Hiccup right away!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>More stone panels and an entire swarm of Frostmares? If they practice alloparenting, then they won’t settle down until their missing hatchling is found.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report back to Hiccup</Text></Title><Desc><Text>Report back to Hiccup</Text></Desc></Data> + 0 + false + + + 7796 + Snoggletog2022Story03T05 + <Data><Setup><Scene>GreatHallSchoolIntDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Meet me at the Great Hall soon as you can. I’ll have Fishlegs and Pupsicle meet us there so we can examine Skulder’s sketches together!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog03T05CS.unity3d/PfGrp2022Snoggletog03T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Snogg2022</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Snogg2022</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit the Great Hall</Text></Title><Desc><Text>Visit the Great Hall</Text></Desc></Data> + 0 + false + + + 7797 + Snoggletog2022Story03T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>There you are {{Name}}, I came as soon as I heard the news! Who knew there were more Frostmares down there, let alone new stone panels? This is so exhilarating!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Intriguing... from the look of these panels, it seems like Frostmares travel in packs, using the aurora as a guiding light for their migration patterns and bringing frigid winds with them wherever they go.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Or at least they used to. The entire pack must have somehow been sealed inside those chambers beneath the ruins.@@And how long have they been surviving off the algae and snow inside?</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Regardless, we need to get that pack out of the ruins and back on their natural migration path. {{Name}}, could you check if Heather has finished preparing the special gear that I asked her to put together for us?</Text><ItemID>0</ItemID><Priority>3</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>There you are {{Name}}! I just finished with that special container Hiccup wanted to carry our Frostmare friend.@@I wove this basket out of frost-resistant plant material from Phlegma so it should hold together amidst even the coldest gales!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>GreatHallSchoolIntDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAlchemist</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet with Heather</Text></Title><Desc><Text>Meet with Heather</Text></Desc></Data> + 0 + false + + + 7798 + Snoggletog2022Story03T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlchemist</NPC><Text>Fishlegs and Hiccup are getting ready by the ruins. Join them soon as you can!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to the Ruins</Text></Title><Desc><Text>Return to the Ruins</Text></Desc></Data> + 0 + false + + + 7799 + Snoggletog2022Story03T08 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect timing {{Name}}! Are you ready?@@All you have to do is lure them into position outside, and then you can count on Ruffrunner and I to take care of the rest!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWToothlessHiccupRiderNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup</Text></Title><Desc><Text>Speak with Hiccup</Text></Desc></Data> + 0 + false + + + 7800 + Snoggletog2022Story03T09 + <Data><Setup><Scene>HubArcticINTDO</Scene><Asset>PfDWFrostmareBabyBasketNPC</Asset><Location>PfMarker_PupsicleCarryStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Objective><Pair><Key>Scene</Key><Value>HubArcticINTDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PupsicleCarryEnd</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFrostmareBabyBasketNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Pupsicle and lead the Frostmares out of the Ruins</Text></Title><Desc><Text>{{Input}} on Pupsicle and lead the Frostmares out of the Ruins</Text></Desc><Reminder><Text>Make sure to {{Input}} on Pupsicle</Text></Reminder><Failure><Text>Oh no! You left Pupsicle behind!</Text></Failure></Data> + 0 + false + + + 7801 + Snoggletog2022Story03T10 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>RS_DATA/PfDWFrostmareBabyBasketNPC.unity3d/PfDWFrostmareBabyBasketNPC</Asset><Location>PfMarker_PupsicleCarryStart</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Quick over here {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Alright Ruffrunner, it’s time to get their attention!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Look! Go on Pupsicle! Just stay safe out there!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2022Snoggletog03T10CS.unity3d/PfGrp2022Snoggletog03T10CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PupsicleCarryEnd</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFrostmareBabyBasketNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>{{Input}} on Pupsicle and lead the Frostmares into position</Text></Title><Desc><Text>{{Input}} on Pupsicle and lead the Frostmares into position</Text></Desc><Reminder><Text>Make sure to {{Input}} on Pupsicle</Text></Reminder><Failure><Text>Oh no! You left Pupsicle behind!</Text></Failure></Data> + 0 + false + + + 7802 + Snoggletog2022Story03T11 + <Data><Setup><Scene>HubArctic01DO</Scene><Asset>PfDWFrostmareBabyBasketNPC</Asset><Location>remove</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well done everyone. the Frostmares are following their migration instincts!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh, go on Pupsicle! Just stay safe out there!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You followed our plan to perfection {{Name}}!@@We can breathe easy knowing those Frostmares are no longer confined to those caverns. Now they can soar wherever the frozen winds may take them!@@I'm really proud of you too Fishlegs. I know it wasn’t easy to say goodbye, but you did what was best for Pupsicle.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Thanks Hiccup. I know I did the right thing, and I’m happy Pupsicle is back with his pack, but I already miss the frosty little fella...</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Who knows, maybe we will see him next Winter!</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubArctic01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWToothlessHiccupRiderNPC</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup</Text></Title><Desc><Text>Speak with Hiccup</Text></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 207796 + true + 100 + 100 + + 0 + + + + 100 +

8

+ 0 + + 1 + 611 + 207796 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207796 + true + 50 + 50 + + 0 + +
+ + 450 +

6

+ 20630 + + 1 + 10447 + 207796 + true + 450 + 450 + + 0 + +
+ false +
+ + 3113 + New Farming 271 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3113 + 7806 + 0 + + + + 1 + 207785 + 0 + + 7806 + Bat Guano + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano</Text></Title><Desc><Text>Phlegma needs some Bat Guano for Fertilizer!</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207785 + true + 4 + 4 + + 0 + + + + 16 +

2

+ 0 + + 1 + 2324 + 207785 + true + 16 + 16 + + 0 + +
+ false +
+ + 3114 + New Farming 272 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3114 + 7807 + 0 + + + + 1 + 207786 + 0 + + 7807 + Bat Guano + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano</Text></Title><Desc><Text>Heather needs some Bat Guano for a Lab Experiment</Text></Desc></Data> + 0 + false + + + 20 +

2

+ 0 + + 1 + 20 + 207786 + true + 20 + 20 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 207786 + true + 4 + 4 + + 0 + +
+ false +
+ + 3115 + New Farming 273 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,4 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3115 + 7808 + 0 + + + + 1 + 207787 + 0 + + 7808 + Bat Guano, Chicken Eggs + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8034</Value></Pair><Pair><Key>ItemDescription</Key><Value>Chicken Egg</Value></Pair><Pair><Key>Quantity</Key><Value>16</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano, Chicken Eggs</Text></Title><Desc><Text>Tuffnut was very specific with what he would need; but Bat Guano and Chicken Eggs is a weird combination</Text></Desc></Data> + 0 + false + + + 6 +

9

+ 0 + + 1 + 667 + 207787 + true + 6 + 6 + + 0 + + + + 213 +

2

+ 0 + + 1 + 854 + 207787 + true + 213 + 213 + + 0 + +
+ false +
+ + 3116 + New Farming 274 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3116 + 7809 + 0 + + + + 1 + 207788 + 0 + + 7809 + Bat Guano, Spider Silk + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>9914</Value></Pair><Pair><Key>ItemDescription</Key><Value>Spider Silk</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano, Spider Silk</Text></Title><Desc><Text>Ruffnut is cooking up a new prank, it might be best to keep some distance for awhile</Text></Desc></Data> + 0 + false + + + 124 +

2

+ 0 + + 1 + 1922 + 207788 + true + 124 + 124 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 207788 + true + 4 + 4 + + 0 + +
+ false +
+ + 3117 + New Farming 275 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3117 + 7810 + 0 + + + + 1 + 207789 + 0 + + 7810 + Bat Guano, White Wool, Black Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>21</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano, White Wool, Black Wool</Text></Title><Desc><Text>The Berserkers need help replenishing their stockpile with certain items</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207789 + true + 4 + 4 + + 0 + + + + 744 +

2

+ 0 + + 1 + 10442 + 207789 + true + 744 + 744 + + 0 + +
+ false +
+ + 3118 + New Farming 276 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3118 + 7811 + 0 + + + + 1 + 207790 + 0 + + 7811 + Bat Guano, Corn, Elderberry + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>21</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8040</Value></Pair><Pair><Key>ItemDescription</Key><Value>Corn Seeds</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8717</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elderberry</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano, Corn, Elderberry</Text></Title><Desc><Text>Silent Sven needs these items brought to his farm!</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207790 + true + 4 + 4 + + 0 + + + + 518 +

2

+ 0 + + 1 + 2353 + 207790 + true + 518 + 518 + + 0 + +
+ false +
+ + 3119 + New Farming 277 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,14 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3119 + 7812 + 0 + + + + 1 + 207791 + 0 + + 7812 + Bat Guano, Turkey Feathers, Elk Antlers + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8604</Value></Pair><Pair><Key>ItemDescription</Key><Value>Turkey Feather</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>15745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Elk Antler</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano, Turkey Feathers, Elk Antlers</Text></Title><Desc><Text>Gothi put together an interesting list of items she needed</Text></Desc></Data> + 0 + false + + + 80 +

9

+ 0 + + 1 + 641 + 207791 + true + 80 + 80 + + 0 + + + + 873 +

2

+ 0 + + 1 + 10443 + 207791 + true + 873 + 873 + + 0 + +
+ false +
+ + 3120 + New Farming 278 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3120 + 7813 + 0 + + + + 1 + 207792 + 0 + + 7813 + Bat Guano + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano</Text></Title><Desc><Text>Fishlegs wants to test out how good Bat Guano works in his garden</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207792 + true + 4 + 4 + + 0 + + + + 39 +

2

+ 0 + + 1 + 2411 + 207792 + true + 39 + 39 + + 0 + +
+ false +
+ + 3121 + New Farming 279 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3121 + 7814 + 0 + + + + 1 + 207793 + 0 + + 7814 + Bat Guano + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano</Text></Title><Desc><Text>Rayne wants to start her own garden and needs some help getting set up</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207793 + true + 4 + 4 + + 0 + + + + 52 +

2

+ 0 + + 1 + 2376 + 207793 + true + 52 + 52 + + 0 + +
+ false +
+ + 3122 + New Farming 280 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,4 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3122 + 7815 + 0 + + + + 1 + 207794 + 0 + + 7815 + Bat Guano + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20430</Value></Pair><Pair><Key>ItemDescription</Key><Value>Bat Guano</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bat Guano</Text></Title><Desc><Text>Headmaster Heyral is looking into adding a new class about Farming, but is in need of some Fertilizer</Text></Desc></Data> + 0 + false + + + 65 +

2

+ 0 + + 1 + 633 + 207794 + true + 65 + 65 + + 0 + + + + 4 +

9

+ 0 + + 1 + 1993 + 207794 + true + 4 + 4 + + 0 + +
+ false +
+ + 3123 + SnoggletogMaze 2022 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Snoggletog Maze First Run Completion</Text></Title></Data> + false + 0 + + + 5 + 12-01-2022 08:00:00,01-17-2023 08:00:00 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3123 + 7816 + 0 + + + + 1 + 207802 + 0 + + 7816 + SnoggletogMaze2022T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSnoggletogChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Get the Chest</Text></Title></Data> + 0 + false + + + 300 +

6

+ 20630 + + 1 + 10497 + 207802 + true + 300 + 300 + + 0 + + + false +
+ + 3124 + SnoggletogMaze 2022 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Snoggletog Maze Coin Completion</Text></Title></Data> + false + 0 + + + 5 + 12-01-2022 08:00:00,01-17-2023 08:00:00 + 0 + false + + + 3 + 3123 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3124 + 7817 + 0 + + + + 1 + 207803 + 0 + + 7817 + SnoggletogMaze2022T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSnoggletogDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSnoggletogChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Chest</Text></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207803 + true + 50 + 50 + + 0 + + + false +
+ + 3125 + Friendship2023Story01 + 12 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2023Friendship01T06.unity3d/PfGrp2023Friendship01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrp2023Friendship01T11.unity3d/PfGrp2023Friendship01T11</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrp2023Friendship01T10.unity3d/PfGrp2023Friendship01T10</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HobblegruntIslandDO</Scene><Asset>RS_DATA/PfGrp2023Friendship01T03.unity3d/PfGrp2023Friendship01T03</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Huffin and Puffin</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-01-2023 07:00:00,02-24-2023 20:00:00 + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3125 + 7818 + 0 + + + 1 + 3125 + 7820 + 0 + + + 1 + 3125 + 7822 + 0 + + + 1 + 3125 + 7823 + 0 + + + 1 + 3125 + 7825 + 0 + + + 1 + 3125 + 7827 + 0 + + + 1 + 3125 + 7828 + 0 + + + 1 + 3125 + 7829 + 0 + + + 1 + 3125 + 7830 + 0 + + + 1 + 3125 + 7832 + 0 + + + 1 + 3125 + 7833 + 0 + + + 1 + 3125 + 7834 + 0 + + + 1 + 3125 + 7835 + 0 + + + 1 + 3125 + 7836 + 0 + + + 1 + 3125 + 7837 + 0 + + + + 1 + 207808 + 0 + + 7818 + Friendship2023Story01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh hey {{Name}}, I was so focused on songwriting that I almost didn’t see you there.@@Yeah, I’m the frontman of a new band, they’re calling us the greatest skalds of the archipelago.@@Or at least, they will be once they hear us play! Oh, and I think Hiccup wanted your help with something. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great to see you {{Name}}! I was starting to worry I had asked the wrong person to send you my way...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup at New Berk</Text></Title><Desc><Text>Meet Hiccup at New Berk</Text></Desc></Data> + 0 + false + + + 7820 + Friendship2023Story01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I was hoping I could trouble you to help me identify a new bird spotted around the Archipelago.@@It resembles a puffin, but seems to have a unique plumage coloration. Any trace of it you could bring back would be helpful!@@Fishlegs last spotted one off the eastern coast of [c][3eebff]Hobblegrunt Island[/c][ffffff], so perhaps you could start there?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for the Unidentified Bird on Hobblegrunt Island</Text></Title><Desc><Text>Look for the Unidentified Bird on Hobblegrunt Island</Text></Desc></Data> + 0 + false + + + 7822 + Friendship2023Story01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Up there! That must be the new bird Hiccup was talking about. I should be careful not to startle it... </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship01T03CS.unity3d/PfGrp2023Friendship01T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>(7822)PfMarker_Tree</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Approach the Unidentified Bird slowly</Text></Title><Desc><Text>Approach the Unidentified Bird slowly</Text></Desc></Data> + 0 + false + + + 7823 + Friendship2023Story01T04 + <Data><Objective><Pair><Key>Scene</Key><Value>HobblegruntIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectPuffinFeatherDO</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the Feather</Text></Title><Desc><Text>Pick up the Feather</Text></Desc></Data> + 0 + false + + + 7825 + Friendship2023Story01T05 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That was fast! So, what did you find? </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>11200</Value></Pair><Pair><Key>ItemDescription</Key><Value>Puffin Feather</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Bring the Feather back to Hiccup</Text></Title><Desc><Text>Bring the Feather back to Hiccup</Text></Desc></Data> + 0 + false + + + 7827 + Friendship2023Story01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This is perfect, thank you {{Name}}!@@Based on this plumage sample, our new aviary visitor is likely a species of puffin entirely new to the Archipelago...@@Wait, is that Sleuther? He looks exhausted. Check on him, will you?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>There you are Brother! Don’t worry, Sleuther will be just fine soon as he gets some rest. </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWSluether</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on Sleuther</Text></Title><Desc><Text>Check on Sleuther</Text></Desc></Data> + 0 + false + + + 7828 + Friendship2023Story01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Sleuther carried us here as fast as he could, it’s no wonder he’s tired!@@We spotted a rare new dragon, a [c][ffb33e]Songwing[/c][ffffff] I believe, but the poor creature seemed distressed. Isn’t that right Dagur?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Quite right my beloved!@@We were taking a romantic flight together across [c][3eebff]Zippleback Island[/c][ffffff] when we spotted that colorful creature. However, once we heard its cries of discomfort, we rushed to find you!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfDWDagur</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Speak with Dagur and Mala</Text></Title><Desc><Text>Speak with Dagur and Mala</Text></Desc></Data> + 0 + false + + + 7829 + Friendship2023Story01T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_Hiccup7829</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_Toothless7829</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A [c][ffb33e]Songwing[/c][ffffff] you say? Any Dragon in need is a friend indeed! {{Name}}, do you think you could lend us a hand with this?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I knew I could count on you!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup</Text></Title><Desc><Text>Speak with Hiccup</Text></Desc></Data> + 0 + false + + + 7830 + Friendship2023Story01T09 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Let’s head over to [c][3eebff]Zippleback Island[/c][ffffff] and take a look together.@@Dagur and Mala, you two can meet up with us once Sleuther has a chance to catch his breath!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There you are {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Hiccup on Zippleback Island</Text></Title><Desc><Text>Meet Hiccup on Zippleback Island</Text></Desc></Data> + 0 + false + + + 7832 + Friendship2023Story01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Did you hear that howling? That dragon must really be in pain, let’s hurry!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All that racket was... Mildew? What in Thor’s name is he doing here?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship01T10CS.unity3d/PfGrp2023Friendship01T10CS</Asset><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>Pfmarker_camp7832</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate the Howling Noise</Text></Title><Desc><Text>Investigate the Howling Noise</Text></Desc></Data> + 0 + false + + + 7833 + Friendship2023Story01T11 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>Pfmarker_ToothlessT10</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>Pfmarker_HiccupT10</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Will you just shut it already you lousy overgrown lizards!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Oh great, first I had to deal with those deafening lizards. Now I’ve got some unexpected and unwelcome guests. What do you two want?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Don’t worry Mildew, we don’t mean to bother, we are just on the lookout for a Songwing. Besides, I thought you lived on Icestorm Island... why are you out here?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>I did! Until a pack of Frostmares decided to stop by and freeze me out.@@So, I relocated to my er... winter home over here to wait it out.@@Apparently just in time for those two Songwings to move in. Their yammering back and forth keeps me up all night!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, you’ve heard [i]two[/i] of them? Perhaps they are Songmates that were separated!</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>Well, whatever they are, they are driving me crazy! Not to mention scaring poor Fungus out of his wits!@@And one of them has sounded especially hoarse lately, with any luck soon it’ll stop yapping altogether...</Text><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMildew</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Check on Mildew</Text></Title><Desc><Text>Check on Mildew</Text></Desc></Data> + 0 + false + + + 7834 + Friendship2023Story01T12 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWMala</Asset><Location>PfMarker_MalaStart</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Great timing Mala and Dagur! We’ve been trying to find that Songwing, but Mildew here has been less than helpful...@@Perhaps you could lead us to the place you last spotted it?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>Looks like she hasn’t moved much at all...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_MalaEnd</Value></Pair><Pair><Key>Range</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>8</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Spline</Key><Value>Spline_Move</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow Mala</Text></Title><Desc><Text>Follow Mala</Text></Desc><Reminder><Text>Stay close to Mala!</Text></Reminder><Failure><Text>Mala got too far ahead!</Text></Failure></Data> + 0 + false + + + 7835 + Friendship2023Story01T13 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWToothlessAlpha</Asset><Location>PfMarker_ToothlessT13</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupT13</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It’s a good thing you two came across this Songwing, she does needs our help.@@Seems her nostrils are inflamed, maybe a reaction to a nearby irritant... Hmmm, let’s look around for anything out of the ordinary!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfPuffinFeather</Value></Pair><Pair><Key>Name</Key><Value>PfPuffinFeather</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Search for Clues as to the Songwings Inflammation</Text></Title><Desc><Text>Search for Clues as to the Songwings Inflammation</Text></Desc></Data> + 0 + false + + + 7836 + Friendship2023Story01T14 + <Data><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfOddPlant</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Search for Clues as to the Songwings Inflammation</Text></Title><Desc><Text>Search for Clues as to the Songwings Inflammation</Text></Desc></Data> + 0 + false + + + 7837 + Friendship2023Story01T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Find anything {{Name}}? Bring it over here and let’s have a look. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hmm, a feather and this unusual plant...@@You alright Sleuther? Very interesting... I have a few ideas swirling about, but first I want to confirm my suspicions with Phlegma.@@Mala and Dagur, can you two please keep an eye on the Songwing in the meantime?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>We’d be happy to stand guard over her.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>And perhaps watch the sunset as we enjoy the picnic basket Sleuther and I prepared...</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You can spare me the details! {{Name}}, I’ll check back in with you once I’ve formulated a plan.</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>ItemID</Key><Value>20745</Value></Pair><Pair><Key>ItemDescription</Key><Value>Collect Dragon Pepper Flower</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Deliver Clues to Hiccup</Text></Title><Desc><Text>Deliver Clues to Hiccup</Text></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 207808 + true + 100 + 100 + + 0 + + + + 100 +

8

+ 0 + + 1 + 611 + 207808 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207808 + true + 50 + 50 + + 0 + +
+ false +
+ + 3126 + Friendship2023Story02 + 12 +

+ <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>RS_DATA/PfGrp2023Friendship02T02.unity3d/PfGrp2023Friendship02T02</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>OpenOceanNightDO</Scene><Asset>RS_DATA/PfGrp2023Friendship02T17.unity3d/PfGrp2023Friendship02T17</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Breaking the Band</Text></Title><Desc><Text>Breaking the Band</Text></Desc></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 01-01-2023 07:00:00,02-24-2023 20:00:00 + 0 + false + + + 3 + 3125 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3126 + 7839 + 0 + + + 1 + 3126 + 7840 + 0 + + + 1 + 3126 + 7841 + 0 + + + 1 + 3126 + 7842 + 0 + + + 1 + 3126 + 7843 + 0 + + + 1 + 3126 + 7844 + 0 + + + 1 + 3126 + 7845 + 0 + + + 1 + 3126 + 7846 + 0 + + + 1 + 3126 + 7847 + 0 + + + 1 + 3126 + 7848 + 0 + + + 1 + 3126 + 7849 + 0 + + + 1 + 3126 + 7850 + 0 + + + 1 + 3126 + 7851 + 0 + + + 1 + 3126 + 7852 + 0 + + + 1 + 3126 + 7853 + 0 + + + 1 + 3126 + 7854 + 0 + + + 1 + 3126 + 7855 + 0 + + + 1 + 3126 + 7856 + 0 + + + + 1 + 207818 + 0 + + 7839 + Friendship2023Story02T01 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfDWHiccup.unity3d/PfDWHiccup</Asset><Location>PfMarker_Hiccup7839</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>There you are {{Name}}! Hiccup was looking for you again. Something about Phlemga and him identifying a plant you found?@@Pretty sure he said he was waiting by [c][3eebff]The Lookout[/c][ffffff], but I could barely hear him. I’ve only got ears for music these days!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank you for joining us {{Name}}! Thanks to Phlegma’s expertise, we confirmed that this plant is Dragon pepper.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Oh, lad you are far too modest. He made this old Botanist proud- suspected it might be dragon pepper from the very start!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Don’t sell yourself short, it was a team effort!@@Without you, I wouldn’t have known dragon noses are particularly sensitive to the unique red dust the plant gives off.</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>Aye, it causes them to sneeze up something fierce. Especially if they happen to land in a patch of it like that poor Songwing! </Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup at the Lookout </Text></Title><Desc><Text>Meet Hiccup at the Lookout </Text></Desc></Data> + 0 + false + + + 7840 + Friendship2023Story02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>After I saw that feather you found alongside the Dragon Pepper Plant, I began to suspect the new Puffin species we spotted was responsible.@@They’ve been unwittingly distributing the plant to new islands through seed dispersal.@@To try and avoid more dragons from having adverse reactions to it, I’d like you to clear out all of the dragon pepper plants you can find on [c][3eebff]Zippleback Island[/c][ffffff].@@Just be sure to store them carefully so that the dust doesn’t irritate your dragon!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>7840CollectTrigger</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Clear out the Dragon Pepper Plants from Zippleback Island</Text></Title><Desc><Text>Clear out the Dragon Pepper Plants from Zippleback Island</Text></Desc></Data> + 0 + false + + + 7841 + Friendship2023Story02T03 + <Data><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>7841CollectTrigger</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Clear out the Dragon Pepper Plants from Zippleback Island</Text></Title><Desc><Text>Clear out the Dragon Pepper Plants from Zippleback Island</Text></Desc></Data> + 0 + false + + + 7842 + Friendship2023Story02T04 + <Data><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>7842CollectTrigger</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Clear out the Dragon Pepper Plants from Zippleback Island</Text></Title><Desc><Text>Clear out the Dragon Pepper Plants from Zippleback Island</Text></Desc></Data> + 0 + false + + + 7843 + Friendship2023Story02T05 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Glad I found you {{Name}}! Come meet me over here once you’ve found all the Dragon Pepper Plants.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Oh, you already cleared them all off the island? Outstanding work!@@We’ve all been eagerly clearing out any Dragon Pepper Plants we could find on the surrounding islands.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh yeah super eager about it over here. Nothing like missing out on band practice to yank up dusty weeds!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We all appreciate your sacrifice Snotlout. Especially the dragons who can breathe easier with those plants out of their habitats.</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet with Hiccup</Text></Title><Desc><Text>Meet with Hiccup</Text></Desc></Data> + 0 + false + + + 7844 + Friendship2023Story02T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that the Dragon Pepper has been removed from the area, our Songwing should be right as rain. Let’s go check in with Mala and Dagur to see if it’s feeling any better.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>There you are! As you can see our Songwing friend is back in the air and in singing condition. However, she can’t seem to find her Songmate.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>We can hear another one singing right back though, so it must be nearby.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>This Songwing has quite the voice. Almost as good as my new bandmate...</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWMala</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Mala</Text></Title><Desc><Text>Talk with Mala</Text></Desc></Data> + 0 + false + + + 7845 + Friendship2023Story02T07 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWWildSongwing</Asset><Location>PfMarker_7845Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We get it Snotlout you’re in a band! I think our Songwing is circling the area trying to locate where her Songmate’s call is coming from.@@Let's head to the sky and see if we can help her find the other Songwing.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It's strange... I thought Songwings identified each other by pitch, but the Songmate's call sounds identical to that of the one we helped out...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7845End</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>20</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWildSongwing</Value></Pair><Pair><Key>Spline</Key><Value>Songwing_7845</Value></Pair></Objective><Type>Follow</Type><Title><Text>{{Input}} on the Songwing and follow her!</Text></Title><Desc><Text>{{Input}} on the Songwing and follow her!</Text></Desc><Reminder><Text>Try to stay close to the Songwing!</Text></Reminder><Failure><Text>The Songwing got too far away from you!</Text></Failure></Data> + 0 + false + + + 7846 + Friendship2023Story02T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>It sounds like the call is coming from around here, but I don’t see anything... Let’s land down here under those cliffs to take a closer look.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship02T09ACS.unity3d/PfGrp2023Friendship02T09ACS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7846</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look around the area for Clues</Text></Title><Desc><Text>Look around the area for Clues</Text></Desc></Data> + 0 + false + + + 7847 + Friendship2023Story02T09 + <Data><Setup><Scene>ZipplebackIslandDO</Scene><Asset>PfDWWildSlithersong</Asset><Location>PfMarker_7847Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A Slithersong was mimicking the Songwing’s call?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Quickly {{Name}}, we can’t let it get away with Fungus! </Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship02T09BCS.unity3d/PfGrp2023Friendship02T09BCS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7847End</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>8</Value></Pair><Pair><Key>Proximity</Key><Value>30</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWildSlithersong</Value></Pair><Pair><Key>Spline</Key><Value>Slithersong_7847</Value></Pair></Objective><Type>Follow</Type><Title><Text>Follow the Slithersong</Text></Title><Desc><Text>Follow the Slithersong</Text></Desc><Reminder><Text>Keep up with the Slithersong!</Text></Reminder><Failure><Text>Oh no... Fungus...</Text></Failure></Data> + 0 + false + + + 7848 + Friendship2023Story02T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hurry and duck behind some cover before you’re trapped too! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>These Slithersongs sure are crafty, they led us right into an ambush! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7848</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Take Cover Behind the Rocks</Text></Title><Desc><Text>Take Cover Behind the Rocks</Text></Desc></Data> + 0 + false + + + 7849 + Friendship2023Story02T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Toothless and I can draw their attention while you and {{dragon name}} sneak up behind those Slithersongs.@@You’ve still got that bag of Dragon Pepper right? That ought to give them a sneezing fit that will send them packing!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7849</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Sneak Behind the Slithersong</Text></Title><Desc><Text>Sneak Behind the Slithersong</Text></Desc></Data> + 0 + false + + + 7850 + Friendship2023Story02T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! The Slithersong are becoming suspicious, make sure you stay hidden!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7850</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Hide Behind the Rocks Before you are Spotted</Text></Title><Desc><Text>Hide Behind the Rocks Before you are Spotted</Text></Desc></Data> + 0 + false + + + 7851 + Friendship2023Story02T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>Just a bit further now. Better take it slow. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7851</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Sneak Behind the Slithersong</Text></Title><Desc><Text>Sneak Behind the Slithersong</Text></Desc></Data> + 0 + false + + + 7852 + Friendship2023Story02T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now blast that bag of Dragon Pepper {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship02T14CS.unity3d/PfGrp2023Friendship02T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonPepper</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Blast the Bag of Dragon Pepper</Text></Title><Desc><Text>Blast the Bag of Dragon Pepper</Text></Desc></Data> + 0 + false + + + 7853 + Friendship2023Story02T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Spectacular shot!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMildew</NPC><Text>My precious Fungus, you’re safe! I was so worried about you!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Seems that Slithersongs don’t care for Dragon Pepper either. Toothless and I will help free the other riders and their dragons. You focus on helping the Songwing!</Text><ItemID>0</ItemID><Priority>2</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWWildSongwing</NPC><Text>[i][c][ffb33e]Skaahhcoooouuu![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7853</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Check on the Songwing</Text></Title><Desc><Text>Check on the Songwing</Text></Desc></Data> + 0 + false + + + 7854 + Friendship2023Story02T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Sounds like that Songwing appreciates our help {{Name}}! Let’s group up and make sure everyone is okay!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’m glad to see everyone is safe, but I can’t help feeling disappointed there wasn’t another Songwing.@@I was hoping we would be able to find our new pal here a Songmate in time for the Friendship Festival.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I’m surprised she couldn’t find a Songmate with pipes like hers. She might even give my bandmate a run for his money.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait a minute Snotlout... This secret bandmate you keep bragging about. Just how similar do they sound to our Songmate friend here?</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Almost identical! But my Songwing has a bit more of an edge in his voice-</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Snotlout! Your bandmate was a Songwing this whole time?</Text><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh, wait did I say that last bit out loud...</Text><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This lonesome Songwing has been desperately searching for a Songmate and you’ve been hiding away a Songwing all this time! Of all the selfish.... I can’t believe you Snotlout. You’re taking us to that Songwing. Now.</Text><ItemID>0</ItemID><Priority>6</Priority></End><Objective><Pair><Key>Scene</Key><Value>ZipplebackIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_7854</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7854</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Return to Hiccup and the Group</Text></Title><Desc><Text>Return to Hiccup and the Group</Text></Desc></Data> + 0 + false + + + 7855 + Friendship2023Story02T17 + <Data><Setup><Scene>OpenOceanNightDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Seriously? Uuuggghhh fine. Whatever you say chief.@@I just hope you’ll be able to live with the fact that you broke up the greatest band the Archipelago has ever seen!@@Malestrum should be waiting to start rehearsal at my [c][3eebff]Sentry Station[/c][ffffff]...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Oh Malestrum it’s your best bud Snotlout!@@There’s an icky Songwing here to see you. But hey, if she isn’t your type, we can just keep jamming together!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship02T17CS.unity3d/PfGrp2023Friendship02T17CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>Name</Key><Value>Pfmarker_7856</Value></Pair><Pair><Key>Range</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Visit Snotlout’s Sentry Station</Text></Title><Desc><Text>Visit Snotlout’s Sentry Station</Text></Desc></Data> + 0 + false + + + 7856 + Friendship2023Story02T18 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Sorry Snotlout, but it seems like Malestrum’s made his decision. Come on everyone, let’s watch them fly off together.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023Friendship02T18CS.unity3d/PfGrp2023Friendship02T18CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWDagur</NPC><Text>Watching those two reminds me of two other lovebirds, don’t you think my beloved?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWMala</NPC><Text>I had the very same thought, my king. I’m simply elated we were able to bring those two together.</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Thank goodness you two let us know about that Songwing or she might still be suffering from that Dragon Pepper.@@And thank you {{Name}}, for lending us a hand once more. All is well that ends well!</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Nooo! Malestrum! Please, come back... and bring your valhallaly voice with you!@@We were going to make the most magnificent melodies the Archipelago had ever heard!</Text><ItemID>0</ItemID><Priority>4</Priority></End><Objective><Pair><Key>Scene</Key><Value>OpenOceanNightDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Hiccup</Text></Title><Desc><Text>Talk to Hiccup</Text></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 207818 + true + 100 + 100 + + 0 + + + + 100 +

8

+ 0 + + 1 + 611 + 207818 + true + 100 + 100 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207818 + true + 50 + 50 + + 0 + +
+ + 1 +

6

+ 20721 + + 1 + 10535 + 207818 + true + 1 + 1 + + 0 + +
+ false +
+ + 3128 + New Farming 282 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3128 + 7858 + 0 + + + + 1 + 207823 + 0 + + 7858 + Lily of the Valley + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley</Text></Title><Desc><Text>Fishlegs wants to see if the Lily of the Valley is edible for Slitherwings!</Text></Desc></Data> + 0 + false + + + 156 +

2

+ 0 + + 1 + 964 + 207823 + true + 156 + 156 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 207823 + true + 3 + 3 + + 0 + +
+ false +
+ + 3129 + New Farming 283 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,15 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3129 + 7859 + 0 + + + + 1 + 207824 + 0 + + 7859 + Lily of the Valley, Arctic Poppy + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>14</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>11164</Value></Pair><Pair><Key>ItemDescription</Key><Value>Arctic Poppy</Value></Pair><Pair><Key>Quantity</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley, Arctic Poppy</Text></Title><Desc><Text>There's been a request from a Trader for some specific produce</Text></Desc></Data> + 0 + false + + + 96 +

9

+ 0 + + 1 + 2000 + 207824 + true + 96 + 96 + + 0 + + + + 454 +

2

+ 0 + + 1 + 2439 + 207824 + true + 454 + 454 + + 0 + +
+ false +
+ + 3130 + New Farming 284 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,5 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3130 + 7860 + 0 + + + + 1 + 207825 + 0 + + 7860 + Lily of the Valley, Sunflower + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8211</Value></Pair><Pair><Key>ItemDescription</Key><Value>Sunflower</Value></Pair><Pair><Key>Quantity</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley, Sunflower</Text></Title><Desc><Text>There's been a request from a Trader for some specific produce</Text></Desc></Data> + 0 + false + + + 15 +

9

+ 0 + + 1 + 668 + 207825 + true + 15 + 15 + + 0 + + + + 208 +

2

+ 0 + + 1 + 10536 + 207825 + true + 208 + 208 + + 0 + +
+ false +
+ + 3131 + New Farming 285 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,3 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3131 + 7861 + 0 + + + + 1 + 207826 + 0 + + 7861 + Lily of the Valley, Peppermint + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>18</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>Location</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8623</Value></Pair><Pair><Key>ItemDescription</Key><Value>Peppermint</Value></Pair><Pair><Key>Quantity</Key><Value>12</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley, Peppermint</Text></Title><Desc><Text>There's been a request from a Trader for some specific produce</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207826 + true + 4 + 4 + + 0 + + + + 353 +

2

+ 0 + + 1 + 10537 + 207826 + true + 353 + 353 + + 0 + +
+ false +
+ + 3132 + New Farming 286 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,10 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3132 + 7862 + 0 + + + + 1 + 207827 + 0 + + 7862 + Lily of the Valley, Black Wool, White Wool + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>25</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8228</Value></Pair><Pair><Key>ItemDescription</Key><Value>Black Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>7146</Value></Pair><Pair><Key>ItemDescription</Key><Value>White Wool</Value></Pair><Pair><Key>Quantity</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley, Black Wool, White Wool</Text></Title><Desc><Text>Bucket put in a produce request, but this combination of items doesn't make much sense</Text></Desc></Data> + 0 + false + + + 4 +

9

+ 0 + + 1 + 1993 + 207827 + true + 4 + 4 + + 0 + + + + 795 +

2

+ 0 + + 1 + 10538 + 207827 + true + 795 + 795 + + 0 + +
+ false +
+ + 3133 + New Farming 287 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,15 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3133 + 7863 + 0 + + + + 1 + 207828 + 0 + + 7863 + Lily of the Valley, Toothache Plant, Mushrooms + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>8345</Value></Pair><Pair><Key>ItemDescription</Key><Value>Toothache Plant</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>13098</Value></Pair><Pair><Key>ItemDescription</Key><Value>Mushroom</Value></Pair><Pair><Key>Quantity</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley, Toothache Plant, Mushrooms</Text></Title><Desc><Text>Gothi insists these are needed with her medicines</Text></Desc></Data> + 0 + false + + + 60 +

9

+ 0 + + 1 + 1986 + 207828 + true + 60 + 60 + + 0 + + + + 1530 +

2

+ 0 + + 1 + 10539 + 207828 + true + 1530 + 1530 + + 0 + +
+ false +
+ + 3134 + New Farming 288 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3134 + 7864 + 0 + + + + 1 + 207829 + 0 + + 7864 + Lily of the Valley + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley</Text></Title><Desc><Text>There's been a request from Wingmaiden Island for a variety of produce</Text></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 207829 + true + 3 + 3 + + 0 + + + + 234 +

2

+ 0 + + 1 + 10540 + 207829 + true + 234 + 234 + + 0 + +
+ false +
+ + 3135 + New Farming 289 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3135 + 7865 + 0 + + + + 1 + 207830 + 0 + + 7865 + Lily of the Valley + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>40</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley</Text></Title><Desc><Text>Hiccup wants to see if he can extract the poison from certain plants</Text></Desc></Data> + 0 + false + + + 3 +

9

+ 0 + + 1 + 1955 + 207830 + true + 3 + 3 + + 0 + + + + 312 +

2

+ 0 + + 1 + 2125 + 207830 + true + 312 + 312 + + 0 + +
+ false +
+ + 3136 + New Farming 290 + 17 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random></Data> + false + 0 + + + 4 + 9,1 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3136 + 7866 + 0 + + + + 1 + 207831 + 0 + + 7866 + Lily of the Valley + <Data><Objective><Pair><Key>Scene</Key></Pair><Pair><Key>NPC</Key><Value>PfDWJobBoard</Value></Pair><Pair><Key>ItemID</Key><Value>20712</Value></Pair><Pair><Key>ItemDescription</Key><Value>Lily of the Valley</Value></Pair><Pair><Key>Quantity</Key><Value>50</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>Free</Key><Value>False</Value></Pair></Objective><Type>Delivery</Type><Title><Text>Lily of the Valley</Text></Title><Desc><Text>Heather needs help resupplying the Lab</Text></Desc></Data> + 0 + false + + + 390 +

2

+ 0 + + 1 + 1874 + 207831 + true + 390 + 390 + + 0 + + + + 3 +

9

+ 0 + + 1 + 1955 + 207831 + true + 3 + 3 + + 0 + +
+ false +
+ + 3137 + Thawfest2023Story01 + 12 +

+ <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory01T04.unity3d/PfGrp2023ThawfestStory01T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory01T05.unity3d/PfGrp2023ThawfestStory01T05</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory01T06.unity3d/PfGrp2023ThawfestStory01T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory01T08.unity3d/PfGrp2023ThawfestStory01T08</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory01T07.unity3d/PfGrp2023ThawfestStory01T07</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory01T09.unity3d/PfGrp2023ThawfestStory01T09</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWMulch</Asset><Location>PfMarker_Mulch</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWHeadmaster.unity3d/PfDWHeadmaster</Asset><Location>PfMarker_PfDWHeadmaster</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_PfDWAlchemist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWArchaeologist.unity3d/PfDWArchaeologist</Asset><Location>PfMarker_PfDWArchaeologist</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWSpitelout.unity3d/PfDWSpitelout</Asset><Location>PfMarker_PfDWSpitelout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSpitelout.unity3d/PfDWSpitelout</Asset><Location>PfMarker_PfDWSpitelout7867</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Gamer Changer [2023]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3158 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3137 + 7867 + 0 + + + 1 + 3137 + 7868 + 0 + + + 1 + 3137 + 7869 + 0 + + + 1 + 3137 + 7870 + 0 + + + 2 + 3137 + 3138 + 0 + + + 2 + 3137 + 3139 + 0 + + + 1 + 3137 + 7877 + 0 + + + 2 + 3137 + 3140 + 0 + + + 1 + 3137 + 7881 + 0 + + + + 1 + 207889 + 0 + + 3138 + Thawfest2023Story01T05 + 12 +

3137

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Next, we’ll have to gather up some wood, wool, and rope for our finish line.@@Well? Go on and gather those materials while I supervise! Chop-chop! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Gather Resources for the Finish Line</Text></Title><Desc><Text>Gather Resources for the Finish Line</Text></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3138 + 7871 + 0 + + + 1 + 3138 + 7872 + 0 + + + 1 + 3138 + 7873 + 0 + + + + 1 + 0 + 0 + + 7871 + Thawfest2023Story01T05S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ChoppableWood</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWWood</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Gather Wood for the Finish Line</Text></Title><Desc><Text>Gather Wood for the Finish Line</Text></Desc></Data> + 0 + false + + + 7872 + Thawfest2023Story01T05S02 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Rope</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRope</Value></Pair><Pair><Key>Quantity</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Locate Rope for the Finish Line</Text></Title><Desc><Text>Locate Rope for the Finish Line</Text></Desc></Data> + 0 + false + + + 7873 + Thawfest2023Story01T05S03 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Wool</Value></Pair><Pair><Key>Name</Key><Value>PfCollectWoolWhiteDO</Value></Pair><Pair><Key>Quantity</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Harvest Sheep's Wool for the Finish Line</Text></Title><Desc><Text>Harvest Sheep's Wool for the Finish Line</Text></Desc></Data> + 0 + false + + false + + + 3139 + Thawfest2023Story01T06 + 12 +

3137

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Now all that’s left is to put it all together!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory01T06CS.unity3d/PfGrp2023ThawfestStory01T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>That’s one finished finish line! Now I’ve got more delegating to do, so go and tell Dad I handled things here... and that you helped with some of the menial stuff too I guess.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Build the Finish Line</Text></Title><Desc><Text>Build the Finish Line</Text></Desc></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3139 + 7874 + 0 + + + 1 + 3139 + 7875 + 0 + + + 1 + 3139 + 7876 + 0 + + + + 1 + 0 + 0 + + 7874 + Thawfest2023Story01T05S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>BuildFinishline00</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>BuildFinishline00</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Build the First Section of the Finish Line</Text></Title><Desc><Text>Build the First Section of the Finish Line</Text></Desc></Data> + 0 + false + + + 7875 + Thawfest2023Story01T06S02 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>BuildFinishline01</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>BuildFinishline01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Build the Second Section of the Finish Line</Text></Title><Desc><Text>Build the Second Section of the Finish Line</Text></Desc></Data> + 0 + false + + + 7876 + Thawfest2023Story01T06S03 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>BuildFinishline02</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>BuildFinishline02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Build the Third Section of the Finish Line</Text></Title><Desc><Text>Build the Third Section of the Finish Line</Text></Desc></Data> + 0 + false + + false +
+ + 3140 + Thawfest2023Story01T08 + 12 +

3137

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Oh hello {{Name}}! Spitelout is looking for baby Gronckles you say? @@You have perfect timing! A bunch of rambunctious little Gronckles have been gorging themselves on granite deposits in the caves nearby.@@A full Gronckle is a happy Gronckle, so you should have no trouble rounding them up!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory01T08CS.unity3d/PfGrp2023ThawfestStory01T08CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Thawfest2023Story01T08</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3140 + 7878 + 0 + + + 1 + 3140 + 7879 + 0 + + + 1 + 3140 + 7880 + 0 + + + + 1 + 0 + 0 + + 7878 + Thawfest2023Story01T06S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_7878</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7878</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for Baby Gronckles</Text></Title><Desc><Text>Look for Baby Gronckles</Text></Desc></Data> + 0 + false + + + 7879 + Thawfest2023Story01T06S02 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>RS_DATA/PfDWGronckleBabyNPC.unity3d/PfDWGronckleBabyNPC</Asset><Location>PfMarker_7879Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Well done! Now we are finally ready to get things underway.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7879End</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>10</Value></Pair><Pair><Key>Proximity</Key><Value>10</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGronckleBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Lead the Baby Gronckle to Fishlegs</Text></Title><Desc><Text>Lead the Baby Gronckle to Fishlegs</Text></Desc><Reminder><Text>Don't leave the dragons behind!</Text></Reminder><Failure><Text>Oh no! You left the baby Gronckles behind!</Text></Failure></Data> + 0 + false + + + 7880 + Thawfest2023Story01T08S03 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Gather round Berkians, your previous champion is honored to present the first round of the new and vastly improved Thawfest Games.@@Instead of the boring ole Sheep Lug, we will be kicking off this year's tournament with the Baby Gronckle Lug!@@Competitors, take your places. </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_7880</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7880</Value></Pair><Pair><Key>Range</Key><Value>2</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Line Up for the Baby Gronckle Lug</Text></Title><Desc><Text>Line Up for the Baby Gronckle Lug</Text></Desc></Data> + 0 + false + + false +
+ + 7867 + Thawfest2023Story01T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_7882Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>In case you haven’t heard the talk around town, my dad’s got a few ideas for spicing up Thawfest this year.@@I’ve got to do some training to make sure I maintain the Jorgenson’s undefeated record, but you should find him if you’re interested in helping make Thawfest Games history!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpitelout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Spitelout</Text></Title><Desc><Text>Meet Spitelout</Text></Desc></Data> + 0 + false + + + 7868 + Thawfest2023Story01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Ah, you're that young Viking {{Name}} from the Opening Ceremony.@@Sounds like you’ve made quite an impression on the people of Berk. Say, what do you think of putting that reputation of yours to some good use?@@I had plenty of time on [c][3eebff]Storehouse Island[/c][ffffff]- after wrestling all the nearby Singetails into submission that is- to think up loads of different ways to make the Thawfest Games more exciting.@@Thing is, Stoick and I never quite saw eye to eye, so I worry his boy might not give me a chance. Maybe you could put in a good word with Hiccup for me?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Spitelout wants to organize the Thawfest Games this year? I’ve got a bad feeling about this...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Hiccup on Spitelout’s Behalf</Text></Title><Desc><Text>Speak with Hiccup on Spitelout’s Behalf</Text></Desc></Data> + 0 + false + + + 7869 + Thawfest2023Story01T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>To be honest, between our shipments disappearing off the coast of [c][3eebff]Tradewind Island[/c][ffffff] and our precious metal stores dwindling, I’ve already got my hands full.@@Having someone else run the Thawfest Games for me would actually be a huge relief...@@Okay, Spitelout can spice up Thawfest a bit this year. Provided he keeps his... improvements within reason, that is.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Ahhh well done! Now we can really go wild with the games this year! Ahem- while of course, keeping things within reason. </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpitelout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Return to Spitelout with Hiccup’s Answer </Text></Title><Desc><Text>Return to Spitelout with Hiccup’s Answer </Text></Desc></Data> + 0 + false + + + 7870 + Thawfest2023Story01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Since you’ve already proven quite capable, what do you say to helping me run the Thawfest Games this year?@@My lad could use a hand clearing out space for the first event in the Wilderness. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Good job helping out, but don’t you forget Dad put me in charge of the Thawfest Games Committee this year! </Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_ClearArea</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDebris</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Clear the Area for the First Event in the Wilderness</Text></Title><Desc><Text>Clear the Area for the First Event in the Wilderness</Text></Desc></Data> + 0 + false + + + 7877 + Thawfest2023Story01T07 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Now that our location is ready, we are just missing one last piece of the event. Baby Gronckles!@@Instead of the tired old sheep lug, this year’s competitors will be hauling those lava-belching baby rock chompers Fishlegs won’t stop blathering on about.@@Speaking of which, our resident Gronckle Dragon Expert ought to know where we could rustle some up. Go track him down, and bring back as many Gronckle hatchlings as you can!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFishlegs</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Fishlegs</Text></Title><Desc><Text>Speak with Fishlegs</Text></Desc></Data> + 0 + false + + + 7881 + Thawfest2023Story01T09 + <Data><Setup><Scene>HubWilderness01DO</Scene><Asset>PfDWGronckleBabyNPC</Asset><Location>PfMarker_7881Start</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>And we have a winner! Congrats to {{Name}}!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Only because the rest of them ran away!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Well, I suppose that means you weren't fast enough to catch 'em, eh lass?@@Not to worry though, you’ll all have the chance to redeem yourself during the next event. The new and improved Thawfest Games have only just begun!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubWilderness01DO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7881End</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>5</Value></Pair><Pair><Key>Proximity</Key><Value>7</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGronckleBabyNPC</Value></Pair></Objective><Type>Escort</Type><Title><Text>Compete in the Baby Gronckle Lug</Text></Title><Desc><Text>Compete in the Baby Gronckle Lug</Text></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207889 + true + 50 + 50 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 207889 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 207889 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207889 + true + 50 + 50 + + 0 + +
+ + 200 +

6

+ 20778 + + 1 + 10762 + 207889 + true + 200 + 200 + + 0 + +
+ false +
+ + 3141 + Thawfest2023Story02 + 12 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory02T00A.unity3d/PfGrp2023ThawfestStory02T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>ScuttleclawIslandDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory02T00B.unity3d/PfGrp2023ThawfestStory02T00B</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSpitelout.unity3d/PfDWSpitelout</Asset><Location>PfMarker_PfDWSpitelout7888</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWValka.unity3d/PfDWValka</Asset><Location>PfMarker_ValkaCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWBucket.unity3d/PfDWBucket</Asset><Location>PfMarker_BucketCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWMulch.unity3d/PfDWMulch</Asset><Location>PfMarker_MulchCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_EretCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWFishlegs.unity3d/PfDWFishlegs</Asset><Location>PfMarker_FishlegsCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Win, Lose or Thaw [2023]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3137 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3141 + 7882 + 0 + + + 1 + 3141 + 7883 + 0 + + + 1 + 3141 + 7884 + 0 + + + 2 + 3141 + 3142 + 0 + + + 1 + 3141 + 7888 + 0 + + + 2 + 3141 + 3143 + 0 + + + 1 + 3141 + 7891 + 0 + + + 1 + 3141 + 7892 + 0 + + + 2 + 3141 + 3144 + 0 + + + 1 + 3141 + 7894 + 0 + + + 1 + 3141 + 7895 + 0 + + + + 1 + 207891 + 0 + + 3142 + Thawfest2023Story02T04 + 12 +

3141

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>All we’ve got to do now is set up some targets and we’ll be good to go!@@I already gathered all the materials, so the least you could do is put them together while I yank out these splinters.@@Anywhere by those trees oughta be fine.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Not too shabby!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>1</Random><Title><Text>Build Targets for the Next Event</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + false + 4 + 1 + + 1 + 3142 + 7885 + 0 + + + 1 + 3142 + 7886 + 0 + + + 1 + 3142 + 7887 + 0 + + + + 1 + 0 + 0 + + 7885 + Thawfest2023Story02T04S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TargetSpot01</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>TargetSpot01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Build Targets for the Next Event</Text></Title><Desc><Text>Build Targets for the Next Event</Text></Desc></Data> + 0 + false + + + 7886 + Thawfest2023Story02T04S02 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TargetSpot02</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>TargetSpot02</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Build Targets for the Next Event</Text></Title><Desc><Text>Build Targets for the Next Event</Text></Desc></Data> + 0 + false + + + 7887 + Thawfest2023Story02T04S03 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_TargetSpot03</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>TargetSpot03</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Build Targets for the Next Event</Text></Title><Desc><Text>Build Targets for the Next Event</Text></Desc></Data> + 0 + false + + false + + + 3143 + Thawfest2023Story02T06 + 12 +

3141

+ <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory02T07CS.unity3d/PfGrp2023ThawfestStory02T07CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUIMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Nothing to worry about folks! Well {{Name}}, go on and fetch some water would ya? And be quick about it!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Collect Buckets and Water</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 3 + 1 + + 1 + 3143 + 7889 + 0 + + + 1 + 3143 + 7890 + 0 + + + + 1 + 0 + 0 + + 7889 + Thawfest2023Story02T06S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWBucketEmpty</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWBucketEmpty</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find a Water Bucket</Text></Title><Desc><Text>Find a Water Bucket</Text></Desc></Data> + 0 + false + + + 7890 + Thawfest2023Story02T06S02 + <Data><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_CollectWater</Value></Pair><Pair><Key>Name</Key><Value>PfDWCollectWater</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Fill the Bucket with Water</Text></Title><Desc><Text>Fill the Bucket with Water</Text></Desc></Data> + 0 + false + + false +
+ + 3144 + Thawfest2023Story02T09 + 12 +

3141

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Instead of the tired old Fly and Shoot, this year we will be doing the first-ever Fly and Shoot Dragon Hunters event!@@Whoever blasts the most of these Scuttleclaw poachers wins!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>ScuttleclawIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Participate in the Next Competition</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 4 + + 1 + 3144 + 7893 + 0 + + + + 1 + 0 + 0 + + 7893 + Thawfest2023Story02T09S01 + <Data><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>HunterShootPoint</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>HunterShootPoint</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Take Down Dragon Hunters at Scuttleclaw Island</Text></Title><Desc><Text>Take Down Dragon Hunters at Scuttleclaw Island</Text></Desc></Data> + 0 + false + + false +
+ + 7882 + Thawfest2023Story02T01 + <Data><Setup><Scene>HubBerkNewDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Are you ready for the next event {{Name}}? You might have gotten lucky in the first competition, but Thawfest isn't over yet! Come on, let’s get the next round set up.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWGobber</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet with Gobber in New Berk</Text></Title><Desc><Text>Meet with Gobber in New Berk</Text></Desc></Data> + 0 + false + + + 7883 + Thawfest2023Story02T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWGobber</NPC><Text>Ah {{Name}}, Spitelout told me you’d be coming by today!@@I have his special order ready somewhere around here. I made five replicas of his “one-of-a-kind axe,” just as he requested.@@If you ask me, nothing is one-of-a-kind soon as you make multiple of them, but I’ll leave the thinkin’ to you and Hiccup!@@Spitelout also asked me to test them first, but my aim isn’t quite what it used to be!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectSpiteloutAxe</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Collect</Type><Title><Text>Fetch Spitelout's Special Axes from Gobber</Text></Title><Desc><Text>Fetch Spitelout's Special Axes from Gobber</Text></Desc></Data> + 0 + false + + + 7884 + Thawfest2023Story02T03 + <Data><Setup><Scene>HubBerkNewDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Alright, next up, we need to collect some Monstrous Nightmare Gel.@@Unfortunately, Hookie and I got into a fight over an eel prank I played on him last week.@@He’s been temperamental ever since... Maybe he’ll let you get close enough to gather some?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>When is he going to get over it? Well, at least you were able to get us some Monstrous Nightmare Gel!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWHookfang</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Collect Monstrous Nightmare Gel from Hookfang</Text></Title><Desc><Text>Collect Monstrous Nightmare Gel from Hookfang</Text></Desc></Data> + 0 + false + + + 7888 + Thawfest2023Story02T05 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Now all that’s left is to report back on a job well done. You can handle that while I keep an eye on things here.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Perfect timing! Gather round, one and all.@@This year’s Axe Throwing Event is heating up with the help of a little Monstrous Nightmare Gel.@@Flaming Axe Throwing is about to begin!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpitelout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Report Back to Spitelout</Text></Title><Desc><Text>Report Back to Spitelout</Text></Desc></Data> + 0 + false + + + 7891 + Thawfest2023Story02T07 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Well? What are you waiting for, an invitation? Douse those flames! </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_7891</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_7891</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Fly Over the Burning Trees to Extinguish the Fire</Text></Title><Desc><Text>Fly Over the Burning Trees to Extinguish the Fire</Text></Desc></Data> + 0 + false + + + 7892 + Thawfest2023Story02T08 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWGobber.unity3d/PfDWGobber</Asset><Location>PfMarker_GobberCrowd</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Settle down all of ya!@@Say {{Name}}, have your dragon fire off a blast to get the crowd to stop yapping and focus up, will you?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Just a wee bit more excitement than we were expecting there folks, but your previous Thawfest champ has everything under control!@@Now, there’s no need to worry. The fire is out, and since Snotlout is the only one who managed to hit a target, he wins!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>We all hit our targets! The rest of them just burnt to a crisp. Just like the tree you almost started a forest fire with...</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Then I suppose it’s a good thing the next competition takes place far away from [c][3eebff]New Berk[/c][ffffff], because it’s way more dangerous!@@Come on all, to [c][3eebff]Scuttleclaw Island[/c][ffffff]!</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Location</Key><Value>CrowdControl01</Value></Pair><Pair><Key>Name</Key><Value>ShootDragon</Value></Pair><Pair><Key>ItemName</Key><Value>CrowdControl01</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Regain Control of the Crowd</Text></Title><Desc><Text>Regain Control of the Crowd</Text></Desc></Data> + 0 + false + + + 7894 + Thawfest2023Story02T10 + <Data><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory02T09CS.unity3d/PfGrp2023ThawfestStory02T09CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>{{Name}}, the twins are in trouble! You land to defend them while I cover you from the sky.</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Well done {{Name}}. Are you two alright?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Of course! We had everything under control.</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWRuffnut</NPC><Text>Yeah, getting knocked off Barf and Belch was all part of our plan to lull them into a false sense of security!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Exactly! But I guess your way works too.</Text><ItemID>0</ItemID><Priority>3</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>Uh, huh... How can we be sure these games are safe Spitelout?</Text><ItemID>0</ItemID><Priority>4</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>She might have a point... Dad, you don’t think these new games are maybe just a tiny bit too dangerous?</Text><ItemID>0</ItemID><Priority>5</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Nonsense! I was ready to swoop in and rescue them if needed, but I knew you had things under control Astrid.@@By my count, you and Stormfly managed to blast a total of 15 Dragon Hunters, making you the winner of this event!@@How about a round of applause for the fierce lass?</Text><ItemID>0</ItemID><Priority>6</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarkerRuffAndTuff</Value></Pair><Pair><Key>Name</Key><Value>STSandbuster01MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Rescue Ruff and Tuff from the Dragon Hunters</Text></Title><Desc><Text>Rescue Ruff and Tuff from the Dragon Hunters</Text></Desc></Data> + 0 + false + + + 7895 + Thawfest2023Story02T11 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey {{Name}} could I talk to you about something?@@Over here though, away from the crowd. It’s uhhh- a closed meeting!@@Yes, that’s right, official Thawfest Games Committee business only.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>You don’t think Astrid had a point about the new games being unsafe, right?@@I mean don’t get me wrong, the events my dad has been putting together are awesome!@@But... seeing Ruff and Tuff in trouble like that got me a bit worried. It’s just what if they really got hurt...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Bah, I’m sure I’m just overthinking it. Must be spending too much time with Hiccup, huh?@@Besides, now you, Astrid, and I are all tied for first place. No way I’d ever disgrace the Jorgenson name by giving up on our winning streak!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>ScuttleclawIslandDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSnotlout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with Snotlout</Text></Title><Desc><Text>Speak with Snotlout</Text></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207891 + true + 50 + 50 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 207891 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 207891 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207891 + true + 50 + 50 + + 0 + +
+ + 300 +

6

+ 20778 + + 1 + 10763 + 207891 + true + 300 + 300 + + 0 + +
+ false +
+ + 3145 + Thawfest2023Story03 + 50 +

+ <Data><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory03T00A.unity3d/PfGrp2023ThawfestStory03T00A</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfDWAlchemist.unity3d/PfDWAlchemist</Asset><Location>PfMarker_HeatherT7898</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfDWEret.unity3d/PfDWEret</Asset><Location>PfMarker_EretT7898</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfDWRuffnut.unity3d/PfDWRuffnut</Asset><Location>PfMarker_RuffnutT7898</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_TuffnutT7898</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>A Spite for Sore Eyes [2023]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 3141 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3145 + 7898 + 0 + + + 1 + 3145 + 7899 + 0 + + + 1 + 3145 + 7900 + 0 + + + 2 + 3145 + 3146 + 0 + + + 1 + 3145 + 7908 + 0 + + + 2 + 3145 + 3147 + 0 + + + 1 + 3145 + 7915 + 0 + + + 1 + 3145 + 7916 + 0 + + + 1 + 3145 + 7917 + 0 + + + 1 + 3145 + 7918 + 0 + + + 1 + 3145 + 7919 + 0 + + + 1 + 3145 + 7920 + 0 + + + 1 + 3145 + 7921 + 0 + + + 1 + 3145 + 7922 + 0 + + + 1 + 3145 + 7923 + 0 + + + 1 + 3145 + 7924 + 0 + + + + 1 + 207895 + 0 + + 3146 + Thawfest2023Story03T04 + 50 +

3145

+ <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Ready, set, go!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory03T04.unity3d/PfGrp2023ThawfestStory03T04</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Race Lap 1</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3146 + 7901 + 0 + + + + 1 + 0 + 0 + + 7901 + Thawfest2023Story03T04S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectFlightRingT7901</Value></Pair><Pair><Key>Name</Key><Value>FlightRingLapOne</Value></Pair><Pair><Key>Quantity</Key><Value>7</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Flight Rings during Lap One</Text></Title><Desc><Text>Collect the Flight Rings during Lap One</Text></Desc></Data> + 0 + false + + false + + + 3147 + Thawfest2023Story03T06 + 50 +

3145

+ <Data><Setup><Scene>HubTradewindIslandDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory03T06.unity3d/PfGrp2023ThawfestStory03T06</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory03T06CS.unity3d/PfGrp2023ThawfestStory03T06CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Reward><Asset /></Reward><Random>0</Random><Title><Text>Race Lap 2</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3147 + 7909 + 0 + + + + 1 + 0 + 0 + + 7909 + Thawfest2023Story03T06S01 + <Data><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectFlightRingT7909</Value></Pair><Pair><Key>Name</Key><Value>FlightRingLapTwo</Value></Pair><Pair><Key>Quantity</Key><Value>6</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Flight Rings during Lap Two</Text></Title><Desc><Text>Collect the Flight Rings during Lap Two</Text></Desc></Data> + 0 + false + + false +
+ + 7898 + Thawfest2023Story03T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Come one, come all to [c][3eebff]Tradewind Island[/c][ffffff] for the thrilling tiebreaker as {{Name}}, Astrid, and Snotlout contend for first place in Spitelout’s Racing Course!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Head to Tradewind Island for the Final Event</Text></Title><Desc><Text>Head to Tradewind Island for the Final Event</Text></Desc></Data> + 0 + false + + + 7899 + Thawfest2023Story03T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Seems Spitelout is nowhere to be found, but we can’t stop the games now, so I’ll take over.@@Please take your place on the starting line with the other contestants once you’re ready.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_StartingLine</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_StartingLine</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Make Your Way to the Starting Line</Text></Title><Desc><Text>Make Your Way to the Starting Line</Text></Desc></Data> + 0 + false + + + 7900 + Thawfest2023Story03T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>As I understand it, the first one to complete two laps around Spitelout’s course wins.@@Now, Mount your dragons.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory03T03CS.unity3d/PfGrp2023ThawfestStory03T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount {{dragon name}}</Text></Title><Desc><Text>Mount {{dragon name}}</Text></Desc><AutoComplete><Pair><Key>Mounted</Key><Value>True</Value></Pair></AutoComplete></Data> + 0 + false + + + 7908 + Thawfest2023Story03T05 + <Data><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectFlightLapRing</Value></Pair><Pair><Key>Name</Key><Value>PfCollectFlightLapRing</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Begin the Second Lap of the Race</Text></Title><Desc><Text>Begin the Second Lap of the Race</Text></Desc></Data> + 0 + false + + + 7915 + Thawfest2023Story03T07 + <Data><Setup><Scene>HubTradewindIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Look {{Name}}, I know we are in the middle of the tiebreaker here, but I’m starting to worry about my dad.@@I saw Kingstail fluttering around looking worried. And... is that Dad’s saddle?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>It is his saddle! He would never abandon it like this, he doesn’t even let me touch it! This can’t be good...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>What’s going on over here? Track Judge Fishlegs reporting in!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SpiteloutDragonSaddle</Value></Pair><Pair><Key>Name</Key><Value>PfCollectSpiteloutDragonSaddle</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Search for Spitelout</Text></Title><Desc><Text>Search for Spitelout</Text></Desc></Data> + 0 + false + + + 7916 + Thawfest2023Story03T08 + <Data><Setup><Scene>HubTradewindIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Has anyone seen my old man? I saw Kingstail wandering about and... hey wait a minute, I think I see some footprints here. Let’s see where they lead!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>The footprints just disappear here...</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Do you think something could have dragged him into that cave?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I suppose there’s only one way to find out...</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Footprints</Value></Pair><Pair><Key>Name</Key><Value>SandyFootprints</Value></Pair><Pair><Key>Range</Key><Value>4</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Investigate Footprints</Text></Title><Desc><Text>Investigate Footprints</Text></Desc></Data> + 0 + false + + + 7917 + Thawfest2023Story03T09 + <Data><Setup><Scene>HubTradewindIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Be careful, I think I see something sharp and pointy over there in the dark!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Glass fragments? Judging by the shape of these, I’d say we’ve found ourselves a Sandbuster Lair...@@But, no that doesn’t make any sense, their skin can’t handle sunlight.@@No Sandbuster could have grabbed Spitelout in broad daylight.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectSandbusterGlass</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Inspect the Shimmering Object</Text></Title><Desc><Text>Inspect the Shimmering Object</Text></Desc></Data> + 0 + false + + + 7918 + Thawfest2023Story03T10 + <Data><Setup><Scene>HubTradewindIslandDO</Scene><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Sandbusters or not, we aren’t stopping now! So, {{Name}}... you can go first.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory03T10CS.unity3d/PfGrp2023ThawfestStory03T10CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Did you see that? They sure are small for Sandbusters. </Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Because those aren’t Sandbusters, they are Smothering Smokebreaths!</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I knew that! I was just testing you, that's all.</Text><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>SandbusterLairINTDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Venture into the Lair</Text></Title><Desc><Text>Venture into the Lair</Text></Desc></Data> + 0 + false + + + 7919 + Thawfest2023Story03T11 + <Data><Setup><Scene>SandbusterLairINTDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutT7918</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>SandbusterLairINTDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsT7918</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]Is that... Spitelout?[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>First, these little buggers drag me in here by my helmet, and now they won’t even let me near their treasure!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Our missing supplies are all here! Have these Smothering Smokebreath really been stealing them all on their own?</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Not on their own! There’s something else down here... something big enough to drag me down through the sand...</Text><ItemID>0</ItemID><Priority>2</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory03T11CS.unity3d/PfGrp2023ThawfestStory03T11CS</Asset><ItemID>0</ItemID><Priority>3</Priority></End><Objective><Pair><Key>Scene</Key><Value>SandbusterLairINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_SpiteloutT7918</Value></Pair><Pair><Key>Name</Key><Value>PfDWSpitelout</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to Spitelout</Text></Title><Desc><Text>Go to Spitelout</Text></Desc></Data> + 0 + false + + + 7920 + Thawfest2023Story03T12 + <Data><Setup><Scene>SandbusterLairINTDO</Scene><Asset>PfDWWildSandbusterTitan</Asset><Location>PfMarker_Smokebuster</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>SandbusterLairINTDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutT7920</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>SandbusterLairINTDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsT7920</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>SandbusterLairINTDO</Scene><Asset>PfDWSpitelout</Asset><Location>PfMarker_SpiteloutT7920</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Smothering Smokebreath and a Sandbuster!@@I can’t believe that they've been cohabitating! This would be fascinating if I wasn’t so terrified.@@We need to move!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionConfirmDBDO</Asset><NPC>PfPlayer</NPC><Text>Escape from the "Smokebuster"?</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>SandbusterLairINTDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_T7920</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_T7920</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>5</Value></Pair><Pair><Key>ResetMarker</Key><Value>PfMarker_ChaseReset</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair><Pair><Key>GraceTime</Key><Value>1</Value></Pair><Pair><Key>Proximity</Key><Value>5</Value></Pair><Pair><Key>NPC</Key><Value>PfDWWildSandbusterTitan</Value></Pair></Objective><Type>Chase</Type><Title><Text>Get Away from the Smokebuster</Text></Title><Desc><Text>Get Away from the Smokebuster</Text></Desc><Reminder><Text>Get away from the Smokebuster!</Text></Reminder><Failure><Text>Oh no! The Smokebuster caught you!</Text></Failure></Data> + 0 + false + + + 7921 + Thawfest2023Story03T13 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Okay, we’ve got everyone, I’d say it’s time to make our exit!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>Cohabitating and cooperating! How did these dragon species develop a symbiotic relationship?@@Is the Smokebreath Ash that's covering the Sandbuster protecting it from the sun?@@Will I even make it out of here to ponder all of these questions? </Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory03T13CS.unity3d/PfGrp2023ThawfestStory03T13CS</Asset><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Escape the Sandbuster Lair</Text></Title><Desc><Text>Escape the Sandbuster Lair</Text></Desc></Data> + 0 + false + + + 7922 + Thawfest2023Story03T14 + <Data><Setup><Scene>HubTradewindIslandDO</Scene><Asset>PfDWSnotlout</Asset><Location>PfMarker_SnotloutT7921</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubTradewindIslandDO</Scene><Asset>PfDWSpitelout</Asset><Location>PfMarker_SpiteloutT7921</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubTradewindIslandDO</Scene><Asset>PfDWFishlegs</Asset><Location>PfMarker_FishlegsT7921</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Enough gabbing Fishlegs, it’s time for action.@@These dragons are giving us no choice. Come on Dad, let’s send them packing!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>We drove them off!</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Aye, well fought boy-o! You made the Jorgenson name proud today.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubTradewindIslandDO</Value></Pair><Pair><Key>Location</Key><Value>STSandbuster02Portal</Value></Pair><Pair><Key>Name</Key><Value>STSandbuster02MapDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Game</Type><Title><Text>Fend off the Smokebreath and the Smokebuster!</Text></Title><Desc><Text>Fend off the Smokebreath and the Smokebuster!</Text></Desc></Data> + 0 + false + + + 7923 + Thawfest2023Story03T15 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWFishlegs</NPC><Text>We had better let Hiccup know that we’ve solved our missing shipments and metal shortage problem in one fell swoop!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Those dragons were really hoarding the missing supplies? I’ll send Gobber and Grump to try and salvage whatever they can.@@Thanks for your help clearing this mystery up and keeping Spitelout’s Thaw Games under control.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Since Astrid won the race without realizing that you and Snotlout had taken off to help Spitelout, I am going to nullify the results of the tiebreaker.@@In fact, I think the Jorgensons deserve to keep their undefeated Thawfest streak for banding together and finding the missing shipments!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Let Hiccup know about the Stolen Supplies</Text></Title><Desc><Text>Let Hiccup know about the Stolen Supplies</Text></Desc></Data> + 0 + false + + + 7924 + Thawfest2023Story03T16 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSpitelout.unity3d/PfDWSpitelout</Asset><Location>PfMarker_SpiteloutT7924</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWSnotlout.unity3d/PfDWSnotlout</Asset><Location>PfMarker_Snotlout</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey {{Name}}, we have one more bit of official Thawfest committee business to conclude. Meet us back in New Berk would ya?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I wanted to thank you for being there for us Jorgensons this Thawfest, and all.@@Things really could have gotten out of hand if you weren’t there to lend a helping hand.</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Me lad and I both appreciate it. And I hope we can count on you when next year rolls around, I’ve already got a few ideas for even wilder events!</Text><ItemID>0</ItemID><Priority>1</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>I can’t wait...</Text><ItemID>0</ItemID><Priority>2</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWSpitelout</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Speak with the Jorgensons in New Berk</Text></Title><Desc><Text>Speak with the Jorgensons in New Berk</Text></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207895 + true + 50 + 50 + + 0 + +
+ + 150 +

1

+ 0 + + 1 + 168 + 207895 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 207895 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207895 + true + 50 + 50 + + 0 + +
+ + 400 +

6

+ 20778 + + 1 + 10764 + 207895 + true + 400 + 400 + + 0 + +
+ false +
+ + 3148 + SpringMaze 2023 T01 + 2 +

+ <Data><Repeat>0</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Thawfest Maze 2023 First Completion</Text></Title></Data> + false + 0 + + + 5 + 03-01-2023 12:00:00 PM,05-31-2023 07:00:00 PM + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3148 + 7925 + 0 + + + + 1 + 207893 + 0 + + 7925 + SpringMaze2023T01 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSpringDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Thawfest Maze Chest</Text></Title></Data> + 0 + false + + + 50 +

1

+ 0 + + 1 + 36 + 207893 + true + 50 + 50 + + 0 + + + + 300 +

6

+ 20778 + + 1 + 10638 + 207893 + true + 300 + 300 + + 0 + +
+ false +
+ + 3149 + SpringMaze 2023 T02 + 2 +

+ <Data><Repeat>1</Repeat><Hidden>1</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Thawfest Maze 2023 Subsequent Completions</Text></Title></Data> + false + 0 + + + 5 + 03-01-2023 12:00:00 PM,05-31-2023 07:00:00 PM + 0 + false + + + 3 + 3148 + 0 + false + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3149 + 7926 + 0 + + + + 1 + 207894 + 0 + + 7926 + SpringMaze2023T02 + <Data><Objective><Pair><Key>Scene</Key><Value>MazeSpringDO</Value></Pair><Pair><Key>Name</Key><Value>PfMazeSpringChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect the Thawfest Maze Chest</Text></Title></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207894 + true + 50 + 50 + + 0 + + + + 50 +

1

+ 0 + + 1 + 36 + 207894 + true + 50 + 50 + + 0 + +
+ false +
+ + 3150 + Thawfest2023Maze01 + 16 +

+ <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestMaze01T00A.unity3d/PfGrp2023ThawfestMaze01T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>The Golden Hue of Chicken</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 5 + 04-01-2023 07:00:00 PM,05-31-2023 07:00:00 PM + 0 + false + + + 3 + 3148 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3150 + 7927 + 0 + + + 1 + 3150 + 7928 + 0 + + + 1 + 3150 + 7929 + 0 + + + 1 + 3150 + 7930 + 0 + + + 2 + 3150 + 3151 + 0 + + + 1 + 3150 + 7932 + 0 + + + 2 + 3150 + 3152 + 0 + + + 1 + 3150 + 7934 + 0 + + + 2 + 3150 + 3153 + 0 + + + 1 + 3150 + 7936 + 0 + + + 2 + 3150 + 3154 + 0 + + + 1 + 3150 + 7938 + 0 + + + 2 + 3150 + 3155 + 0 + + + 1 + 3150 + 7940 + 0 + + + 2 + 3150 + 3156 + 0 + + + 1 + 3150 + 7942 + 0 + + + 2 + 3150 + 3157 + 0 + + + 1 + 3150 + 7944 + 0 + + + 1 + 3150 + 7945 + 0 + + + + 1 + 207912 + 0 + + 3151 + Thawfest2023Maze01T05 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3151 + 7931 + 0 + + + + 1 + 207913 + 0 + + 7931 + Thawfest2023Maze01T05S01 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>That's fifty medals, and there are lots more to come! I hope you're spacing this out, though. Doing this all-in-one go might be crazy.@@I'd probably do it all at once. Pain lets you know you are alive. Also puts hair on your face. (I know from experience.)</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7929</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 50 +

6

+ 20778 + + 1 + 10746 + 207913 + true + 50 + 50 + + 0 + +
+ false + + + 3152 + Thawfest2023Maze01T07 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3152 + 7933 + 0 + + + + 1 + 207914 + 0 + + 7933 + Thawfest2023Maze01T07S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>She's as good as a Changewing. Maybe better. Anyway, time to find the chest!@@If you're finishing puzzles, doors might start to lock down. If so, just look for the chest on your next maze challenge!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7933</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 50 +

6

+ 20778 + + 1 + 10747 + 207914 + true + 50 + 50 + + 0 + +
+ false +
+ + 3153 + Thawfest2023Maze01T09 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3153 + 7935 + 0 + + + + 1 + 207915 + 0 + + 7935 + Thawfest2023Maze01T09S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Right on! Head back to the entrance to unlock the next chest. I wonder what's inside...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7935</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 50 +

6

+ 20778 + + 1 + 10748 + 207915 + true + 50 + 50 + + 0 + +
+ false +
+ + 3154 + Thawfest2023Maze01T11 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3154 + 7937 + 0 + + + + 1 + 207916 + 0 + + 7937 + Thawfest2023Maze01T11S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chest four: find it now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7937</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 50 +

6

+ 20778 + + 1 + 10749 + 207916 + true + 50 + 50 + + 0 + +
+ false +
+ + 3155 + Thawfest2023Maze01T13 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3155 + 7939 + 0 + + + + 1 + 207917 + 0 + + 7939 + Thawfest2023Maze01T13S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Good job, Fishmeat! Way to hustle! You did okay too, {{Name}}. But it's chest-finding time!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7939</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 50 +

6

+ 20778 + + 1 + 10750 + 207917 + true + 50 + 50 + + 0 + +
+ false +
+ + 3156 + Thawfest2023Maze01T15 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3156 + 7941 + 0 + + + + 1 + 207918 + 0 + + 7941 + Thawfest2023Maze01T15S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Getting into the vibe of this, aren't you? You know what to do now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7941</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 50 +

6

+ 20778 + + 1 + 10751 + 207918 + true + 50 + 50 + + 0 + +
+ false +
+ + 3157 + Thawfest2023Maze01T17 + 16 +

3150

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3157 + 7943 + 0 + + + + 1 + 207919 + 0 + + 7943 + Thawfest2023Maze01T17S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Last chest time!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7943</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on a Locked Chest in the Maze</Text></Title><Desc><Text>{{Input}} on a Locked Chest in the Maze</Text></Desc></Data> + 0 + false + + + 100 +

6

+ 20778 + + 1 + 10752 + 207919 + true + 100 + 100 + + 0 + +
+ false +
+ + 7927 + Thawfest2023Maze01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>You there! You loved the maze, didn't you? Looking for an epic quest to win hundreds of medals? I see the 'yes' in your eyes!@@For the holiday, I've hidden medals in locked boxes throughout the maze. Just to warn you, this will be time-consuming and frustrating: just like me!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Enter the Thawfest Maze</Text></Title><Desc><Text>Enter the Thawfest Maze</Text></Desc></Data> + 0 + false + + + 7928 + Thawfest2023Maze01T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken is going to be the key master; you’ll have to find her and the first key.@@Here's a hint: You'll need an umbrella! Hahaha! Start a new maze challenge whenever you're ready.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, the first key! I was gonna place the chests somewhere crazy, but they're super heavy... You'll be able to find each chest in the entrance hub of the current room Chicken is in.</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken7928</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get the First Key in the Maze</Text></Title><Desc><Text>{{Input}} on Chicken to get the First Key in the Maze</Text></Desc></Data> + 0 + false + + + 7929 + Thawfest2023Maze01T03 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>The chest is nearby! Can you smell it? You are getting warmer!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest7929</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest7929</Value></Pair><Pair><Key>Range</Key><Value>30</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Hidden Chest in the Maze</Text></Title><Desc><Text>Find the Hidden Chest in the Maze</Text></Desc></Data> + 0 + false + + + 7930 + Thawfest2023Maze01T04 + <Data><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>SUPER WARM!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Location</Key><Value>PfTuffnutChest7929</Value></Pair><Pair><Key>Name</Key><Value>PfTuffnutChest7929</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Visit</Type><Title><Text>Find the Hidden Chest in the Maze</Text></Title><Desc><Text>Find the Hidden Chest in the Maze</Text></Desc></Data> + 0 + false + + + 7932 + Thawfest2023Maze01T06 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has another key. I instructed her to hide somewhere in the maze.@@She’s stealthy, but you [i]strike[/i] me as one of the smarter Vikings at this school. I'm sure you'll find her.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken7932</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get the Second Key in the Maze</Text></Title><Desc><Text>{{Input}} on Chicken to get the Second Key in the Maze</Text></Desc></Data> + 0 + false + + + 7934 + Thawfest2023Maze01T08 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken's all set. These hints are getting harder to think up! She, uh. She... uh... Sorry, I can barely keep [i]track[/i] of my thoughts right now!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken7934</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get the Third Key in the Maze</Text></Title><Desc><Text>{{Input}} on Chicken to get the Third Key in the Maze</Text></Desc></Data> + 0 + false + + + 7936 + Thawfest2023Maze01T10 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken has hidden again! Honestly, at this hour she's probably hangry. I hope she didn't get into my [i]sharp[/i] cheese.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken7936</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get the Fourth Key in the Maze</Text></Title><Desc><Text>{{Input}} on Chicken to get the Fourth Key in the Maze</Text></Desc></Data> + 0 + false + + + 7938 + Thawfest2023Maze01T12 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken needed a break, so I got Fishmeat to tag in. Do [b]NOT[/b] mention this to Fishlegs, please.@@ I had to drag Fishmeat here to help... Even though he's small, that dragon sure is as heavy as a [i]boulder[/i].</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfDWFishmeat7938</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Fishmeat to get the Fifth Key in the Maze</Text></Title><Desc><Text>{{Input}} on Fishmeat to get the Fifth Key in the Maze</Text></Desc></Data> + 0 + false + + + 7940 + Thawfest2023Maze01T14 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Chicken's back in it -- that we know for sure. Where she is...? That's still a complete [i]mystery[/i].</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken7940</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get the Sixth Key in the Maze</Text></Title><Desc><Text>{{Input}} on Chicken to get the Sixth Key in the Maze</Text></Desc></Data> + 0 + false + + + 7942 + Thawfest2023Maze01T16 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Okay, Chicken's doing one last one. I hope she's not too close to the lava... The last thing I need is some Berk Fried Chicken on my hands...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChicken7942</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on Chicken to get the Seventh Key in the Maze</Text></Title><Desc><Text>{{Input}} on Chicken to get the Seventh Key in the Maze</Text></Desc></Data> + 0 + false + + + 7944 + Thawfest2023Maze01T18 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Just kidding, there’s one more key and one big prize. You've collected four hundred so far, there are six hundred in the final chest! Worth it! Come see me.@@(This never gets old.)</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>MazeThawfestDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWTuffnut</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk with Tuffnut in the Maze</Text></Title><Desc><Text>Talk with Tuffnut in the Maze</Text></Desc></Data> + 0 + false + + + 7945 + Thawfest2023Maze01T19 + <Data><Setup><Scene>HubBerkNewDO</Scene><Asset>RS_DATA/PfDWTuffnut.unity3d/PfDWTuffnut</Asset><Location>PfMarker_Thawfest2023MazeT7945</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Were you afraid I was going to put you through more awfulness to get the last prize?@@Not this year! Float on over to New Berk to search for the final chest!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWTuffnut</NPC><Text>Great, you found it! This treasure hunt went pretty well after all: twists, turns, trivia... and Chicken!@@Happy Thawfest!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkNewDO</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>PfTuffnutChest7945</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>True</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Final Chest in New Berk</Text></Title><Desc><Text>{{Input}} on the Final Chest in New Berk</Text></Desc></Data> + 0 + false + + + 75 +

2

+ 0 + + 1 + 24 + 207912 + true + 75 + 75 + + 0 + +
+ + 300 +

1

+ 0 + + 1 + 318 + 207912 + true + 300 + 300 + + 0 + +
+ + 200 +

12

+ 0 + + 1 + 914 + 207912 + true + 200 + 200 + + 0 + +
+ + 600 +

6

+ 20778 + + 1 + 10745 + 207912 + true + 600 + 600 + + 0 + +
+ false +
+ + 3158 + Thawfest2023Story00 + 61 +

+ <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfGrp2023ThawfestStory00T00A.unity3d/PfGrp2023ThawfestStory00T00A</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Everyone Loves a Parade [2023]</Text></Title><Icon>RS_DATA/CollectDWIcons.unity3d/IcoThawfestMedal</Icon></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 7 + 20909 + 1 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3158 + 7946 + 0 + + + 1 + 3158 + 7947 + 0 + + + 1 + 3158 + 7948 + 0 + + + 1 + 3158 + 7949 + 0 + + + 1 + 3158 + 7950 + 0 + + + + 1 + 207920 + 0 + + 7946 + Thawfest2023Story00T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>We hold a Thawfest Ceremony on [c][3eebff]Old Berk [/c][ffffff] each year! It's traditional to do it there, even though we've moved. When you're ready, head on over!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Looks like that is just about everyone...</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Hiccup at Old Berk</Text></Title><Desc><Text>Meet Hiccup at Old Berk</Text></Desc></Data> + 0 + false + + + 7947 + Thawfest2023Story00T02 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait... I’m sorry {{Name}}, I forgot I promised to discuss some concerns brought to us by the Traders. If you can find Astrid, tell her I will be right back, but everyone should continue.</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>That Hiccup, always jumping headfirst into things. Thanks for the update {{Name}}</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWAstrid</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to Astrid</Text></Title><Desc><Text>Talk to Astrid</Text></Desc></Data> + 0 + false + + + 7948 + Thawfest2023Story00T03 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>I haven’t been able to find Snotlout yet, and he is needed for the Opening Ceremony.@@Could you help me look for him?</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]There he is- who is that with Snotlout…?[/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Thawfest2023Story00T03</Value></Pair><Pair><Key>Name</Key><Value>PfDWKingstailSpiteloutRider</Value></Pair><Pair><Key>Range</Key><Value>20</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Locate Snotlout and Hookfang</Text></Title><Desc><Text>Locate Snotlout and Hookfang</Text></Desc></Data> + 0 + false + + + 7949 + Thawfest2023Story00T04 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_2023ThawfestAstrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>…and somehow in your Terror Mail message, you failed to say you’d be making it to this year’s Thaw Games...</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>And who might you be?</Text><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Dad. This is {{Name}}. @@{{Name}}, meet my dad, Spitelout.</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>ClickableObjectT7949</Value></Pair><Pair><Key>Name</Key><Value>ClickObject</Value></Pair><Pair><Key>ItemName</Key><Value>ClickableObjectT7949</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Meet the Mysterious Viking</Text></Title><Desc><Text>Meet the Mysterious Viking</Text></Desc></Data> + 0 + false + + + 7950 + Thawfest2023Story00T05 + <Data><Setup><Scene>HubBerkDO</Scene><Asset>RS_DATA/PfDWAstrid.unity3d/PfDWAstrid</Asset><Location>PfMarker_2023ThawfestAstrid</Location><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Well, now that I’m here boy-o, how about we Jorgensons get these Thaw Games started!? Come on Kingstail!</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSnotlout</NPC><Text>Hey, hey wait up! {{Name}} is supposed to be lighting the Torch. Hey!</Text><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrp2023ThawfestStory00T05CS.unity3d/PfGrp2023ThawfestStory00T05CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWSpitelout</NPC><Text>Now that is how a Jorgenson does it. Let the Thaw Games begin! Oy oy oy!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubBerkDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Thawfest2023Story00T05</Value></Pair><Pair><Key>Name</Key><Value>Task05</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Chase after Spitelout</Text></Title><Desc><Text>Chase after Spitelout</Text></Desc></Data> + 0 + false + + + 50 +

2

+ 0 + + 1 + 19 + 207920 + true + 50 + 50 + + 0 + + + + 150 +

1

+ 0 + + 1 + 168 + 207920 + true + 150 + 150 + + 0 + +
+ + 150 +

8

+ 0 + + 1 + 622 + 207920 + true + 150 + 150 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 207920 + true + 50 + 50 + + 0 + +
+ + 100 +

6

+ 20778 + + 1 + 10761 + 207920 + true + 100 + 100 + + 0 + +
+ false +
+ + 3167 + Ragnarok 01 + 6 +

+ <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpRagnarok01T00.unity3d/PfGrpRagnarok01T00</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>An Unexpected Gift</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 1014 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3167 + 7969 + 0 + + + 2 + 3167 + 3168 + 0 + + + 2 + 3167 + 3169 + 0 + + + 1 + 3167 + 7972 + 0 + + + + 1 + 207945 + 0 + + 3168 + Ragnarok01T02 + 6 +

3167

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>A Metallic Gift</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3168 + 7970 + 0 + + + + 1 + 0 + 0 + + 7970 + Ragnarok01T02S01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfPlayer</NPC><Text>[i][c][ffb33e]I should go and check out the waters around the School to make sure this guest has someone greeting them upon their arrival![/c][ffffff][/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRagnarok01T02CS.unity3d/PfGrpRagnarok01T02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_AlvinShip</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_AlvinShip</Value></Pair><Pair><Key>Range</Key><Value>15</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Intercept the Ship</Text></Title><Desc><Text>Intercept the Ship</Text></Desc></Data> + 0 + false + + false + + + 3169 + Ragnarok01T03 + 6 +

3167

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Talk to Alvin</Text></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3169 + 7971 + 0 + + + + 1 + 207946 + 0 + + 7971 + Ragnarok01T03S01 + <Data><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpRagnarok01T03CS.unity3d/PfGrpRagnarok01T03CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlvin</NPC><Text>You crazy Berkians are as quick as ever!</Text><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_Ragnarok01Alvin</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_Ragnarok01Alvin</Value></Pair><Pair><Key>Range</Key><Value>10</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Meet Alvin</Text></Title><Desc><Text>Meet Alvin</Text></Desc></Data> + 0 + false + + + 1 +

6

+ 10996 + + 1 + 10869 + 207946 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 20834 + + 1 + 10867 + 207946 + true + 1 + 1 + + 0 + +
+ + 1 +

6

+ 20835 + + 1 + 10868 + 207946 + true + 1 + 1 + + 0 + +
+ false +
+ + 7969 + Ragnarok01T01 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>There you are {{Name}}, Hiccup would like a quick word with you over by the side of the School. </Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}}! Just who I was looking for. I have a quick matter to go deal with, but I need to keep a look out for a ship.@@Could you cover me for a short while? I doubt our guest would show up... unexpectedly... you know what, you got this, Toothless and I will be right back!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Meet Hiccup at the School</Text></Title><Desc><Text>Meet Hiccup at the School</Text></Desc></Data> + 0 + false + + + 7972 + Ragnarok01T04 + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAlvin</NPC><Text>There ya go boy, don't say I never did nothing good for Berk.@@Now, where's that chief of yours? I have a few things to discuss with that boy</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Well would you look at that! A Sword Stealer Egg as a gift from Alvin??@@You must have seriously impressed him, looks like you might just even be an honorary Outcast with being bestowed such a great gift!</Text><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Talk to the Headmaster</Text></Title><Desc><Text>Talk to the Headmaster</Text></Desc></Data> + 0 + false + + + 100 +

2

+ 0 + + 1 + 23 + 207945 + true + 100 + 100 + + 0 + +
+ + 50 +

1

+ 0 + + 1 + 36 + 207945 + true + 50 + 50 + + 0 + +
+ + 100 +

12

+ 0 + + 1 + 1157 + 207945 + true + 100 + 100 + + 0 + +
+ false +
+ + 3171 + Photo Mode School 01 + 6 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Photo Mode - School (Front)</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3171 + 7975 + 0 + + + + 1 + 207958 + 0 + + 7975 + PhotoModeSchoolT01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfPrtCollectItemPhotoSpot.unity3d/PfPrtCollectItemPhotoSpot</Asset><Location>PfMarker_PhotoSpotSchool01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>{{Name}}, I hear you want to take photos with your Dragon at the [c][3eebff]School[/c][ffffff]? That's great!@@[i]In order to do this, go and locate the [c][ffb33e]Area Marker[/c][ffffff] to trigger a special cutscene. Do note, you will need to take your own screenshots and/or recording![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPhotoModeSchoolT01CS.unity3d/PfGrpPhotoModeSchoolT01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PhotoSpotSchool01</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhotoSpotSchool01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Photo Spot at the School</Text></Title><Desc><Text>Go to the Photo Spot at the School</Text></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 207958 + true + 100 + 100 + + 0 + + + + 500 +

8

+ 0 + + 1 + 2247 + 207958 + true + 500 + 500 + + 0 + +
+ false +
+ + 3172 + Photo Mode School 02 + 6 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Photo Mode - School (Lab)</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3172 + 7976 + 0 + + + + 1 + 207948 + 0 + + 7976 + PhotoModeSchool02T01 + <Data><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfPrtCollectItemPhotoSpot.unity3d/PfPrtCollectItemPhotoSpot</Asset><Location>PfMarker_PhotoSpotSchool02</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>{{Name}}, I hear you want to take photos with your Dragon at the [c][3eebff]School Lab[/c][ffffff]? That's great!@@[i]In order to do this, go and locate the [c][ffb33e]Area Marker[/c][ffffff] to trigger a special cutscene. Do note, you will need to take your own screenshots and/or recording![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPhotoModeSchoolT02CS.unity3d/PfGrpPhotoModeSchoolT02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PhotoSpotSchool02</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhotoSpotSchool02</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Photo Spot at the School Lab</Text></Title><Desc><Text>Go to the Photo Spot at the School Lab</Text></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 207948 + true + 100 + 100 + + 0 + + + + 500 +

8

+ 0 + + 1 + 2247 + 207948 + true + 500 + 500 + + 0 + +
+ false +
+ + 3173 + Photo Mode Lookout 01 + 7 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Photo Mode - Sunset (Front)</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3173 + 7977 + 0 + + + + 1 + 207956 + 0 + + 7977 + PhotoModeLookoutT01 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfPrtCollectItemPhotoSpot.unity3d/PfPrtCollectItemPhotoSpot</Asset><Location>PfMarker_PhotoSpotLookout01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>{{Name}}, I hear you want to take photos with your Dragon at the [c][3eebff]Lookout[/c][ffffff]? That's great!@@[i]In order to do this, go and locate the [c][ffb33e]Area Marker[/c][ffffff] to trigger a special cutscene. Do note, you will need to take your own screenshots and/or recording![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPhotoModeLookoutT01CS.unity3d/PfGrpPhotoModeLookoutT01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PhotoSpotLookout01</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhotoSpotLookout01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Photo Spot at the Lookout</Text></Title><Desc><Text>Go to the Photo Spot at the Lookout</Text></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 207956 + true + 100 + 100 + + 0 + + + + 500 +

8

+ 0 + + 1 + 2247 + 207956 + true + 500 + 500 + + 0 + +
+ false +
+ + 3174 + Photo Mode Lookout 02 + 7 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Photo Mode - Sunset (Back)</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3174 + 7978 + 0 + + + + 1 + 207959 + 0 + + 7978 + PhotoModeLookoutT02 + <Data><Setup><Scene>HubLookoutDO</Scene><Asset>RS_DATA/PfPrtCollectItemPhotoSpot.unity3d/PfPrtCollectItemPhotoSpot</Asset><Location>PfMarker_PhotoSpotLookout01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWBotanist</NPC><Text>{{Name}}, I hear you want to take photos with your Dragon at the [c][3eebff]Lookout[/c][ffffff]? That's great!@@[i]In order to do this, go and locate the [c][ffb33e]Area Marker[/c][ffffff] to trigger a special cutscene. Do note, you will need to take your own screenshots and/or recording![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPhotoModeLookoutT02CS.unity3d/PfGrpPhotoModeLookoutT02CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubLookoutDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PhotoSpotLookout01</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhotoSpotLookout01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Photo Spot at the Lookout</Text></Title><Desc><Text>Go to the Photo Spot at the Lookout</Text></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 207959 + true + 100 + 100 + + 0 + + + + 500 +

1

+ 0 + + 1 + 518 + 207959 + true + 500 + 500 + + 0 + +
+ false +
+ + 3175 + Photo Mode Hidden World 01 + 25 +

+ <Data><Repeat>1</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Photo Mode - Hidden World</Text></Title></Data> + false + 0 + + + 2 + true + 0 + false + + + 3 + 999 + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 3175 + 7979 + 0 + + + + 1 + 207957 + 0 + + 7979 + PhotoModeHiddenWorldT01 + <Data><Setup><Scene>HubHiddenWorldNBDO</Scene><Asset>RS_DATA/PfPrtCollectItemPhotoSpot.unity3d/PfPrtCollectItemPhotoSpot</Asset><Location>PfMarker_PhotoSpotHiddenWorld01</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWArchaeologist</NPC><Text>{{Name}}, I hear you want to take photos with your Dragon in the [c][3eebff]Hidden World[/c][ffffff]? That's great!@@[i]In order to do this, go and locate the [c][ffb33e]Area Marker[/c][ffffff] to trigger a special cutscene. Do note, you will need to take your own screenshots and/or recording![/i]</Text><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpPhotoModeHiddenWorldT01CS.unity3d/PfGrpPhotoModeHiddenWorldT01CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubHiddenWorldNBDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_PhotoSpotHiddenWorld01</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_PhotoSpotHiddenWorld01</Value></Pair><Pair><Key>Range</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Go to the Photo Spot in the Hidden World</Text></Title><Desc><Text>Go to the Photo Spot in the Hidden World</Text></Desc></Data> + 0 + false + + + 100 +

1

+ 0 + + 1 + 38 + 207957 + true + 100 + 100 + + 0 + + + + 500 +

8

+ 0 + + 1 + 2247 + 207957 + true + 500 + 500 + + 0 + +
+ false +
+ + 999 + Quest 1 + 3 +

+ <Data><Setup><Scene>HubFTUEDO</Scene><Asset>RS_DATA/PfGrpQMMO_Off.unity3d/PfGrpQMMO_Off</Asset><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Setup><Scene>HubSchoolDO</Scene><Asset>RS_DATA/PfGrpFTUE2020T15.unity3d/PfGrpFTUE2020T15</Asset><Recursive>false</Recursive><Persistent>true</Persistent></Setup><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>New Student</Text><ID>922059</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 999 + 5930 + 0 + + + 1 + 999 + 5931 + 0 + + + 1 + 999 + 5932 + 0 + + + 2 + 999 + 2880 + 0 + + + 2 + 999 + 2881 + 0 + + + 1 + 999 + 5935 + 0 + + + 1 + 999 + 5936 + 0 + + + 1 + 999 + 5937 + 0 + + + 1 + 999 + 5938 + 0 + + + 2 + 999 + 2882 + 0 + + + 1 + 999 + 5940 + 0 + + + 1 + 999 + 5941 + 0 + + + 1 + 999 + 5942 + 0 + + + 2 + 999 + 2883 + 0 + + + 1 + 999 + 5944 + 0 + + + 1 + 999 + 6619 + 0 + + + + 8 + 201320 + 0 + + 2880 + FTUE2020-04 + 3 +

999

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>{{Input}} on cage</Text><ID>939800</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2880 + 5933 + 0 + + + + 8 + 0 + 0 + + 5933 + FTUE2020-04: Click cage + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Be careful. Even baby dragons can be dangerous when frightened. Step forward and {{input}} on the cage door to open it. After that, just trust your instincts!@@Hey, don't worry, you got this.</Text><ID>939805</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpFTUE2020T04CS.unity3d/PfGrpFTUE2020T04CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Type</Key><Value>DragonSelect</Value></Pair><Pair><Key>NPC</Key><Value>PfDWFTUECage</Value></Pair><Pair><Key>Asset</Key><Value>RS_DATA/PfUiFTUEDragonSelection.unity3d/PfUiFTUEDragonSelection</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>{{Input}} on the Dragon Cage</Text><ID>939804</ID></Title><Desc><Text>{{Input}} on the Dragon Cage</Text><ID>939804</ID></Desc><AutoComplete><Pair><Key>RaisedPetStage</Key><Value>BABY</Value></Pair></AutoComplete></Data> + 0 + false + + false + + + 2881 + FTUE2020-05 + 3 +

999

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Look for a way out of the cave</Text><ID>939801</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2881 + 5934 + 0 + + + + 8 + 206555 + 0 + + 5934 + FTUE2020-05: Look for a way out + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Whoa, that was unexpected. Who would have thought you two would bond so quickly?@@You’re a natural at this! Well, mission accomplished!@@Now, what do you say we find a way out of here?</Text><ID>939807</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This must be the heaviest part of the cave-in. With all these boulders piled up, this might be a dead end for us.@@{{dragon name}} is only a Tiny Tooth, so their dragon fire isn't quite enough to shatter that rock. But they are very close, and we can help them to grow.</Text><ID>939808</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveIn</Value></Pair><Pair><Key>Range</Key><Value>8</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Look for a way out of the Cave</Text><ID>939801</ID></Title><Desc><Text>Look for a way out of the Cave</Text><ID>939801</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 10996 + + 1 + 8399 + 206555 + true + 1 + 1 + + 0 + +
+ false +
+ + 2882 + FTUE2020-10 + 3 +

999

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset /></Reward><Random>0</Random><Title><Text>Light fire</Text><ID>939802</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2882 + 5939 + 0 + + + + 8 + 206242 + 0 + + 5939 + FTUE2020-10: Light fire + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>There’s a good spot for a signal fire. Would you ask {{dragon name}} to shoot it?</Text><ID>939810</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That’s not going to be enough; the fire is just too small...</Text><ID>939811</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_FireSpot</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonLitFirePit</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Fire Pit to Light a Signal Fire</Text><ID>942392</ID></Title><Desc><Text>{{Input}} on the Fire Pit to Light a Signal Fire</Text><ID>942392</ID></Desc></Data> + 0 + false + + false +
+ + 2883 + FTUE2020-14 + 3 +

999

+ <Data><Repeat>0</Repeat><Hidden>0</Hidden><Reward><Asset>PfUiMissionRewardDBDO</Asset></Reward><Random>0</Random><Title><Text>Follow Hiccup</Text><ID>939803</ID></Title></Data> + false + 0 + + + 2 + False + 0 + false + + + 1 + False + 0 + false + + + all + true + 4 + 1 + + 1 + 2883 + 5943 + 0 + + + + 8 + 207960 + 0 + + 5943 + FTUE2020-14: Follow Hiccup + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWToothlessAlphaHiccupRiderPortal</Asset><Location>PfMarker_HiccupAndToothless</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Now that you've got the hang of this, follow me and Toothless! Come on, I want to show you something cool!</Text><ID>939813</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Location</Key><Value>PfMarker_LoadSchool</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Follow Hiccup and Toothless</Text><ID>942393</ID></Title><Desc><Text>Follow Hiccup and Toothless</Text><ID>942393</ID></Desc></Data> + 0 + false + + + 1 +

6

+ 20882 + + 1 + 10897 + 207960 + true + 1 + 1 + + 0 + +
+ false +
+ + 5930 + FTUE2020-01: Talk to Hiccup + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Hey, are you all right, {{Name}}? That cave collapse was no joke. Give me a hand, will you? Use the movement controls to walk here and {{input}} on me.</Text><ID>939815</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I'm glad you're okay. I guess our investigation about potential Dragon Hunters lurking in these caves paid off, it seems they had a camp right under our feet this entire time.</Text><ID>939816</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHiccup</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Walk forward and {{input}} on Hiccup</Text><ID>929442</ID></Title></Data> + 0 + false + + + 5931 + FTUE2020-02: Find axe + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’d like to meet up with Toothless again, but there are a few cages here that might have dragons in them.@@We can’t just leave them. I’ll start opening this other one, do you think you could handle the one on your right?@@That lock looks rusted, though... Maybe there’s an axe somewhere around here...</Text><ID>939818</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWAxe</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Find the Axe in the Cave</Text><ID>939817</ID></Title><Desc><Text>Find the Axe in the Cave</Text><ID>939817</ID></Desc></Data> + 0 + false + + + 5932 + FTUE2020-03: Chop padlock + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Perfect! That axe looks strong enough. I'm sure it can chop the padlock off the dragon cage without a problem!</Text><ID>939820</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right, that did the trick!</Text><ID>939821</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>ChoppableCage</Value></Pair><Pair><Key>Name</Key><Value>Chop</Value></Pair><Pair><Key>ItemName</Key><Value>PfDragonCageChop</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Chop the Padlock on the Dragon Cage</Text><ID>939819</ID></Title><Desc><Text>Chop the Padlock on the Dragon Cage</Text><ID>939819</ID></Desc></Data> + 0 + false + + + 5935 + FTUE2020-06: Age Up + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupCaveIn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>This will allow us to take a dragon straight to Broad Wing Stage! I'll show you how.</Text><ID>939823</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>AgeUp</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Age Up {{dragon name}}</Text><ID>942394</ID></Title><Desc><Text>Age Up {{dragon name}}</Text><ID>942394</ID></Desc><AutoComplete><Pair><Key>RaisedPetStage</Key><Value>ADULT</Value></Pair></AutoComplete></Data> + 0 + false + + + 5936 + FTUE2020-07: Shoot + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupCaveIn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>All right, let's try this now! Look for a weak spot in the rocks, then have {{dragon name}} shoot some fireballs!@@{{Input}} on the cave-in and select the [c][3eebff]Fire[/c][ffffff] button.</Text><ID>939825</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfCaveInTarget</Value></Pair><Pair><Key>Name</Key><Value>LightFire</Value></Pair><Pair><Key>ItemName</Key><Value>PfCaveInTarget</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>{{Input}} on the Cave-In</Text><ID>942395</ID></Title><Desc><Text>{{Input}} on the Cave-In</Text><ID>942395</ID></Desc></Data> + 0 + false + + + 5937 + FTUE2020-08: Collect Box + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupCaveIn</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>That was perfect!</Text><ID>939828</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Wait... What's that? Is that a chest?</Text><ID>939829</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>A box of dragon eggs...@@Those Dragon Hunters are getting bolder than we expected.</Text><ID>941113</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfCollectDWOpenArcticChest</Value></Pair><Pair><Key>Name</Key><Value>PfCollectDWOpenArcticChest</Value></Pair><Pair><Key>Quantity</Key><Value>1</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Pick up the Chest</Text><ID>939827</ID></Title><Desc><Text>Pick up the Chest</Text><ID>939827</ID></Desc></Data> + 0 + false + + + 5938 + FTUE2020-09: Exit cave + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupChest</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Well, one problem at a time. {{Name}}, can you follow the path of the cave and figure out a way to set up a signal? @@My friends should be nearby, they'll be able to help us out!</Text><ID>939831</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfMarker_CaveExit</Value></Pair><Pair><Key>Range</Key><Value>3</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Visit</Type><Title><Text>Leave the Cave</Text><ID>939830</ID></Title><Desc><Text>Leave the Cave</Text><ID>939830</ID></Desc></Data> + 0 + false + + + 5940 + FTUE2020-11: Collect Leaves + <Data><Setup><Scene>HubFTUEDO</Scene><Asset>PfDWHiccup</Asset><Location>PfMarker_HiccupFire</Location><Recursive>false</Recursive><Persistent>false</Persistent></Setup><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>I’ll get some more wood stacked; can you grab some green leaves to help make this fire more smokey?</Text><ID>939833</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>CutScene</Type><Asset>RS_DATA/PfGrpFTUE2020T11CS.unity3d/PfGrpFTUE2020T11CS</Asset><ItemID>0</ItemID><Priority>0</Priority></End><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWAstrid</NPC><Text>There you are! Glad to see you're safe. @@Oh? I don’t think we’ve met, have we?@@{{Name}}? It's great to meet you, I’m Astrid. Seems that Hiccup's gotten himself in over his head again, huh? @@He's lucky he has good people like you around to help him out. And that’s one incredible dragon you’ve found, wow!</Text><ID>941114</ID><ItemID>0</ItemID><Priority>1</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Name</Key><Value>PfCollectFTUELeaf</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Collect Green Leaves</Text><ID>942396</ID></Title><Desc><Text>Collect Green Leaves</Text><ID>942396</ID></Desc></Data> + 0 + false + + + 5941 + FTUE2020-12: Mount + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>{{Name}} bonded with {{dragon name}} right away, you should’ve seen it, Astrid. I bet they’ll be flying together in no time. Speaking of which...@@{{Name}} let’s do a quick flying lesson. I’ll show you the ropes!@@First, {{input}} on the [c][3eebff]Mount[/c][ffffff] button to climb aboard your dragon.</Text><ID>939835</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><Objective><Pair><Key>Name</Key><Value>MountDragon</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Mount {{dragon name}}</Text><ID>939834</ID></Title><Desc><Text>Mount {{dragon name}}</Text><ID>939834</ID></Desc><AutoComplete><Pair><Key>Mounted</Key><Value>true</Value></Pair></AutoComplete></Data> + 0 + false + + + 5942 + FTUE2020-13: Fly through rings + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Alright! {{dragon name}} is ready to go. Now, you just have to learn how to fly! Why don't you get used to the controls and soar through these rings?@@{{Input}} on the [c][3eebff]Jump[/c][ffffff] button [c][3eebff]twice[/c][ffffff] to get up into the air and we can go from there.</Text><ID>939837</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>You're a natural!</Text><ID>905008</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubFTUEDO</Value></Pair><Pair><Key>Location</Key><Value>PfDWToothlessAlphaGuide</Value></Pair><Pair><Key>Name</Key><Value>PfCollectRing</Value></Pair><Pair><Key>Quantity</Key><Value>5</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Collect</Type><Title><Text>Fly through the Rings</Text><ID>938870</ID></Title><Desc><Text>Fly through the Rings</Text><ID>938870</ID></Desc></Data> + 0 + false + + + 5944 + FTUE2020-15: Deliver Headmaster + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHiccup</NPC><Text>Welcome to the School of Dragons! I have a feeling you'll fit right in.@@Can you give the box of dragon eggs that you found to the Headmaster of the School? You can't miss him – he's the stout one with all the hair!</Text><ID>939840</ID><ItemID>0</ItemID><Priority>1</Priority></Offer><Offer><Type>CutScene</Type><Asset>RS_DATA/PfGrpFTUE2020T14CS.unity3d/PfGrpFTUE2020T14CS</Asset><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>You come highly recommended from the Chieftain of Berk himself. Welcome, {{Name}}. So, are you ready to learn how to become the Ultimate Dragon Trainer?</Text><ID>939841</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>NPC</Key><Value>PfDWHeadmaster</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Meet</Type><Title><Text>Deliver the Dragon Eggs to the Headmaster</Text><ID>942397</ID></Title><Desc><Text>Deliver the Dragon Eggs to the Headmaster</Text><ID>942397</ID></Desc></Data> + 0 + false + + + 6619 + FTUE2020-16: Explain Branch Quest + <Data><Offer><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Now {{Name}}, you can learn about the many things we have to offer here at the School through our [c][3eebff]Branch Quests[/c][ffffff]</Text><ID>941799</ID><ItemID>0</ItemID><Priority>0</Priority></Offer><End><Type>Popup</Type><Asset>PfUiMissionActionDBDO</Asset><NPC>PfDWHeadmaster</NPC><Text>Feel free to also explore the campus, you might even encounter other students. @@We are happy to have you here with us!</Text><ID>941800</ID><ItemID>0</ItemID><Priority>0</Priority></End><Objective><Pair><Key>Scene</Key><Value>HubSchoolDO</Value></Pair><Pair><Key>Name</Key><Value>CompleteTutorial</Value></Pair><Pair><Key>ItemName</Key><Value>BranchUiTutorial</Value></Pair><Pair><Key>Time</Key><Value>0</Value></Pair><Pair><Key>HideArrow</Key><Value>False</Value></Pair></Objective><Type>Action</Type><Title><Text>Check out the Branch Quests</Text><ID>941798</ID></Title><Desc><Text>Check out the Branch Quests</Text><ID>941798</ID></Desc></Data> + 0 + false + + + 5 +

1

+ 0 + + 1 + 3 + 201320 + true + 5 + 5 + + 0 + +
+ + 100 +

2

+ 0 + + 1 + 23 + 201320 + true + 100 + 100 + + 0 + +
+ + 50 +

8

+ 0 + + 1 + 609 + 201320 + true + 50 + 50 + + 0 + +
+ + 50 +

12

+ 0 + + 1 + 913 + 201320 + true + 50 + 50 + + 0 + +
+ false +
+ diff --git a/src/Schema/DefaultMissions.cs b/src/Schema/DefaultMissions.cs new file mode 100644 index 0000000..48fe2be --- /dev/null +++ b/src/Schema/DefaultMissions.cs @@ -0,0 +1,18 @@ +using System.Xml.Serialization; + +namespace sodoff.Schema; + +// NOTE: This schema is NOT used by the client +// This is a schema specific to the sodoff server +[XmlRoot(ElementName = "DefaultMissions", Namespace = "")] +[Serializable] +public class DefaultMissions +{ + [XmlArray(ElementName = "Active")] + [XmlArrayItem("id")] + public int[] Active { get; set; } + + [XmlArray(ElementName = "Upcoming")] + [XmlArrayItem("id")] + public int[] Upcoming { get; set; } +} diff --git a/src/Schema/MissionPair.cs b/src/Schema/MissionPair.cs new file mode 100644 index 0000000..46347a8 --- /dev/null +++ b/src/Schema/MissionPair.cs @@ -0,0 +1,14 @@ +using System.Xml.Serialization; + +namespace sodoff.Schema; + +[XmlRoot(ElementName = "MP", Namespace = "")] +[Serializable] +public class MissionPair +{ + [XmlElement(ElementName = "MID")] + public int? MissionID { get; set; } + + [XmlElement(ElementName = "VID")] + public int? VersionID { get; set; } +} diff --git a/src/Schema/MissionRequestFilterV2.cs b/src/Schema/MissionRequestFilterV2.cs new file mode 100644 index 0000000..e29fd78 --- /dev/null +++ b/src/Schema/MissionRequestFilterV2.cs @@ -0,0 +1,29 @@ +using System.Xml.Serialization; + +namespace sodoff.Schema; + +[XmlRoot(ElementName = "RequestFilter", Namespace = "")] +[Serializable] +public class MissionRequestFilterV2 +{ + [XmlElement(ElementName = "MGID")] + public int[] MissionGroupIDs { get; set; } + + [XmlElement(ElementName = "MP")] + public List MissionPair { get; set; } + + [XmlElement(ElementName = "TID")] + public int[] TaskIDList { get; set; } + + [XmlElement(ElementName = "PID")] + public int? ProductID { get; set; } + + [XmlElement(ElementName = "S")] + public int? SearchDepth { get; set; } + + [XmlElement(ElementName = "GCM")] + public bool? GetCompletedMission { get; set; } + + [XmlElement(ElementName = "PGID")] + public int ProductGroupID; +} diff --git a/src/Services/KeyValueService.cs b/src/Services/KeyValueService.cs index 756b943..646d5dc 100644 --- a/src/Services/KeyValueService.cs +++ b/src/Services/KeyValueService.cs @@ -35,7 +35,8 @@ public class KeyValueService { }; exists = false; } - + if (schemaData is null || schemaData.Pairs is null) + return true; // Update or create the key-value pairs foreach (var p in schemaData.Pairs) { if (string.IsNullOrEmpty(p.PairValue)) diff --git a/src/Services/MissionService.cs b/src/Services/MissionService.cs index d212440..ab51c43 100644 --- a/src/Services/MissionService.cs +++ b/src/Services/MissionService.cs @@ -36,10 +36,16 @@ public class MissionService { if (completed) { Mission mission = GetMissionWithProgress(missionId, userId); if (AllMissionsCompleted(mission) && AllTasksCompleted(mission)) { + // Get mission rewards result.Add(new MissionCompletedResult { MissionID = missionId, Rewards = mission.Rewards.ToArray() }); + // Update mission from active to completed + MissionState? missionState = ctx.Vikings.FirstOrDefault(x => x.Id == userId)!.MissionStates.FirstOrDefault(x => x.MissionId == missionId); + if (missionState != null && missionState.MissionStatus == MissionStatus.Active) + missionState.MissionStatus = MissionStatus.Completed; + ctx.SaveChanges(); } } return result; @@ -75,6 +81,23 @@ public class MissionService { } } + public void SetUpMissions(Viking viking) { + viking.MissionStates = new List(); + foreach (int m in missionStore.GetActiveMissions()) { + viking.MissionStates.Add(new MissionState { + MissionId = m, + MissionStatus = MissionStatus.Active + }); + } + + foreach (int m in missionStore.GetUpcomingMissions()) { + viking.MissionStates.Add(new MissionState { + MissionId = m, + MissionStatus = MissionStatus.Upcoming + }); + } + } + private void SetTaskProgressDB(int missionId, int taskId, string userId, bool completed, string xmlPayload) { Model.TaskStatus? status = ctx.TaskStatuses.FirstOrDefault(task => task.Id == taskId && task.MissionId == missionId && task.VikingId == userId); diff --git a/src/Services/MissionStoreSingleton.cs b/src/Services/MissionStoreSingleton.cs index 527ab7f..1596e58 100644 --- a/src/Services/MissionStoreSingleton.cs +++ b/src/Services/MissionStoreSingleton.cs @@ -6,18 +6,31 @@ namespace sodoff.Services; public class MissionStoreSingleton { private Dictionary missions = new(); + private int[] activeMissions; + private int[] upcomingMissions; public MissionStoreSingleton() { ServerMissionArray missionArray = XmlUtil.DeserializeXml(XmlUtil.ReadResourceXmlString("missions")); + DefaultMissions defaultMissions = XmlUtil.DeserializeXml(XmlUtil.ReadResourceXmlString("defaultmissionlist")); foreach (var mission in missionArray.MissionDataArray) { SetUpRecursive(mission); } + activeMissions = defaultMissions.Active; + upcomingMissions = defaultMissions.Upcoming; } public Mission GetMission(int missionID) { return DeepCopy(missions[missionID]); } + public int[] GetActiveMissions() { + return activeMissions; + } + + public int[] GetUpcomingMissions() { + return upcomingMissions; + } + private void SetUpRecursive(Mission mission) { missions.Add(mission.MissionID, mission); foreach (var innerMission in mission.Missions) { diff --git a/src/sodoff.csproj b/src/sodoff.csproj index d29e1c9..0dcc75f 100644 --- a/src/sodoff.csproj +++ b/src/sodoff.csproj @@ -20,6 +20,7 @@ + @@ -57,5 +58,8 @@ PreserveNewest + + PreserveNewest +