diff --git a/src/Controllers/Common/ContentController.cs b/src/Controllers/Common/ContentController.cs index a1c7f70..bdd436d 100644 --- a/src/Controllers/Common/ContentController.cs +++ b/src/Controllers/Common/ContentController.cs @@ -13,10 +13,12 @@ public class ContentController : Controller { private readonly DBContext ctx; private KeyValueService keyValueService; private ItemService itemService; - public ContentController(DBContext ctx, KeyValueService keyValueService, ItemService itemService) { + private MissionService missionService; + public ContentController(DBContext ctx, KeyValueService keyValueService, ItemService itemService, MissionService missionService) { this.ctx = ctx; this.keyValueService = keyValueService; this.itemService = itemService; + this.missionService = missionService; } [HttpPost] @@ -452,26 +454,12 @@ public class ContentController : Controller { [Route("V2/ContentWebService.asmx/GetUserActiveMissionState")] public IActionResult GetUserActiveMissionState([FromForm] string apiToken, [FromForm] string userId) { Session? session = ctx.Sessions.FirstOrDefault(s => s.ApiToken == apiToken); - UserMissionStateResult result = new UserMissionStateResult { Missions = new List() }; - Mission tutorial = XmlUtil.DeserializeXml(XmlUtil.ReadResourceXmlString("tutorialmission")); - - // Update the mission with completed tasks - List taskStatuses = ctx.TaskStatuses.Where(e => e.VikingId == userId && e.MissionId == tutorial.MissionID).ToList(); - foreach (var task in taskStatuses) { - RuleItem? rule = tutorial.MissionRule.Criteria.RuleItems.Find(x => x.ID == task.Id); - if (rule != null && task.Completed) rule.Complete = 1; - - Schema.Task? t = tutorial.Tasks.Find(x => x.TaskID == task.Id); - if (t != null) { - if (task.Completed) t.Completed = 1; - t.Payload = task.Payload; - } - } - - result.Missions.Add(tutorial); - if (session 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 @@ -499,24 +487,17 @@ public class ContentController : Controller { if (session is null || session.VikingId != userId) return Ok(new SetTaskStateResult { Success = false, Status = SetTaskStateStatus.Unknown }); - Model.TaskStatus? status = ctx.TaskStatuses.FirstOrDefault(task => task.Id == taskId && task.MissionId == missionId && task.VikingId == userId); + List results = missionService.UpdateTaskProgress(missionId, taskId, userId, completed, xmlPayload); - if (status is null) { - status = new Model.TaskStatus { - Id = taskId, - MissionId = missionId, - VikingId = userId, - Payload = xmlPayload, - Completed = completed - }; - ctx.TaskStatuses.Add(status); - } else { - status.Payload = xmlPayload; - status.Completed = completed; - } - ctx.SaveChanges(); + SetTaskStateResult taskResult = new SetTaskStateResult { + Success = true, + Status = SetTaskStateStatus.TaskCanBeDone, + }; - return Ok(new SetTaskStateResult { Success = true, Status = SetTaskStateStatus.TaskCanBeDone }); + if (results.Count > 0) + taskResult.MissionsCompleted = results.ToArray(); + + return Ok(taskResult); } private RaisedPetData GetRaisedPetDataFromDragon (Dragon dragon) { diff --git a/src/Program.cs b/src/Program.cs index d5f069a..14b7387 100644 --- a/src/Program.cs +++ b/src/Program.cs @@ -14,6 +14,8 @@ builder.Services.AddControllers(options => { builder.Services.AddDbContext(); builder.Services.AddScoped(); builder.Services.AddSingleton(); +builder.Services.AddSingleton(); +builder.Services.AddScoped(); var app = builder.Build(); diff --git a/src/Resources/missions.xml b/src/Resources/missions.xml new file mode 100644 index 0000000..559b9f5 --- /dev/null +++ b/src/Resources/missions.xml @@ -0,0 +1,481 @@ + + + + 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 diff --git a/src/Resources/store.xml b/src/Resources/store.xml index 198ad04..66eb66c 100644 --- a/src/Resources/store.xml +++ b/src/Resources/store.xml @@ -70416,4 +70416,23711 @@ + + 102 + Dragons Treasure Store + Store for treasure type items + + RS_SHARED/DWDragonsSkinsChangewingDO.unity3d/PfDWChangewingSnow + + 424 + Dragons ColorKits + + 0 + + + 436 + Dragons Bundle + + 0 + + + 567 + Hot Deals Skins + + 0 + + 0 + 300 + 0 + Contains 1x Boulder, 1x Aquatic, 1x Frost and 1x Viridis Changewing Skin at a discount! + RS_SHARED/DWDragonsSkinsChangewingDO.unity3d/IcoDWChangewingSnowSkin + -1 + 10824 + Changewing Skins Bundle + false + + + + Bundle + 10820 + 0 + 0 + 0 + 0 + + + Bundle + 10821 + 0 + 0 + 0 + 0 + + + Bundle + 10822 + 0 + 0 + 0 + 0 + + + Bundle + 10823 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWOldMapArctic + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 3200 + 0 + + Get 4 Expansions at a 25% discount! + --Return To Dragon Island Expansion + --Battle for the Edge Expansion + --Call of the Death Song Expansion + --Icestorm Island Expansion + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWOldMapArctic + 1 + 12487 + Dragon's Expansion Bundle + false + + + + Bundle + 10995 + 0 + 0 + 0 + 0 + + + Bundle + 11862 + 0 + 0 + 0 + 0 + + + Bundle + 12437 + 0 + 0 + 0 + 0 + + + Bundle + 13026 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 3900 + 0 + Eggs of the Thunderpede Screaming Death, Eruptodon, and Catastrophic Quaken with 4 Broad Wing Age Up Tickets and a Boulder Stable. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 13166 + Boulder Class Bundle + false + + + + Bundle + 8978 + 0 + 1 + 0 + 0 + + + Bundle + 12368 + 0 + 1 + 0 + 0 + + + Bundle + 10796 + 0 + 1 + 0 + 0 + + + Bundle + 13018 + 0 + 1 + 0 + 0 + + + Bundle + 12301 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 4 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/PfDWAvWingsFDragonArmorFlightmare.unity3d/PfDWAvWingsFDragonArmorFlightmare + + Gender + F + 0 + + + ToggleWings + True + 0 + + + FlightSuit + True + 0 + + + ElementType + PARALYSIS + 0 + + + 34 + Avatar Parts + IcoAvatarParts + 0 + + + 464 + Dragons Flight Suits + + 0 + + + 228 + FlightSuitWing + + 0 + + 0 + 1000 + 0 + Dragon Armor to match the ghostly Flightmare! + RS_SHARED/DWAvatarWingsFDragonArmorFlightmare01.unity3d/IcoDWAvatarDragonArmorFlightmare + -1 + 16724 + Flightmare Dragon Armor + Flightmare Dragon Armors + false + + + + GroupParent + 16080 + 0 + 0 + 0 + 0 + + + GroupParent + 8535 + 0 + 0 + 0 + 0 + + + GroupParent + 8202 + 0 + 0 + 0 + 0 + + + GroupParent + 13734 + 0 + 0 + 0 + 0 + + + GroupParent + 8203 + 0 + 0 + 0 + 0 + + + GroupParent + 10474 + 0 + 0 + 0 + 0 + + + GroupParent + 16718 + 0 + 0 + 0 + 0 + + + GroupParent + 16720 + 0 + 0 + 0 + 0 + + + GroupParent + 16722 + 0 + 0 + 0 + 0 + + false + false + 10 + + RS_SHARED/PfDWAvWingsFDragonArmorFlightmare.unity3d/DWAvWingMDragonArmorFlightMare_Tex + Style + + + 0 + + 1 + NULL + 0 + 0 +

+ 2 + + 16724 + 2 + 12 + + 16724 + 1 + 12 + 15 + + 1 + Attackpower + 1 + 2 + 4 + + 464 + 2 + + + 1 + Attackpower + 2 + 5 + 7 + + 464 + 2 + + + 1 + Attackpower + 3 + 9 + 11 + + 464 + 2 + + + + 16724 + 2 + 12 + 15 + + 2 + Firepower + 1 + 2 + 3 + + 464 + 2 + + + 2 + Firepower + 2 + 5 + 6 + + 464 + 2 + + + 2 + Firepower + 3 + 8 + 9 + + 464 + 2 + + + + 16724 + 3 + 12 + 15 + + 3 + Healpower + 1 + 2 + 4 + + 464 + 2 + + + 3 + Healpower + 2 + 6 + 8 + + 464 + 2 + + + 3 + Healpower + 3 + 11 + 13 + + 464 + 2 + + + + 16724 + 4 + 12 + 20 + + 4 + Critical + 1 + 6 + 12 + + 464 + 2 + + + 4 + Critical + 2 + 18 + 24 + + 464 + 2 + + + 4 + Critical + 3 + 30 + 35 + + 464 + 2 + + + + 16724 + 5 + 12 + 20 + + 5 + Health + 1 + 8 + 15 + + 464 + 2 + + + 5 + Health + 2 + 23 + 30 + + 464 + 2 + + + 5 + Health + 3 + 38 + 46 + + 464 + 2 + + + + 16724 + 6 + 12 + 15 + + 6 + Dodge + 1 + 2 + 5 + + 464 + 2 + + + 6 + Dodge + 2 + 7 + 9 + + 464 + 2 + + + 6 + Dodge + 3 + 12 + 14 + + 464 + 2 + + + + + 16724 + 1 + + 1 + Attackpower + 4 + I + + + 6 + Dodge + 5 + I + + + + + + 2 + 3 + 13711 + + + + + RS_SHARED/PfDWAvWingsMDragonArmorFlightmare.unity3d/PfDWAvWingsMDragonArmorFlightmare + + Gender + M + 0 + + + ToggleWings + True + 0 + + + FlightSuit + True + 0 + + + ElementType + PARALYSIS + 0 + + + 34 + Avatar Parts + IcoAvatarParts + 0 + + + 464 + Dragons Flight Suits + + 0 + + + 228 + FlightSuitWing + + 0 + + 0 + 1000 + 0 + Dragon Armor to match the ghostly Flightmare! + RS_SHARED/DWAvatarWingsFDragonArmorFlightmare01.unity3d/IcoDWAvatarDragonArmorFlightmare + -1 + 16725 + Flightmare Dragon Armor + Flightmare Dragon Armors + false + + + + GroupParent + 16080 + 0 + 0 + 0 + 0 + + + GroupParent + 8535 + 0 + 0 + 0 + 0 + + + GroupParent + 8202 + 0 + 0 + 0 + 0 + + + GroupParent + 13734 + 0 + 0 + 0 + 0 + + + GroupParent + 8203 + 0 + 0 + 0 + 0 + + + GroupParent + 10474 + 0 + 0 + 0 + 0 + + + GroupParent + 16719 + 0 + 0 + 0 + 0 + + + GroupParent + 16721 + 0 + 0 + 0 + 0 + + + GroupParent + 16723 + 0 + 0 + 0 + 0 + + false + false + 10 + + RS_SHARED/PfDWAvWingsMDragonArmorFlightmare.unity3d/DWAvWingMDragonArmorFlightMare_Tex + Style + + + 0 + + 1 + NULL + 0 + 0 +

+ 2 + + 16725 + 2 + 12 + + 16725 + 1 + 12 + 15 + + 1 + Attackpower + 1 + 2 + 4 + + 464 + 2 + + + 1 + Attackpower + 2 + 5 + 7 + + 464 + 2 + + + 1 + Attackpower + 3 + 9 + 11 + + 464 + 2 + + + + 16725 + 2 + 12 + 15 + + 2 + Firepower + 1 + 2 + 3 + + 464 + 2 + + + 2 + Firepower + 2 + 5 + 6 + + 464 + 2 + + + 2 + Firepower + 3 + 8 + 9 + + 464 + 2 + + + + 16725 + 3 + 12 + 15 + + 3 + Healpower + 1 + 2 + 4 + + 464 + 2 + + + 3 + Healpower + 2 + 6 + 8 + + 464 + 2 + + + 3 + Healpower + 3 + 11 + 13 + + 464 + 2 + + + + 16725 + 4 + 12 + 20 + + 4 + Critical + 1 + 6 + 12 + + 464 + 2 + + + 4 + Critical + 2 + 18 + 24 + + 464 + 2 + + + 4 + Critical + 3 + 30 + 35 + + 464 + 2 + + + + 16725 + 5 + 12 + 20 + + 5 + Health + 1 + 8 + 15 + + 464 + 2 + + + 5 + Health + 2 + 23 + 30 + + 464 + 2 + + + 5 + Health + 3 + 38 + 46 + + 464 + 2 + + + + 16725 + 6 + 12 + 15 + + 6 + Dodge + 1 + 2 + 5 + + 464 + 2 + + + 6 + Dodge + 2 + 7 + 9 + + 464 + 2 + + + 6 + Dodge + 3 + 12 + 14 + + 464 + 2 + + + + + 16725 + 1 + + 1 + Attackpower + 4 + I + + + 6 + Dodge + 5 + I + + + + + + 2 + 3 + 13711 + + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTripleStrykeTitanAgeUpBundle + + 456 + Dragons Dragon Egg + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Triple Stryke Egg, Instant Hatch ticket, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTripleStrykeTitanAgeUpBundle + -1 + 18004 + Triple Stryke Titan Bundle + + false + + 0 + + Bundle + 13385 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-03-18T23:08:26.987 + 2020-03-26T06:59:26.987 + + + 2022-01-31T08:00:27.557 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 552 + Hot Deals Eggs + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1250 + 0 + This bundle includes a Sand Wraith Egg and Adult Age Up + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18005 + Sand Wraith Dragon Bundle + + false + + 0 + + Bundle + 10933 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-03-11T01:37:04.603 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWoollyHowlAdultAgeUpBundle + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Woolly Howl Egg, Instant Hatch Ticket, and Adult Age Up!. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWoollyHowlAdultAgeUpBundle + -1 + 18061 + Woolly Howl Adult Bundle + + false + + 0 + + Bundle + 11343 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-03-30T20:04:44.12 + 2020-04-09T06:59:44.12 + + + 2023-05-25T19:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWoollyHowlTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Woolly Howl Egg, Instant Hatch Ticket, Adult Age Up, and Titan Age Up!. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWoollyHowlTitanAgeUpBundle + -1 + 18062 + Woolly Howl Titan Bundle + + false + + 0 + + Bundle + 11343 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-03-30T20:05:01.357 + 2020-04-09T06:59:01.357 + + + 2023-05-25T19:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFlightmareAdultAgeUpBundle + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + Get your Flightmare ready in no time! This bundle includes a Flightmare Egg and an Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFlightmareAdultAgeUpBundle + -1 + 18078 + Flightmare Dragon Bundle + + false + + 0 + + Bundle + 9591 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-07-11T07:00:16.757 + 2023-07-01T07:00:00 + + + + RS_SHARED/pfdwswordgaleslashepic/PfDWSwordGaleslashEpic + + WeaponName + PfSTWSwordAgile + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 400 + 0 + The power of this dangerous dragon, distilled into weapon form. + RS_SHARED/dwswordepicdo/IcoDWSwordGaleslashEpic + -1 + 18098 + Galeslash Wild Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 3 + + 18098 + 3 + 1 + + 18098 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 34 + 51 + + 594 + 3 + + + 1 + Attackpower + 2 + 68 + 85 + + 594 + 3 + + + 1 + Attackpower + 3 + 101 + 118 + + 594 + 3 + + + + 18098 + 3 + 1 + 20 + + 3 + Healpower + 1 + 10 + 14 + + 594 + 3 + + + 3 + Healpower + 2 + 19 + 24 + + 594 + 3 + + + 3 + Healpower + 3 + 29 + 34 + + 594 + 3 + + + + 18098 + 4 + 1 + 20 + + 4 + Critical + 1 + 42 + 63 + + 594 + 3 + + + 4 + Critical + 2 + 84 + 106 + + 594 + 3 + + + 4 + Critical + 3 + 127 + 148 + + 594 + 3 + + + + 18098 + 5 + 1 + 20 + + 5 + Health + 1 + 6 + 8 + + 594 + 3 + + + 5 + Health + 2 + 11 + 14 + + 594 + 3 + + + 5 + Health + 3 + 17 + 20 + + 594 + 3 + + + + 18098 + 6 + 1 + 10 + + 6 + Dodge + 1 + 5 + 8 + + 594 + 3 + + + 6 + Dodge + 2 + 10 + 13 + + 594 + 3 + + + 6 + Dodge + 3 + 15 + 18 + + 594 + 3 + + + + + 18098 + 1 + + 1 + Attackpower + 40 + I + + + 3 + Healpower + 13 + I + + + 6 + Dodge + 5 + I + + + + + + 3 + 5 + 13711 + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1250 + 0 + This bundle includes a Sentinel Egg, Instant Egg Hatch, and Adult Age Up + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18108 + Sentinel Adult Bundle + + false + + 0 + + Bundle + 13614 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-03-21T07:00:01.897 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1750 + 0 + This bundle includes a Sentinel Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18109 + Sentinel Titan Bundle + + false + + 0 + + Bundle + 13614 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-03-21T07:00:58.28 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBuffalordAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle comes with a Buffalord Egg, Instant Egg Hatch, and an Adult Age Up Token. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBuffalordAdultAgeUpBundle + -1 + 18115 + Buffalord Adult Bundle + + false + + 0 + + Bundle + 13167 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-07-25T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBuffalordTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Buffalord Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up Token. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBuffalordTitanAgeUpBundle + -1 + 18116 + Buffalord Titan Bundle + + false + + 0 + + Bundle + 13167 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-07-25T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsMudrakerAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Mudraker Egg, Instant Hatch Ticket, and an Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsMudrakerAdultAgeUpBundle + -1 + 18121 + Mudraker Adult Bundle + + false + + 0 + + Bundle + 11855 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-05-26T20:42:07.917 + 2020-06-04T06:59:07.917 + + + 2022-12-12T08:00:09.637 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFirewormQueenAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Fireworm Queen Egg and an Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFirewormQueenAdultAgeUpBundle + -1 + 18122 + Fireworm Queen Adult Bundle + + false + + 0 + + Bundle + 10804 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-13T07:00:50.4 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Skrillknapper Egg, Instant Hatch Ticket, and an Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18239 + Skrillknapper Adult Bundle + + false + + 0 + + Bundle + 16758 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-06-10T21:54:33.077 + 2020-06-25T06:59:33.077 + + + 2023-01-09T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 3750 + 0 + This bundle includes a Skrillknapper Egg, Skrill Egg, Boneknapper Egg, and 3X Adult Age Ups + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18240 + Skrillknapper Family Bundle + + false + + 0 + + Bundle + 16758 + 0 + 1 + 0 + 0 + + + Bundle + 9468 + 0 + 1 + 0 + 0 + + + Bundle + 9782 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 3 + 0 + 0 + + + Bundle + 18601 + 0 + 3 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-09T08:00:51.677 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDreadStriderAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Dreadstrider Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDreadStriderAdultAgeUpBundle + -1 + 18270 + Dreadstrider Adult Bundle + + false + + 0 + + Bundle + 16756 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-06T07:00:50.273 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDreadstriderFamilyBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + 0 + 3250 + 0 + This bundle includes a Dreadstrider Egg, a Speed Stinger Egg, a Flightmare Egg, and 3x Adult Age Ups. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDreadstriderFamilyBundle + -1 + 18271 + Dreadstrider Family Bundle + + false + + 0 + + Bundle + 16756 + 0 + 1 + 0 + 0 + + + Bundle + 11347 + 0 + 1 + 0 + 0 + + + Bundle + 9591 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 3 + 0 + 0 + + + Bundle + 18601 + 0 + 3 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-06T07:00:31.577 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Deathly Galeslash Egg, Instant Hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18279 + Deathly Galeslash Adult Bundle + + false + + 0 + + Bundle + 18080 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-10-31T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDevilishDervishAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Devilish Dervish Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDevilishDervishAdultAgeUpBundle + -1 + 18287 + Devilish Dervish Adult Bundle + + false + + 0 + + Bundle + 12220 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-29T20:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsThunderdrumAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Thunderdrum Egg, Instant Egg Hatch, and Adult Age Up, + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsThunderdrumAdultAgeUpBundle + -1 + 18293 + Thunderdrum Adult Bundle + + false + + 0 + + Bundle + 8974 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-02T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsThunderdrumTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Thunderdrum Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsThunderdrumTitanAgeUpBundle + -1 + 18294 + Thunderdrum Titan Bundle + + false + + 0 + + Bundle + 8974 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-02T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTerribleTerrorAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Terrible Terror Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTerribleTerrorAdultAgeUpBundle + -1 + 18348 + Terrible Terror Adult Bundle + + false + + 0 + + Bundle + 13058 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-04-18T07:00:35.973 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTerribleTerrorTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1750 + 0 + This bundle includes a Terrible Terror Egg and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTerribleTerrorTitanAgeUpBundle + -1 + 18349 + Terrible Terror Titan Bundle + + false + + 0 + + Bundle + 13058 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + 0 + 2300 + 0 + This bundle includes a Razorwhip Egg, Adult Age Up, Razorwhip Lava Skin, and Razorwhip Dragon Armor + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18365 + Razorwhip Appreciation Bundle + + false + + 0 + + Bundle + 11963 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18052 + 0 + 1 + 0 + 0 + + + Bundle + 18076 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-07-17T18:35:57.017 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsNightmareAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Monstrous Nightmare Egg, Instant Hatch ticket, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsNightmareAdultAgeUpBundle + -1 + 18401 + Monstrous Nightmare Adult Bundle + + false + + 0 + + Bundle + 8973 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-30T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsNightmareTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Monstrous Nightmare Egg, Instant Hatch ticket, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsNightmareTitanAgeUpBundle + -1 + 18402 + Monstrous Nightmare Titan Bundle + + false + + 0 + + Bundle + 8973 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-30T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTidegliderAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Tide Glider Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTidegliderAdultAgeUpBundle + -1 + 18429 + Tide Glider Adult Bundle + + false + + 0 + + Bundle + 10926 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-16T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHobgobblerAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1250 + 0 + This bundle includes a Hobgobbler Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHobgobblerAdultAgeUpBundle + -1 + 18561 + Hobgobbler Adult Bundle + + false + + 0 + + Bundle + 16603 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-01T07:00:12.83 + 2023-07-01T07:00:00 + + + + RS_DATA/PfIronMysteryChestOrange.unity3d/PfIronMysteryChestOrange + + 408 + Dragons Fish + + 0 + + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 7 + 0 + Johann has his catch of the day. There is delicious fish every day for the same low price. You get one random fish. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + -1 + 8714 + Mystery Box of Fish + Mystery Box of Fish + false + + 1 + + Prize + 7143 + 30 + 0 + 0 + 0 + + + Prize + 7141 + 20 + 0 + 0 + 0 + + + Prize + 7142 + 30 + 0 + 0 + 0 + + + Prize + 7139 + 15 + 0 + 0 + 0 + + + Prize + 7144 + 10 + 0 + 0 + 0 + + + Prize + 7140 + 10 + 0 + 0 + 0 + + false + false + 0 + -1 + + 0 + 10 +

+ + + + + + + RS_DATA/PfIronMysteryChestOrange.unity3d/PfIronMysteryChestOrange + + 574 + Hot Deals Farm + + 0 + + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 27 + 0 + Johann has some farm supplies that he cant wait to give away Buy the box for a mystery farm gift. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + -1 + 8715 + Mystery Box of Farm Supplies + Mystery Box of Farm Supplies + false + + 1 + + Prize + 8043 + 20 + 0 + 0 + 0 + + + Prize + 8042 + 18 + 0 + 0 + 0 + + + Prize + 8044 + 18 + 0 + 0 + 0 + + + Prize + 8625 + 20 + 0 + 0 + 0 + + + Prize + 8238 + 30 + 0 + 0 + 0 + + + Prize + 8245 + 25 + 0 + 0 + 0 + + + Prize + 8232 + 23 + 0 + 0 + 0 + + + Prize + 8229 + 21 + 0 + 0 + 0 + + + Prize + 8249 + 15 + 0 + 0 + 0 + + + Prize + 8250 + 15 + 0 + 0 + 0 + + + Prize + 8244 + 13 + 0 + 0 + 0 + + + Prize + 8243 + 13 + 0 + 0 + 0 + + + Prize + 8253 + 12 + 0 + 0 + 0 + + + Prize + 8235 + 20 + 0 + 0 + 0 + + + Prize + 8236 + 20 + 0 + 0 + 0 + + + Prize + 8251 + 20 + 0 + 0 + 0 + + + Prize + 8237 + 20 + 0 + 0 + 0 + + + Prize + 8230 + 18 + 0 + 0 + 0 + + + Prize + 8233 + 17 + 0 + 0 + 0 + + + Prize + 8247 + 15 + 0 + 0 + 0 + + + Prize + 8240 + 12 + 0 + 0 + 0 + + + Prize + 8242 + 12 + 0 + 0 + 0 + + + Prize + 8252 + 10 + 0 + 0 + 0 + + + Prize + 8241 + 10 + 0 + 0 + 0 + + + Prize + 8239 + 10 + 0 + 0 + 0 + + + Prize + 8246 + 10 + 0 + 0 + 0 + + false + false + 0 + -1 + + 0 + 9 +

+ + + + + + + RS_DATA/PfIronMysteryChestOrange.unity3d/PfIronMysteryChestOrange + + 574 + Hot Deals Farm + + 0 + + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 5 + 0 + Johann has amazing stock for your farm at a fantastic price. Check out his latest goods for a steal of a deal. You get one random farm stock item. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + -1 + 8721 + Mystery Box of Farm Stock + Mystery Box of Farm Stock + false + + 1 + + Prize + 8032 + 20 + 0 + 0 + 0 + + + Prize + 7145 + 18 + 0 + 0 + 0 + + + Prize + 8623 + 15 + 0 + 0 + 0 + + + Prize + 7146 + 13 + 0 + 0 + 0 + + + Prize + 8228 + 13 + 0 + 0 + 0 + + + Prize + 8034 + 13 + 0 + 0 + 0 + + + Prize + 8211 + 13 + 0 + 0 + 0 + + + Prize + 8580 + 5 + 0 + 0 + 0 + + + Prize + 8213 + 15 + 0 + 0 + 0 + + + Prize + 8215 + 8 + 0 + 0 + 0 + + + Prize + 8345 + 12 + 0 + 0 + 0 + + + Prize + 8344 + 8 + 0 + 0 + 0 + + + Prize + 8577 + 8 + 0 + 0 + 0 + + + Prize + 8626 + 8 + 0 + 0 + 0 + + + Prize + 7231 + 5 + 0 + 0 + 0 + + + Prize + 8041 + 5 + 0 + 0 + 0 + + + Prize + 8218 + 4 + 0 + 0 + 0 + + + Prize + 8217 + 4 + 0 + 0 + 0 + + + Prize + 8627 + 3 + 0 + 0 + 0 + + + Prize + 8037 + 20 + 0 + 0 + 0 + + + Prize + 8603 + 20 + 0 + 0 + 0 + + + Prize + 8036 + 20 + 0 + 0 + 0 + + + Prize + 8630 + 20 + 0 + 0 + 0 + + false + false + 0 + -1 + + 0 + 9 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + 0 + 50 + 0 + This item is good for 1x signature on your Social Box + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + -1 + 8773 + SocialBoxSignature + SocialBoxSignature + false + + 1 + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWArcticChest.unity3d/PfCollectDWArcticChest + 0 + 400 + 0 + This chest contains TWO dragon eggs. You can find them inside your backpack. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWArcticChest + -1 + 12384 + 2x Mystery Dragon Eggs + false + + + + Bundle + 10944 + 0 + 2 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWArcticChest.unity3d/PfCollectDWArcticChest + 0 + 600 + 0 + This chest contains THREE dragon eggs. You can find them inside your backpack. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWArcticChest + -1 + 12385 + 3x Mystery Dragon Eggs + false + + + + Bundle + 10944 + 0 + 3 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DWStoreIconsDO.unity3d/IcoDWDragonsSubscription7DayTrial + + 2D + 1 + 0 + + + TrialMembershipRedemptionValue + 7 + 0 + + + Preview + RS_DATA/DragonsMembershipsDO.unity3d/AniDWDragonsStoreMembership + 0 + + + 2D Size + 330,440 + 0 + + + 542 + Trial Membership + + 0 + + 0 + 300 + 0 + 7 Days Trial Membership + RS_DATA/DWStoreIconsDO.unity3d/IcoDWDragonsSubscription7DayTrial + 1 + 13106 + 7 days Trial Membership + false + + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 436 + Dragons Bundle + + 0 + + 0 + 5935 + 0 + Eggs for the Changewing (with the Frost Skin), Groncicle, Shivertooth, Snow Wraith, Shovelhelm, 5 age up tickets, and a Mystery Stable. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 13196 + It is COLD outside! + false + + + + Bundle + 11194 + 0 + 1 + 0 + 0 + + + Bundle + 10787 + 0 + 1 + 0 + 0 + + + Bundle + 10822 + 0 + 1 + 0 + 0 + + + Bundle + 11345 + 0 + 1 + 0 + 0 + + + Bundle + 12121 + 0 + 1 + 0 + 0 + + + Bundle + 12848 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 5 + 0 + 0 + + + Bundle + 12365 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapJungle + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + ExpansionMissionID + 1605 + 0 + + + 2D Size + 330,440 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStorePreviewJungleCenote + 0 + + + Movie + RS_MOVIES/SecretoftheLeviathan.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Purchase direct access to the expansion and enjoy all of the benefits without an active membership + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapJungle + 1 + 13205 + Secret of the Leviathan Expansion + Impossible Island Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + + + 2D + 1 + 0 + + + 2D Size + 330,440 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStorePreviewMiniGames + 0 + + + 514 + Dragons Expansions + + 0 + + 0 + 400 + 0 + Master the ancient rituals of the Defenders of the Wing by solving 80+ mind-bending levels! + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMiniGames + 1 + 13256 + Defenders of the Wing Minigame Bundle + false + + 0 + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapStormheart + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + 2D Size + 330,440 + 0 + + + ExpansionMissionID + 2526 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStorePreviewPirateQueen + 0 + + + Movie + RS_MOVIES/RiseofStormheart.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Get direct access to the Rise of Stormheart Expansion pack for a low low price. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapStormheart + 1 + 13403 + Rise of Stormheart Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapVanaheim + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + 2D Size + 330,440 + 0 + + + ExpansionMissionID + 2589 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStorePreviewVanaheim + 0 + + + Movie + RS_MOVIES/Wrath_of_Stormheart.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Get direct access to the Wrath of Stormheart Expansion pack for a low low price. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapVanaheim + 1 + 13625 + Wrath of Stormheart Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/CollectDWIcons.unity3d/IcoDwDragonsD3Expansion + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + ExpansionMissionID + 1605 + 0 + + + 2D Size + 446,446 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreD3Preview + 0 + + + Movie + RS_MOVIES/SoD_HiddenWorldExpansion.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Get direct access to the Hidden World Expansion pack for a low low price. + RS_DATA/CollectDWIcons.unity3d/IcoDwDragonsD3Expansion + 1 + 15871 + The Hidden World Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_SHARED/DWDragonsSkinsTripleStrykeDO.unity3d/PfDWTripleStrykeRacing02 + + 436 + Dragons Bundle + + 0 + + 0 + 912 + 0 + 1 Triple Stryke Egg, 1 Master Saddle, 1 Racing Colors at a 20% discount! + RS_SHARED/DWDragonsSkinsTripleStrykeDO.unity3d/IcoDWTripleStrykeRacing02 + -1 + 16051 + Triple Stryke Bundle + Triple Stryke Bundles + false + + + + Bundle + 13513 + 10 + 1 + 0 + 0 + + + Bundle + 13439 + 10 + 1 + 0 + 0 + + + Bundle + 13385 + 10 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/CollectDWIcons.unity3d/IcoDwDragonsHobgobblerExpansion + + 2D + 1 + 0 + + + ExpansionMissionID + 1605 + 0 + + + 2D Size + 446,446 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreHobgobblerPreview + 0 + + + Movie + RS_MOVIES/SoD_HobgobblerExpansion.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + -1 + 0 + Get the Curse of the Hobgobbler Expansion pack. + RS_DATA/CollectDWIcons.unity3d/IcoDwDragonsHobgobblerExpansion + 1 + 16623 + Curse of the Hobgobbler Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_SHARED/pfdwswordborklegendaryboulder/PfDWSwordBorkLegendaryBoulder + + WeaponName + PfSTWSwordRock + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Boulder Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendaryBoulder + -1 + 18786 + Bork the Bold's Boulder Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18786 + 4 + 1 + + 18786 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18786 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18786 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18786 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18786 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18786 + 1 + + 1 + Attackpower + 53 + I + + + 4 + Critical + 67 + I + + + 5 + Health + 8 + I + + + 6 + Dodge + 8 + I + + + + + + 4 + 10 + 13711 + + + + + RS_SHARED/pfdwswordborklegendarymystery/PfDWSwordBorkLegendaryMystery + + WeaponName + PfSTWSwordPoison + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Mystery Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendaryMystery + -1 + 18787 + Bork the Bold's Mystery Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18787 + 4 + 1 + + 18787 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18787 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18787 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18787 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18787 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18787 + 1 + + 1 + Attackpower + 54 + I + + + 4 + Critical + 67 + I + + + 5 + Health + 8 + I + + + 6 + Dodge + 8 + I + + + + + + 4 + 10 + 13711 + + + + + RS_SHARED/pfdwswordborklegendarysharp/PfDWSwordBorkLegendarySharp + + WeaponName + PfSTWSwordRazor + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Sharp Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendarySharp + -1 + 18788 + Bork the Bold's Sharp Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18788 + 4 + 1 + + 18788 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18788 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18788 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18788 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18788 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18788 + 1 + + 1 + Attackpower + 54 + I + + + 4 + Critical + 67 + I + + + 5 + Health + 9 + I + + + 6 + Dodge + 8 + I + + + + + + 4 + 10 + 13711 + + + + + RS_SHARED/pfdwswordborklegendarystoker/PfDWSwordBorkLegendaryStoker + + WeaponName + PfSTWSwordWild + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Stoker Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendaryStoker + -1 + 18789 + Bork the Bold's Stoker Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18789 + 4 + 1 + + 18789 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18789 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18789 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18789 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18789 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18789 + 1 + + 1 + Attackpower + 54 + I + + + 4 + Critical + 68 + I + + + 5 + Health + 8 + I + + + 6 + Dodge + 8 + I + + + + + + 4 + 10 + 13711 + + + + + RS_SHARED/pfdwswordborklegendarystrike/PfDWSwordBorkLegendaryStrike + + WeaponName + PfSTWSwordFocus + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Strike Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendaryStrike + -1 + 18790 + Bork the Bold's Strike Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18790 + 4 + 1 + + 18790 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18790 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18790 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18790 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18790 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18790 + 1 + + 1 + Attackpower + 54 + I + + + 3 + Healpower + 19 + I + + + 4 + Critical + 67 + I + + + 6 + Dodge + 9 + I + + + + + + 4 + 10 + 13711 + + + + + RS_SHARED/pfdwswordborklegendarytidal/PfDWSwordBorkLegendaryTidal + + WeaponName + PfSTWSwordIce + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Tidal Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendaryTidal + -1 + 18791 + Bork the Bold's Tidal Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18791 + 4 + 1 + + 18791 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18791 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18791 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18791 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18791 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18791 + 1 + + 1 + Attackpower + 55 + I + + + 3 + Healpower + 15 + I + + + 4 + Critical + 75 + I + + + 5 + Health + 9 + I + + + + + + 4 + 10 + 13711 + + + + + RS_SHARED/pfdwswordborklegendarytracker/PfDWSwordBorkLegendaryTracker + + WeaponName + PfSTWSwordAgile + 0 + + + 511 + Dragons Battle Items + + 0 + + + 594 + Sword + + 0 + + + 387 + Weapons + + 0 + + 0 + 500 + 0 + Bork's sword is themed on the Tracker Class. + RS_SHARED/dwswordlegenddo/IcoDWSwordBorkLegendaryTracker + -1 + 18792 + Bork the Bold's Tracker Sword + false + + + false + false + 10 + 1 + + 0 + 0 +

+ 4 + + 18792 + 4 + 1 + + 18792 + 1 + 1 + 30 + + 1 + Attackpower + 1 + 51 + 68 + + 594 + 4 + + + 1 + Attackpower + 2 + 85 + 101 + + 594 + 4 + + + 1 + Attackpower + 3 + 118 + 135 + + 594 + 4 + + + + 18792 + 3 + 1 + 20 + + 3 + Healpower + 1 + 14 + 19 + + 594 + 4 + + + 3 + Healpower + 2 + 24 + 29 + + 594 + 4 + + + 3 + Healpower + 3 + 34 + 38 + + 594 + 4 + + + + 18792 + 4 + 1 + 20 + + 4 + Critical + 1 + 63 + 84 + + 594 + 4 + + + 4 + Critical + 2 + 106 + 127 + + 594 + 4 + + + 4 + Critical + 3 + 148 + 169 + + 594 + 4 + + + + 18792 + 5 + 1 + 20 + + 5 + Health + 1 + 8 + 11 + + 594 + 4 + + + 5 + Health + 2 + 14 + 17 + + 594 + 4 + + + 5 + Health + 3 + 20 + 22 + + 594 + 4 + + + + 18792 + 6 + 1 + 10 + + 6 + Dodge + 1 + 8 + 10 + + 594 + 4 + + + 6 + Dodge + 2 + 13 + 15 + + 594 + 4 + + + 6 + Dodge + 3 + 18 + 20 + + 594 + 4 + + + + + 18792 + 1 + + 1 + Attackpower + 55 + I + + + 3 + Healpower + 15 + I + + + 5 + Health + 9 + I + + + 6 + Dodge + 10 + I + + + + + + 4 + 10 + 13711 + + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFrostmareAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Frostmare Egg, Instant Hatch ticket, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFrostmareAdultAgeUpBundle + -1 + 20894 + Frostmare Adult Bundle + + false + + 0 + + Bundle + 20631 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-06-01T19:00:00 + 2023-07-01T06:59:10.437 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTripleStrykeAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Triple Stryke Egg, Instant Hatch ticket, and Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTripleStrykeAdultAgeUpBundle + -1 + 18003 + Triple Stryke Adult Bundle + + false + + 0 + + Bundle + 13385 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-03-18T23:07:33.01 + 2020-03-26T06:59:33.01 + + + 2022-01-31T08:00:46.513 + 2023-07-01T07:00:00 + + + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapDragonsEdge + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + ExpansionMissionID + 2329 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreRTDIPreview + 0 + + + 2D Size + 330,440 + 0 + + + Movie + RS_MOVIES/ReturnToDragonIslandTrailer.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Purchase direct access to the expansion and enjoy all of the benefits without an active membership + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapDragonsEdge + 1 + 13026 + Return To Dragon Island Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapNightlight + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + 2D Size + 310,310 + 0 + + + ExpansionMissionID + 2986 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreNightlightPreview + 0 + + + 514 + Dragons Expansions + + 0 + + 0 + 875 + 0 + For the Viking that has started the Age of of the Night Lights the expansion is at a discount! + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapNightlight + 1 + 19118 + Age of the Night Lights Expansion Continue + + false + + 0 + + Prereq + 19014 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestGreen + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Gruesome Goregripper Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestGreen + -1 + 20665 + Gruesome Goregripper Adult Bundle + + false + + 0 + + Bundle + 20290 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2022-11-14T08:00:00 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 2000 + 0 + This bundle includes a Chimeragon Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 20673 + Chimeragon Titan Bundle + false + + 0 + + Bundle + 18589 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2022-11-24T20:00:00 + 2023-07-01T07:00:00 + +
+ + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapDragonsEdge + + 2D + 1 + 0 + + + ExpansionMissionID + 1605 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreBFTEPreview + 0 + + + 2D Size + 330,440 + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + -1 + 0 + Purchase direct access to the expansion and enjoy all of the benefits without an active membership + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapDragonsEdge + 1 + 12437 + Battle for the Edge Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWOldMapArctic + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + ExpansionMissionID + 1605 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreDeathsongPreview + 0 + + + 2D Size + 330,440 + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Purchase direct access to the expansion so you can enjoy it without an active membership + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWOldMapArctic + 1 + 11862 + Call of the Death Song Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_SHARED/DragonPetPlay.unity3d/PfPetPlayLightLens + + Type + LASER + 0 + + + 327 + Pet Play + + 0 + + 0 + -1 + 0 + Light projector + RS_SHARED/DragonPetPlay.unity3d/IcoPetPlayLightLens + 1 + 8113 + Fun Light + false + + 1 + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + CoinRedemptionValue + 400 + 0 + + + 425 + Dragons Treasure + + 0 + + 0 + 60 + 0 + Exchange 60 gems for 400 gold. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + -1 + 8381 + 400 Gold + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonsStablesDO.unity3d/IcoDWDragonStableCombo + + 2D + 1 + 0 + + + 436 + Dragons Bundle + + 0 + + + 455 + Dragons Dragon Stable + + 0 + + 0 + 900 + 0 + + Set your dragons up with a massive network of stables to call home. + 1x Boulder Stable + 1x Stoker Stable + 1x Tidal Stable + + RS_DATA/DragonsStablesDO.unity3d/IcoDWDragonStableCombo + -1 + 9429 + Cavernous Stables + false + + + + Bundle + 8978 + 0 + 0 + 0 + 0 + + + Bundle + 8980 + 0 + 0 + 0 + 0 + + + Bundle + 8981 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlue + + 436 + Dragons Bundle + + 0 + + + 424 + Dragons ColorKits + + 0 + + + 567 + Hot Deals Skins + + 0 + + 0 + 522 + 0 + + Contains one of each premium dragon look. + 1x Barf and Belch Look + 1x Groundsplitter Look + 1x Meatlug Look + 1x Hookfang Look + 1x Thornado Look + 1x Stormfly Look + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlue + -1 + 9430 + Collection of Dragon Looks + false + + + + Bundle + 8654 + 0 + 0 + 0 + 0 + + + Bundle + 8655 + 0 + 0 + 0 + 0 + + + Bundle + 8656 + 0 + 0 + 0 + 0 + + + Bundle + 8657 + 0 + 0 + 0 + 0 + + + Bundle + 8658 + 0 + 0 + 0 + 0 + + + Bundle + 8659 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWOldMapArctic + + 2D + 1 + 0 + + + ExpansionMissionID + 1605 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreArcticPreview + 0 + + + 2D Size + 330,440 + 0 + + + Movie + RS_MOVIES/IceStormIsland032015_02.ogg + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + -1 + 0 + Purchase direct access to the expansion so you can enjoy it without an active membership + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWOldMapArctic + 1 + 10995 + Icestorm Island Expansion + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_SHARED/DWDragonsSkinsSmokebreathDO.unity3d/PfDWSmokebreathWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 930 + 0 + Contains 1x Smokebreath Egg, 1x Smokebreath Warpaint, 1x Smokebreath Jacket and 1x Smokebreath Totem at a discount! + RS_SHARED/DWDragonsSkinsSmokebreathDO.unity3d/IcoDWSmokebreathWarpaintSkin + -1 + 12290 + Smokebreath Bundle + false + + + + Bundle + 9662 + 0 + 0 + 0 + 0 + + + Bundle + 12289 + 0 + 0 + 0 + 0 + + + Bundle + 12288 + 0 + 0 + 0 + 0 + + + Bundle + 12286 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsSmokebreathDO.unity3d/PfDWSmokebreathWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 930 + 0 + Contains 1x Smokebreath Egg, 1x Smokebreath Warpaint, 1x Smokebreath Jacket and 1x Smokebreath Totem at a discount! + RS_SHARED/DWDragonsSkinsSmokebreathDO.unity3d/IcoDWSmokebreathWarpaintSkin + -1 + 12291 + Smokebreath Bundle + false + + + + Bundle + 9662 + 0 + 0 + 0 + 0 + + + Bundle + 12289 + 0 + 0 + 0 + 0 + + + Bundle + 12288 + 0 + 0 + 0 + 0 + + + Bundle + 12287 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsBoneKnapperDO.unity3d/PfDWBoneknapperWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1120 + 0 + This bundle includes a Boneknapper Egg, Boneknapper Jacket, Boneknapper Totem and Boneknapper Warpaint at a discount. + RS_SHARED/DWDragonsSkinsBoneKnapperDO.unity3d/IcoDWBoneknapperWarpaintSkin + 1 + 12390 + Boneknapper Bundle + false + + + + Bundle + 9782 + 0 + 0 + 0 + 0 + + + Bundle + 12389 + 0 + 0 + 0 + 0 + + + Bundle + 12388 + 0 + 0 + 0 + 0 + + + Bundle + 12386 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsBoneKnapperDO.unity3d/PfDWBoneknapperWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1120 + 0 + This bundle includes a Boneknapper Egg, Boneknapper Jacket, Boneknapper Totem and Boneknapper Warpaint at a discount. + RS_SHARED/DWDragonsSkinsBoneKnapperDO.unity3d/IcoDWBoneknapperWarpaintSkin + 1 + 12391 + Boneknapper Bundle + false + + + + Bundle + 9782 + 0 + 0 + 0 + 0 + + + Bundle + 12389 + 0 + 0 + 0 + 0 + + + Bundle + 12388 + 0 + 0 + 0 + 0 + + + Bundle + 12387 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/pfdwdreadfallcandychest/PfDWDreadfallCandyChest + + New + True + 0 + + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 0 + 0 + Try your luck and win some spook-tacular Dreadfall swag! + RS_DATA/collectdwicons/IcoDWDreadfallCandyChest + -1 + 16827 + Dreadfall Treasure Chest + Dreadfall Mystery Item Chests + false + + 0 + + Prize + 8244 + 140 + 1 + 0 + 0 + + + Prize + 8541 + 120 + 1 + 0 + 0 + + + Prize + 8542 + 140 + 1 + 0 + 0 + + + Prize + 8543 + 140 + 1 + 0 + 0 + + + Prize + 8546 + 140 + 1 + 0 + 0 + + + Prize + 8548 + 140 + 1 + 0 + 0 + + + Prize + 8549 + 115 + 1 + 0 + 0 + + + Prize + 8550 + 140 + 1 + 0 + 0 + + + Prize + 8551 + 140 + 1 + 0 + 0 + + + Prize + 8552 + 120 + 1 + 0 + 0 + + + Prize + 8553 + 140 + 1 + 0 + 0 + + + Prize + 8554 + 140 + 1 + 0 + 0 + + + Prize + 8555 + 90 + 1 + 0 + 0 + + + Prize + 8556 + 140 + 1 + 0 + 0 + + + Prize + 8564 + 140 + 1 + 0 + 0 + + + Prize + 8565 + 140 + 1 + 0 + 0 + + + Prize + 8571 + 140 + 1 + 0 + 0 + + + Prize + 8572 + 140 + 1 + 0 + 0 + + + Prize + 8573 + 140 + 1 + 0 + 0 + + + Prize + 8575 + 140 + 1 + 0 + 0 + + + Prize + 8593 + 140 + 1 + 0 + 0 + + + Prize + 9897 + 115 + 1 + 0 + 0 + + + Prize + 9898 + 140 + 1 + 0 + 0 + + + Prize + 12352 + 120 + 1 + 0 + 0 + + + Prize + 12363 + 140 + 1 + 0 + 0 + + + Prize + 12364 + 140 + 1 + 0 + 0 + + + Prize + 12801 + 140 + 1 + 0 + 0 + + + Prize + 12802 + 140 + 1 + 0 + 0 + + + Prize + 13135 + 140 + 1 + 0 + 0 + + + Prize + 13136 + 115 + 1 + 0 + 0 + + + Prize + 13137 + 115 + 1 + 0 + 0 + + + Prize + 13138 + 140 + 1 + 0 + 0 + + + Prize + 13140 + 120 + 1 + 0 + 0 + + + Prize + 13141 + 120 + 1 + 0 + 0 + + + Prize + 13142 + 75 + 1 + 0 + 0 + + + Prize + 13147 + 120 + 1 + 0 + 0 + + + Prize + 13151 + 115 + 1 + 0 + 0 + + + Prize + 13152 + 115 + 1 + 0 + 0 + + + Prize + 13455 + 60 + 1 + 0 + 0 + + + Prize + 13458 + 95 + 1 + 0 + 0 + + + Prize + 13459 + 95 + 1 + 0 + 0 + + + Prize + 13460 + 95 + 1 + 0 + 0 + + + Prize + 13461 + 95 + 1 + 0 + 0 + + + Prize + 13462 + 95 + 1 + 0 + 0 + + + Prize + 13463 + 95 + 1 + 0 + 0 + + + Prize + 13464 + 95 + 1 + 0 + 0 + + + Prize + 13465 + 95 + 1 + 0 + 0 + + + Prize + 13466 + 95 + 1 + 0 + 0 + + + Prize + 13467 + 95 + 1 + 0 + 0 + + + Prize + 13486 + 115 + 1 + 0 + 0 + + + Prize + 15126 + 110 + 1 + 0 + 0 + + + Prize + 15130 + 110 + 1 + 0 + 0 + + + Prize + 15131 + 110 + 1 + 0 + 0 + + + Prize + 15132 + 110 + 1 + 0 + 0 + + + Prize + 15139 + 140 + 1 + 0 + 0 + + + Prize + 15140 + 140 + 1 + 0 + 0 + + + Prize + 15141 + 140 + 1 + 0 + 0 + + + Prize + 15142 + 140 + 1 + 0 + 0 + + + Prize + 15143 + 140 + 1 + 0 + 0 + + + Prize + 15144 + 140 + 1 + 0 + 0 + + + Prize + 15145 + 105 + 1 + 0 + 0 + + + Prize + 15146 + 105 + 1 + 0 + 0 + + + Prize + 15147 + 105 + 1 + 0 + 0 + + + Prize + 16793 + 80 + 1 + 0 + 0 + + + Prize + 16794 + 75 + 1 + 0 + 0 + + + Prize + 16795 + 80 + 1 + 0 + 0 + + + Prize + 16796 + 80 + 1 + 0 + 0 + + + Prize + 16797 + 80 + 1 + 0 + 0 + + + Prize + 17818 + 75 + 1 + 0 + 0 + + + Prize + 18306 + 80 + 1 + 0 + 0 + + + Prize + 18307 + 80 + 1 + 0 + 0 + + + Prize + 18308 + 80 + 1 + 0 + 0 + + + Prize + 18309 + 80 + 1 + 0 + 0 + + + Prize + 18310 + 95 + 1 + 0 + 0 + + + Prize + 18311 + 95 + 1 + 0 + 0 + + + Prize + 18312 + 80 + 1 + 0 + 0 + + + Prize + 18313 + 70 + 1 + 0 + 0 + + + Prize + 18314 + 70 + 1 + 0 + 0 + + + Prize + 18315 + 95 + 1 + 0 + 0 + + + Prize + 18316 + 95 + 1 + 0 + 0 + + + Prize + 18477 + 115 + 1 + 0 + 0 + + + Prize + 18478 + 115 + 1 + 0 + 0 + + + Prize + 18479 + 115 + 1 + 0 + 0 + + + Prize + 18480 + 115 + 1 + 0 + 0 + + + Prize + 18504 + 65 + 1 + 0 + 0 + + + Prize + 18514 + 120 + 1 + 0 + 0 + + + Prize + 18515 + 120 + 1 + 0 + 0 + + + Prize + 18516 + 120 + 1 + 0 + 0 + + + Prize + 18517 + 120 + 1 + 0 + 0 + + + Prize + 18521 + 80 + 1 + 0 + 0 + + + Prize + 18531 + 140 + 1 + 0 + 0 + + + Prize + 18533 + 95 + 1 + 0 + 0 + + + Prize + 18534 + 95 + 1 + 0 + 0 + + + Prize + 18535 + 95 + 1 + 0 + 0 + + + Prize + 18536 + 95 + 1 + 0 + 0 + + + Prize + 18537 + 95 + 1 + 0 + 0 + + + Prize + 18538 + 95 + 1 + 0 + 0 + + + Prize + 18541 + 95 + 1 + 0 + 0 + + + Prize + 18542 + 95 + 1 + 0 + 0 + + + Prize + 18543 + 95 + 1 + 0 + 0 + + + Prize + 18544 + 95 + 1 + 0 + 0 + + + Prize + 18545 + 95 + 1 + 0 + 0 + + + Prize + 19040 + 140 + 1 + 0 + 0 + + + Prize + 19041 + 140 + 1 + 0 + 0 + + + Prize + 19046 + 70 + 1 + 0 + 0 + + + Prize + 19047 + 60 + 1 + 0 + 0 + + + Prize + 19054 + 80 + 1 + 0 + 0 + + + Prize + 19072 + 70 + 1 + 0 + 0 + + + Prize + 19073 + 60 + 1 + 0 + 0 + + + Prize + 19074 + 95 + 1 + 0 + 0 + + + Prize + 19075 + 100 + 1 + 0 + 0 + + + Prize + 19076 + 100 + 1 + 0 + 0 + + + Prize + 19077 + 120 + 1 + 0 + 0 + + + Prize + 19078 + 115 + 1 + 0 + 0 + + + Prize + 19084 + 100 + 1 + 0 + 0 + + + Prize + 19085 + 100 + 1 + 0 + 0 + + + Prize + 19086 + 110 + 1 + 0 + 0 + + + Prize + 19087 + 5 + 1 + 0 + 0 + + + Prize + 19088 + 5 + 1 + 0 + 0 + + + Prize + 19099 + 5 + 1 + 0 + 0 + + + Prize + 19100 + 5 + 1 + 0 + 0 + + + Prize + 20411 + 110 + 1 + 0 + 0 + + + Prize + 20412 + 110 + 1 + 0 + 0 + + + Prize + 20413 + 110 + 1 + 0 + 0 + + + Prize + 20414 + 110 + 1 + 0 + 0 + + + Prize + 20417 + 140 + 1 + 0 + 0 + + + Prize + 20429 + 140 + 1 + 0 + 0 + + + Prize + 20457 + 95 + 1 + 0 + 0 + + + Prize + 20458 + 95 + 1 + 0 + 0 + + + Prize + 20459 + 95 + 1 + 0 + 0 + + + Prize + 20460 + 95 + 1 + 0 + 0 + + + Prize + 20461 + 95 + 1 + 0 + 0 + + + Prize + 20462 + 110 + 1 + 0 + 0 + + + Prize + 20483 + 90 + 1 + 0 + 0 + + + Prize + 20484 + 80 + 1 + 0 + 0 + + + Prize + 20485 + 90 + 1 + 0 + 0 + + + Prize + 20486 + 80 + 1 + 0 + 0 + + + Prize + 20487 + 90 + 1 + 0 + 0 + + + Prize + 20488 + 80 + 1 + 0 + 0 + + + Prize + 20489 + 90 + 1 + 0 + 0 + + + Prize + 20490 + 80 + 1 + 0 + 0 + + + Prize + 20491 + 60 + 1 + 0 + 0 + + + Prize + 20387 + 80 + 1 + 0 + 0 + + + Prize + 20388 + 80 + 1 + 0 + 0 + + + Prize + 20395 + 80 + 1 + 0 + 0 + + + Prize + 20396 + 80 + 1 + 0 + 0 + + + Prize + 20403 + 80 + 1 + 0 + 0 + + + Prize + 20404 + 80 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/pfthawfestchestrare/PfThawfestChestRare + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 0 + 0 + A wonderful cache of items to help celebrate Thawfest. + RS_DATA/collectdwicons/IcoThawfestChestRare + -1 + 18059 + Thawfest Mystery Item Chest + Thawfest Mystery Item Chests + false + + 0 + + Prize + 17986 + 115 + 3 + 0 + 0 + + + Prize + 17987 + 115 + 3 + 0 + 0 + + + Prize + 17988 + 115 + 3 + 0 + 0 + + + Prize + 17993 + 60 + 1 + 0 + 0 + + + Prize + 17995 + 60 + 1 + 0 + 0 + + + Prize + 18012 + 70 + 1 + 0 + 0 + + + Prize + 18015 + 115 + 1 + 0 + 0 + + + Prize + 18016 + 115 + 1 + 0 + 0 + + + Prize + 18018 + 115 + 1 + 0 + 0 + + + Prize + 18019 + 115 + 1 + 0 + 0 + + + Prize + 18020 + 120 + 1 + 0 + 0 + + + Prize + 18021 + 120 + 1 + 0 + 0 + + + Prize + 18022 + 115 + 2 + 0 + 0 + + + Prize + 18023 + 115 + 2 + 0 + 0 + + + Prize + 18024 + 115 + 2 + 0 + 0 + + + Prize + 18025 + 115 + 2 + 0 + 0 + + + Prize + 18026 + 115 + 1 + 0 + 0 + + + Prize + 18027 + 115 + 2 + 0 + 0 + + + Prize + 18028 + 95 + 1 + 0 + 0 + + + Prize + 18029 + 95 + 1 + 0 + 0 + + + Prize + 18030 + 95 + 1 + 0 + 0 + + + Prize + 18031 + 95 + 1 + 0 + 0 + + + Prize + 18035 + 5 + 1 + 0 + 0 + + + Prize + 18039 + 5 + 1 + 0 + 0 + + + Prize + 18043 + 5 + 1 + 0 + 0 + + + Prize + 18047 + 5 + 1 + 0 + 0 + + + Prize + 18051 + 115 + 1 + 0 + 0 + + + Prize + 18053 + 80 + 1 + 0 + 0 + + + Prize + 18054 + 50 + 1 + 0 + 0 + + + Prize + 18055 + 80 + 1 + 0 + 0 + + + Prize + 18064 + 60 + 1 + 0 + 0 + + + Prize + 18065 + 115 + 2 + 0 + 0 + + + Prize + 18068 + 110 + 1 + 0 + 0 + + + Prize + 18069 + 110 + 1 + 0 + 0 + + + Prize + 18107 + 95 + 1 + 0 + 0 + + + Prize + 18710 + 95 + 1 + 0 + 0 + + + Prize + 18711 + 95 + 1 + 0 + 0 + + + Prize + 18737 + 95 + 1 + 0 + 0 + + + Prize + 18738 + 95 + 1 + 0 + 0 + + + Prize + 18739 + 95 + 1 + 0 + 0 + + + Prize + 18744 + 115 + 1 + 0 + 0 + + + Prize + 18747 + 90 + 1 + 0 + 0 + + + Prize + 18748 + 90 + 1 + 0 + 0 + + + Prize + 18749 + 90 + 1 + 0 + 0 + + + Prize + 18751 + 70 + 1 + 0 + 0 + + + Prize + 18765 + 80 + 1 + 0 + 0 + + + Prize + 18766 + 80 + 1 + 0 + 0 + + + Prize + 18767 + 80 + 1 + 0 + 0 + + + Prize + 18768 + 80 + 1 + 0 + 0 + + + Prize + 18769 + 100 + 1 + 0 + 0 + + + Prize + 18770 + 100 + 1 + 0 + 0 + + + Prize + 18771 + 95 + 1 + 0 + 0 + + + Prize + 18772 + 95 + 1 + 0 + 0 + + + Prize + 18773 + 80 + 1 + 0 + 0 + + + Prize + 18774 + 80 + 1 + 0 + 0 + + + Prize + 18775 + 95 + 1 + 0 + 0 + + + Prize + 18776 + 95 + 1 + 0 + 0 + + + Prize + 18777 + 80 + 1 + 0 + 0 + + + Prize + 18786 + 60 + 1 + 0 + 0 + + + Prize + 18787 + 60 + 1 + 0 + 0 + + + Prize + 18788 + 60 + 1 + 0 + 0 + + + Prize + 18789 + 60 + 1 + 0 + 0 + + + Prize + 18790 + 60 + 1 + 0 + 0 + + + Prize + 18791 + 60 + 1 + 0 + 0 + + + Prize + 18792 + 60 + 1 + 0 + 0 + + + Prize + 18793 + 70 + 1 + 0 + 0 + + + Prize + 18795 + 115 + 2 + 0 + 0 + + + Prize + 18796 + 115 + 2 + 0 + 0 + + + Prize + 18797 + 115 + 2 + 0 + 0 + + + Prize + 18798 + 115 + 2 + 0 + 0 + + + Prize + 18799 + 115 + 2 + 0 + 0 + + + Prize + 18800 + 115 + 2 + 0 + 0 + + + Prize + 18801 + 115 + 2 + 0 + 0 + + + Prize + 18803 + 110 + 2 + 0 + 0 + + + Prize + 18813 + 70 + 1 + 0 + 0 + + + Prize + 18815 + 105 + 3 + 0 + 0 + + + Prize + 18816 + 105 + 3 + 0 + 0 + + + Prize + 18817 + 5 + 1 + 0 + 0 + + + Prize + 18818 + 5 + 1 + 0 + 0 + + + Prize + 18826 + 60 + 1 + 0 + 0 + + + Prize + 18827 + 60 + 1 + 0 + 0 + + + Prize + 18837 + 110 + 1 + 0 + 0 + + + Prize + 18839 + 95 + 1 + 0 + 0 + + + Prize + 18844 + 95 + 1 + 0 + 0 + + + Prize + 18845 + 105 + 3 + 0 + 0 + + + Prize + 18846 + 105 + 3 + 0 + 0 + + + Prize + 18855 + 95 + 1 + 0 + 0 + + + Prize + 18856 + 95 + 1 + 0 + 0 + + + Prize + 18857 + 95 + 1 + 0 + 0 + + + Prize + 18858 + 95 + 1 + 0 + 0 + + + Prize + 18859 + 95 + 1 + 0 + 0 + + + Prize + 20212 + 95 + 1 + 0 + 0 + + + Prize + 20213 + 95 + 1 + 0 + 0 + + + Prize + 20214 + 95 + 1 + 0 + 0 + + + Prize + 20215 + 95 + 1 + 0 + 0 + + + Prize + 20216 + 95 + 1 + 0 + 0 + + + Prize + 20217 + 110 + 2 + 0 + 0 + + + Prize + 20225 + 80 + 1 + 0 + 0 + + + Prize + 20226 + 80 + 1 + 0 + 0 + + + Prize + 20227 + 80 + 1 + 0 + 0 + + + Prize + 20228 + 80 + 1 + 0 + 0 + + + Prize + 20229 + 80 + 1 + 0 + 0 + + + Prize + 20231 + 80 + 1 + 0 + 0 + + + Prize + 20261 + 60 + 1 + 0 + 0 + + + Prize + 20272 + 115 + 1 + 0 + 0 + + + Prize + 20249 + 95 + 1 + 0 + 0 + + + Prize + 20250 + 80 + 1 + 0 + 0 + + + Prize + 18814 + 45 + 1 + 0 + 0 + + + Prize + 18872 + 115 + 1 + 0 + 0 + + + Prize + 20242 + 50 + 1 + 0 + 0 + + + Prize + 20251 + 115 + 1 + 0 + 0 + + + Prize + 20253 + 5 + 1 + 0 + 0 + + + Prize + 20257 + 5 + 1 + 0 + 0 + + + Prize + 20262 + 45 + 1 + 0 + 0 + + + Prize + 20276 + 105 + 1 + 0 + 0 + + + Prize + 20390 + 75 + 1 + 0 + 0 + + + Prize + 20398 + 75 + 1 + 0 + 0 + + + Prize + 20406 + 75 + 1 + 0 + 0 + + + Prize + 20424 + 80 + 1 + 0 + 0 + + + Prize + 20470 + 80 + 1 + 0 + 0 + + + Prize + 20747 + 70 + 1 + 0 + 0 + + + Prize + 20771 + 110 + 1 + 0 + 0 + + + Prize + 20772 + 110 + 1 + 0 + 0 + + + Prize + 20773 + 110 + 1 + 0 + 0 + + + Prize + 20774 + 110 + 1 + 0 + 0 + + + Prize + 20775 + 110 + 1 + 0 + 0 + + + Prize + 20776 + 110 + 1 + 0 + 0 + + + Prize + 20777 + 110 + 2 + 0 + 0 + + + Prize + 20780 + 80 + 1 + 0 + 0 + + + Prize + 20785 + 60 + 1 + 0 + 0 + + + Prize + 20792 + 110 + 1 + 0 + 0 + + + Prize + 20795 + 95 + 1 + 0 + 0 + + + Prize + 20796 + 95 + 1 + 0 + 0 + + + Prize + 20797 + 95 + 1 + 0 + 0 + + + Prize + 20798 + 95 + 1 + 0 + 0 + + + Prize + 20799 + 95 + 1 + 0 + 0 + + + Prize + 20800 + 95 + 1 + 0 + 0 + + + Prize + 20801 + 95 + 1 + 0 + 0 + + + Prize + 20818 + 105 + 1 + 0 + 0 + + + Prize + 20819 + 105 + 1 + 0 + 0 + + + Prize + 20820 + 105 + 1 + 0 + 0 + + + Prize + 20822 + 80 + 1 + 0 + 0 + + + Prize + 20823 + 80 + 1 + 0 + 0 + + + Prize + 20824 + 80 + 1 + 0 + 0 + + + Prize + 20825 + 80 + 1 + 0 + 0 + + + Prize + 20826 + 95 + 1 + 0 + 0 + + + Prize + 20827 + 95 + 1 + 0 + 0 + + + Prize + 20828 + 80 + 1 + 0 + 0 + + + Prize + 20829 + 80 + 1 + 0 + 0 + + + Prize + 20830 + 95 + 1 + 0 + 0 + + + Prize + 20831 + 95 + 1 + 0 + 0 + + + Prize + 20832 + 80 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRidgesnipperAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Ridgesnipper Egg, Instant Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRidgesnipperAdultAgeUpBundle + -1 + 18434 + Ridgesnipper Adult Bundle + + false + + 0 + + Bundle + 18367 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsChangewingAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Changewing Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsChangewingAdultAgeUpBundle + -1 + 18439 + Changewing Adult Bundle + + false + + 0 + + Bundle + 10787 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-30T08:00:01.46 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsArmorwingAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1250 + 0 + This bundle includes a Armorwing Egg, Instant Egg Hatch, and Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsArmorwingAdultAgeUpBundle + -1 + 18450 + Armorwing Adult Bundle + + false + + 0 + + Bundle + 12647 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-05-22T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHotburpleAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Hotburple Egg, Instant Egg Hatch, and an Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHotburpleAdultAgeUpBundle + -1 + 18452 + Hotburple Adult Bundle + + false + + 0 + + Bundle + 9969 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-03-23T07:00:56.693 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSnowWraithAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Snow Wraith Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSnowWraithAdultAgeUpBundle + -1 + 18470 + Snow Wraith Adult Bundle + + false + + 0 + + Bundle + 12121 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-27T07:00:28.54 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathgripperAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Deathgripper Egg, Instant Hatch ticket, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathgripperAdultAgeUpBundle + -1 + 18475 + Deathgripper Adult Bundle + + false + + 0 + + Bundle + 15830 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-20T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathgripperTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1750 + 0 + This bundle includes a Deathgripper Egg, Instant Hatch ticket, Adult Age Up, and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathgripperTitanAgeUpBundle + -1 + 18476 + Deathgripper Titan Bundle + + false + + 0 + + Bundle + 15830 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-20T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSmokebreathAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Smokebreath Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSmokebreathAdultAgeUpBundle + -1 + 18481 + Smokebreath Adult Bundle + + false + + 0 + + Bundle + 9662 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-03-23T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Abomibumble Egg, Instant Hatch Ticket, and Adult Age Up + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18484 + Abomibumble Adult Bundle + + false + + 0 + + Bundle + 18453 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2020-09-08T03:26:42.74 + 2020-09-22T06:59:42.74 + + + 2022-11-28T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWhisperingDeathTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Whispering Death Egg, Instant Egg hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWhisperingDeathTitanAgeUpBundle + -1 + 18528 + Whispering Death Adult Bundle + + false + + 0 + + Bundle + 8975 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-12T08:00:21.177 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWhisperingDeathAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Whispering Death Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up Token. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsWhisperingDeathAdultAgeUpBundle + -1 + 18529 + Whispering Death Titan Bundle + + false + + 0 + + Bundle + 8975 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-12T08:00:25.963 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeadlyNadderAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Deadly Nadder Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeadlyNadderAdultAgeUpBundle + -1 + 18539 + Deadly Nadder Adult Bundle + false + + + + Bundle + 8972 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + 2022-10-31T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeadlyNadderTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Deadly Nadder Egg, Instant Egg Hatch, Adult Age Up and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeadlyNadderTitanAgeUpBundle + -1 + 18540 + Deadly Nadder Titan Bundle + false + + + + Bundle + 8972 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + 2022-10-31T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGhastlyZapplejackAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Zapplejack Egg and Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGhastlyZapplejackAdultAgeUpBundle + -1 + 18547 + Zapplejack Adult Bundle + + false + + 0 + + Bundle + 17977 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-01T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsZapplejackFamilyBundle + + 436 + Dragons Bundle + + 0 + + 0 + 3250 + 0 + This bundle includes a Zapplejack Egg, Zippleback Egg, Timberjack Egg, and 3X Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsZapplejackFamilyBundle + -1 + 18548 + Zapplejack Family Bundle + + false + + 0 + + Bundle + 17977 + 0 + 1 + 0 + 0 + + + Bundle + 8976 + 0 + 1 + 0 + 0 + + + Bundle + 12665 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 3 + 0 + 0 + + + Bundle + 18601 + 0 + 3 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-01T07:00:45.71 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHobgobblerTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1750 + 0 + This bundle includes a Hobgobbler Egg, Instant Egg Hatch, Adulty Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHobgobblerTitanAgeUpBundle + -1 + 18562 + Hobgobbler Titan Bundle + + false + + 0 + + Bundle + 16603 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-01T07:00:29.86 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSweetDeathAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Sweet Death Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSweetDeathAdultAgeUpBundle + -1 + 18563 + Sweet Death Adult Bundle + + false + + 0 + + Bundle + 10992 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-08-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBoneknapperAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Boneknapper Egg, Instant Hatch, and an Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBoneknapperAdultAgeUpBundle + -1 + 18566 + Boneknapper Adult Bundle + false + + 0 + + Bundle + 9782 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2023-03-10T07:00:57.503 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBoneknapperTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Boneknapper Egg, Instant Hatch, Adult Age Up, and a Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsBoneknapperTitanAgeUpBundle + -1 + 18567 + Boneknapper Titan Bundle + false + + 0 + + Bundle + 9782 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2023-03-10T08:00:29.61 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsNightTerrorAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Night Terror Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsNightTerrorAdultAgeUpBundle + -1 + 18573 + Night Terror Adult Bundle + + false + + 0 + + Bundle + 12642 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-23T08:00:36.17 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShockjawAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Shockjaw Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShockjawAdultAgeUpBundle + -1 + 18574 + Shockjaw Adult Bundle + false + + 0 + + Bundle + 11719 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2022-12-19T08:00:10.037 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShockjawTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Shockjaw Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShockjawTitanAgeUpBundle + -1 + 18575 + Shockjaw Titan Bundle + false + + 0 + + Bundle + 11719 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2022-12-19T08:00:18.66 + 2023-07-01T07:00:00 + +
+ + RS_DATA/PfDWSTRewardChestSpecial/PfDWSTRewardChestSpecial + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 0 + 0 + Try your luck and win some Snoggle-swag! + RS_DATA/collectdwicons.unity3d/IcoDWSTRewardChestPlatinum + -1 + 18586 + Snoggletog Mystery Item Chest + Snoggletog Mystery Item Chests + false + + 0 + + Prize + 8601 + 140 + 1 + 0 + 0 + + + Prize + 8608 + 120 + 1 + 0 + 0 + + + Prize + 8609 + 120 + 1 + 0 + 0 + + + Prize + 8610 + 120 + 1 + 0 + 0 + + + Prize + 8611 + 120 + 1 + 0 + 0 + + + Prize + 8612 + 120 + 1 + 0 + 0 + + + Prize + 8613 + 90 + 1 + 0 + 0 + + + Prize + 8614 + 120 + 1 + 0 + 0 + + + Prize + 8615 + 140 + 1 + 0 + 0 + + + Prize + 8616 + 140 + 1 + 0 + 0 + + + Prize + 8617 + 115 + 1 + 0 + 0 + + + Prize + 8618 + 115 + 1 + 0 + 0 + + + Prize + 8619 + 140 + 1 + 0 + 0 + + + Prize + 8620 + 140 + 1 + 0 + 0 + + + Prize + 8621 + 115 + 1 + 0 + 0 + + + Prize + 8622 + 115 + 1 + 0 + 0 + + + Prize + 8632 + 115 + 1 + 0 + 0 + + + Prize + 8633 + 110 + 1 + 0 + 0 + + + Prize + 8634 + 115 + 1 + 0 + 0 + + + Prize + 8635 + 110 + 1 + 0 + 0 + + + Prize + 8636 + 115 + 1 + 0 + 0 + + + Prize + 8637 + 110 + 1 + 0 + 0 + + + Prize + 8645 + 115 + 1 + 0 + 0 + + + Prize + 8646 + 115 + 1 + 0 + 0 + + + Prize + 8647 + 140 + 1 + 0 + 0 + + + Prize + 8648 + 140 + 1 + 0 + 0 + + + Prize + 8649 + 140 + 1 + 0 + 0 + + + Prize + 8650 + 140 + 1 + 0 + 0 + + + Prize + 8651 + 115 + 1 + 0 + 0 + + + Prize + 8652 + 115 + 1 + 0 + 0 + + + Prize + 8663 + 100 + 1 + 0 + 0 + + + Prize + 8664 + 100 + 1 + 0 + 0 + + + Prize + 8665 + 100 + 1 + 0 + 0 + + + Prize + 8666 + 100 + 1 + 0 + 0 + + + Prize + 8667 + 100 + 1 + 0 + 0 + + + Prize + 8668 + 100 + 1 + 0 + 0 + + + Prize + 8669 + 110 + 1 + 0 + 0 + + + Prize + 8670 + 110 + 1 + 0 + 0 + + + Prize + 8893 + 140 + 1 + 0 + 0 + + + Prize + 10778 + 95 + 1 + 0 + 0 + + + Prize + 10779 + 95 + 1 + 0 + 0 + + + Prize + 10780 + 95 + 1 + 0 + 0 + + + Prize + 10781 + 95 + 1 + 0 + 0 + + + Prize + 10782 + 95 + 1 + 0 + 0 + + + Prize + 10783 + 95 + 1 + 0 + 0 + + + Prize + 10784 + 95 + 1 + 0 + 0 + + + Prize + 10785 + 95 + 1 + 0 + 0 + + + Prize + 10786 + 95 + 1 + 0 + 0 + + + Prize + 10789 + 95 + 1 + 0 + 0 + + + Prize + 10812 + 115 + 1 + 0 + 0 + + + Prize + 11199 + 105 + 1 + 0 + 0 + + + Prize + 11329 + 110 + 1 + 0 + 0 + + + Prize + 12690 + 115 + 1 + 0 + 0 + + + Prize + 12803 + 140 + 1 + 0 + 0 + + + Prize + 13187 + 140 + 1 + 0 + 0 + + + Prize + 13188 + 50 + 1 + 0 + 0 + + + Prize + 13189 + 140 + 1 + 0 + 0 + + + Prize + 13190 + 115 + 1 + 0 + 0 + + + Prize + 13191 + 115 + 1 + 0 + 0 + + + Prize + 13192 + 75 + 1 + 0 + 0 + + + Prize + 13193 + 115 + 1 + 0 + 0 + + + Prize + 13194 + 115 + 1 + 0 + 0 + + + Prize + 13490 + 140 + 1 + 0 + 0 + + + Prize + 13514 + 95 + 1 + 0 + 0 + + + Prize + 13515 + 95 + 1 + 0 + 0 + + + Prize + 13660 + 60 + 1 + 0 + 0 + + + Prize + 13661 + 60 + 1 + 0 + 0 + + + Prize + 13684 + 70 + 1 + 0 + 0 + + + Prize + 13687 + 60 + 1 + 0 + 0 + + + Prize + 13723 + 70 + 1 + 0 + 0 + + + Prize + 13724 + 60 + 1 + 0 + 0 + + + Prize + 13725 + 70 + 1 + 0 + 0 + + + Prize + 13727 + 60 + 1 + 0 + 0 + + + Prize + 15736 + 105 + 1 + 0 + 0 + + + Prize + 15740 + 110 + 1 + 0 + 0 + + + Prize + 15767 + 100 + 1 + 0 + 0 + + + Prize + 15768 + 100 + 1 + 0 + 0 + + + Prize + 15769 + 100 + 1 + 0 + 0 + + + Prize + 15770 + 100 + 1 + 0 + 0 + + + Prize + 15771 + 100 + 1 + 0 + 0 + + + Prize + 15772 + 100 + 1 + 0 + 0 + + + Prize + 15773 + 100 + 1 + 0 + 0 + + + Prize + 15774 + 100 + 1 + 0 + 0 + + + Prize + 15775 + 100 + 1 + 0 + 0 + + + Prize + 15776 + 100 + 1 + 0 + 0 + + + Prize + 15777 + 100 + 1 + 0 + 0 + + + Prize + 15778 + 70 + 1 + 0 + 0 + + + Prize + 16724 + 5 + 1 + 0 + 0 + + + Prize + 16725 + 5 + 1 + 0 + 0 + + + Prize + 17860 + 110 + 1 + 0 + 0 + + + Prize + 17861 + 105 + 1 + 0 + 0 + + + Prize + 17862 + 110 + 1 + 0 + 0 + + + Prize + 17863 + 110 + 1 + 0 + 0 + + + Prize + 17865 + 60 + 1 + 0 + 0 + + + Prize + 17868 + 70 + 1 + 0 + 0 + + + Prize + 17869 + 70 + 1 + 0 + 0 + + + Prize + 17870 + 115 + 1 + 0 + 0 + + + Prize + 17871 + 115 + 1 + 0 + 0 + + + Prize + 17872 + 70 + 1 + 0 + 0 + + + Prize + 17873 + 70 + 1 + 0 + 0 + + + Prize + 17874 + 95 + 1 + 0 + 0 + + + Prize + 17875 + 95 + 1 + 0 + 0 + + + Prize + 17876 + 110 + 1 + 0 + 0 + + + Prize + 17877 + 110 + 1 + 0 + 0 + + + Prize + 17878 + 80 + 1 + 0 + 0 + + + Prize + 17879 + 80 + 1 + 0 + 0 + + + Prize + 17880 + 95 + 1 + 0 + 0 + + + Prize + 17881 + 95 + 1 + 0 + 0 + + + Prize + 17882 + 95 + 1 + 0 + 0 + + + Prize + 17883 + 95 + 1 + 0 + 0 + + + Prize + 17902 + 5 + 1 + 0 + 0 + + + Prize + 17903 + 5 + 1 + 0 + 0 + + + Prize + 17904 + 110 + 1 + 0 + 0 + + + Prize + 17905 + 110 + 1 + 0 + 0 + + + Prize + 17906 + 110 + 1 + 0 + 0 + + + Prize + 17907 + 110 + 1 + 0 + 0 + + + Prize + 17908 + 110 + 1 + 0 + 0 + + + Prize + 17909 + 110 + 1 + 0 + 0 + + + Prize + 17940 + 110 + 1 + 0 + 0 + + + Prize + 17941 + 110 + 1 + 0 + 0 + + + Prize + 17998 + 80 + 1 + 0 + 0 + + + Prize + 17999 + 80 + 1 + 0 + 0 + + + Prize + 18355 + 60 + 1 + 0 + 0 + + + Prize + 18356 + 60 + 1 + 0 + 0 + + + Prize + 18360 + 60 + 1 + 0 + 0 + + + Prize + 18361 + 60 + 1 + 0 + 0 + + + Prize + 18403 + 100 + 1 + 0 + 0 + + + Prize + 18405 + 115 + 1 + 0 + 0 + + + Prize + 18406 + 115 + 1 + 0 + 0 + + + Prize + 18407 + 115 + 1 + 0 + 0 + + + Prize + 18408 + 120 + 1 + 0 + 0 + + + Prize + 18412 + 60 + 1 + 0 + 0 + + + Prize + 18413 + 60 + 1 + 0 + 0 + + + Prize + 18414 + 60 + 1 + 0 + 0 + + + Prize + 18415 + 60 + 1 + 0 + 0 + + + Prize + 18416 + 60 + 1 + 0 + 0 + + + Prize + 18417 + 60 + 1 + 0 + 0 + + + Prize + 18564 + 140 + 1 + 0 + 0 + + + Prize + 18565 + 140 + 1 + 0 + 0 + + + Prize + 18571 + 120 + 1 + 0 + 0 + + + Prize + 18572 + 105 + 1 + 0 + 0 + + + Prize + 18589 + 5 + 1 + 0 + 0 + + + Prize + 18597 + 70 + 1 + 0 + 0 + + + Prize + 18598 + 70 + 1 + 0 + 0 + + + Prize + 18602 + 70 + 1 + 0 + 0 + + + Prize + 18604 + 60 + 1 + 0 + 0 + + + Prize + 18609 + 70 + 1 + 0 + 0 + + + Prize + 18611 + 70 + 1 + 0 + 0 + + + Prize + 18612 + 110 + 1 + 0 + 0 + + + Prize + 18613 + 110 + 1 + 0 + 0 + + + Prize + 18614 + 110 + 1 + 0 + 0 + + + Prize + 18617 + 80 + 1 + 0 + 0 + + + Prize + 18618 + 80 + 1 + 0 + 0 + + + Prize + 18619 + 80 + 1 + 0 + 0 + + + Prize + 18620 + 80 + 1 + 0 + 0 + + + Prize + 18621 + 115 + 1 + 0 + 0 + + + Prize + 18629 + 70 + 1 + 0 + 0 + + + Prize + 18630 + 70 + 1 + 0 + 0 + + + Prize + 18634 + 70 + 1 + 0 + 0 + + + Prize + 18635 + 70 + 1 + 0 + 0 + + + Prize + 18639 + 70 + 1 + 0 + 0 + + + Prize + 18640 + 70 + 1 + 0 + 0 + + + Prize + 18641 + 120 + 1 + 0 + 0 + + + Prize + 18642 + 120 + 1 + 0 + 0 + + + Prize + 18643 + 120 + 1 + 0 + 0 + + + Prize + 18644 + 120 + 1 + 0 + 0 + + + Prize + 18645 + 120 + 1 + 0 + 0 + + + Prize + 18646 + 80 + 1 + 0 + 0 + + + Prize + 18656 + 120 + 1 + 0 + 0 + + + Prize + 18881 + 120 + 1 + 0 + 0 + + + Prize + 18882 + 120 + 1 + 0 + 0 + + + Prize + 18883 + 120 + 1 + 0 + 0 + + + Prize + 18884 + 120 + 1 + 0 + 0 + + + Prize + 19109 + 100 + 1 + 0 + 0 + + + Prize + 19110 + 100 + 1 + 0 + 0 + + + Prize + 19111 + 100 + 1 + 0 + 0 + + + Prize + 19112 + 70 + 1 + 0 + 0 + + + Prize + 19113 + 80 + 1 + 0 + 0 + + + Prize + 19117 + 90 + 1 + 0 + 0 + + + Prize + 19120 + 60 + 1 + 0 + 0 + + + Prize + 19124 + 60 + 1 + 0 + 0 + + + Prize + 19128 + 5 + 1 + 0 + 0 + + + Prize + 19132 + 5 + 1 + 0 + 0 + + + Prize + 19136 + 140 + 1 + 0 + 0 + + + Prize + 19137 + 140 + 1 + 0 + 0 + + + Prize + 19138 + 110 + 1 + 0 + 0 + + + Prize + 19139 + 90 + 1 + 0 + 0 + + + Prize + 19140 + 90 + 1 + 0 + 0 + + + Prize + 19141 + 105 + 1 + 0 + 0 + + + Prize + 19142 + 120 + 1 + 0 + 0 + + + Prize + 19143 + 115 + 1 + 0 + 0 + + + Prize + 19144 + 80 + 1 + 0 + 0 + + + Prize + 19145 + 80 + 1 + 0 + 0 + + + Prize + 19146 + 115 + 1 + 0 + 0 + + + Prize + 19147 + 120 + 1 + 0 + 0 + + + Prize + 19148 + 120 + 1 + 0 + 0 + + + Prize + 19149 + 120 + 1 + 0 + 0 + + + Prize + 19164 + 80 + 1 + 0 + 0 + + + Prize + 19165 + 80 + 1 + 0 + 0 + + + Prize + 19166 + 80 + 1 + 0 + 0 + + + Prize + 19173 + 120 + 1 + 0 + 0 + + + Prize + 19174 + 120 + 1 + 0 + 0 + + + Prize + 20420 + 115 + 1 + 0 + 0 + + + Prize + 20421 + 120 + 1 + 0 + 0 + + + Prize + 20624 + 110 + 1 + 0 + 0 + + + Prize + 20625 + 110 + 1 + 0 + 0 + + + Prize + 20626 + 110 + 1 + 0 + 0 + + + Prize + 20647 + 70 + 1 + 0 + 0 + + + Prize + 20648 + 70 + 1 + 0 + 0 + + + Prize + 20649 + 70 + 1 + 0 + 0 + + + Prize + 20650 + 70 + 1 + 0 + 0 + + + Prize + 20651 + 70 + 1 + 0 + 0 + + + Prize + 20674 + 110 + 1 + 0 + 0 + + + Prize + 20677 + 110 + 1 + 0 + 0 + + + Prize + 20679 + 110 + 1 + 0 + 0 + + + Prize + 20680 + 110 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScreamingDeathAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Screaming Death Egg, Instant Egg Hatch and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScreamingDeathAdultAgeUpBundle + -1 + 18587 + Screaming Death Adult Bundle + + false + + 0 + + Bundle + 10796 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-21T07:00:08.947 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScreamingDeathTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Screaming Death Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScreamingDeathTitanAgeUpBundle + -1 + 18588 + Screaming Death Titan Bundle + + false + + 0 + + Bundle + 10796 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-21T07:00:02.187 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRumblehornAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Rumblehorn Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRumblehornAdultAgeUpBundle + -1 + 18599 + Rumblehorn Adult Bundle + + false + + 0 + + Bundle + 9525 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-05-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRumblehornTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Rumblehorn Egg, Instant Egg hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRumblehornTitanAgeUpBundle + -1 + 18600 + Rumblehorn Titan Bundle + + false + + 0 + + Bundle + 9525 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-05-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShivertoothAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Shivertooth Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShivertoothAdultAgeUpBundle + -1 + 18610 + Shivertooth Adult Bundle + + false + + 0 + + Bundle + 11345 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-06T08:00:24.007 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathSongAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Death Song Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathSongAdultAgeUpBundle + -1 + 18615 + Death Song Adult Bundle + + false + + 0 + + Bundle + 11928 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-08-29T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathSongTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1750 + 0 + This bundle includes a Death Song Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsDeathSongTitanAgeUpBundle + -1 + 18616 + Death Song Titan Bundle + + false + + 0 + + Bundle + 11928 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-08-29T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Dramillion Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18647 + Dramillion Adult Bundle + + false + + 0 + + Bundle + 13729 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-29T20:00:51.423 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Dramillion Egg, Instant Egg Hatch, Adult Age Up and Titan Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18648 + Dramillion Titan Bundle + + false + + 0 + + Bundle + 13729 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-29T20:00:12.633 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsStormcutterAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Stormcutter Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsStormcutterAdultAgeUpBundle + -1 + 18649 + Stormcutter Adult Bundle + + false + + 0 + + Bundle + 10403 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-10-24T07:00:46.383 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsStormcutterTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1750 + 0 + This bundle includes a Stormcutter Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsStormcutterTitanAgeUpBundle + -1 + 18650 + Stormcutter Titan Bundle + + false + + 0 + + Bundle + 10403 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-10-24T07:00:56.593 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGronckleAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Gronckle Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGronckleAdultAgeUpBundle + -1 + 18658 + Gronckle Adult Bundle + + false + + 0 + + Bundle + 8971 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-19T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGronckleTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Gronckle Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGronckleTitanAgeUpBundle + -1 + 18659 + Gronckle Titan Bundle + + false + + 0 + + Bundle + 8971 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-19T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsEruptodonAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes an Eruptodon Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsEruptodonAdultAgeUpBundle + -1 + 18660 + Eruptodon Adult Bundle + + false + + 0 + + Bundle + 13018 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsCatastrophicQuakenAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Quaken Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsCatastrophicQuakenAdultAgeUpBundle + -1 + 18662 + Quaken Adult Bundle + + false + + 0 + + Bundle + 12301 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-11-07T08:00:15 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSilverPhantomAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Silver Phantom Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSilverPhantomAdultAgeUpBundle + -1 + 18663 + Silver Phantom Adult Bundle + + false + + 0 + + Bundle + 13153 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-20T08:00:17 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFlameWhipperAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Flame Whipper Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsFlameWhipperAdultAgeUpBundle + -1 + 18664 + Flame Whipper Adult Bundle + + false + + 0 + + Bundle + 13219 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-21T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsMoldruffleAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Moldruffle Egg and Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsMoldruffleAdultAgeUpBundle + -1 + 18665 + Moldruffle Adult Bundle + false + + 0 + + Bundle + 11776 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2023-03-06T08:00:05.893 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRazorwhipAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Razorwhip Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRazorwhipAdultAgeUpBundle + -1 + 18740 + Razorwhip Adult Bundle + + false + + 0 + + Bundle + 11963 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-09-09T07:00:54.81 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRazorwhipTitanAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Razorwhip Egg, Adult Age Up, and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRazorwhipTitanAgeUpBundle + -1 + 18741 + Razorwhip Titan Bundle + + false + + 0 + + Bundle + 11963 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-09-09T07:00:13.5 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTimberjackAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Timberjack Egg and Adult Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTimberjackAdultAgeUpBundle + -1 + 18742 + Timberjack Adult Bundle + + false + + 0 + + Bundle + 12665 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-13T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTimberjackTitanAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Timberjack Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTimberjackTitanAgeUpBundle + -1 + 18743 + Timberjack Titan Bundle + + false + + 0 + + Bundle + 12665 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-13T07:00:45.573 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Bonestormer Egg and Adult Age Up + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18745 + Bonestormer Adult Bundle + + false + + 0 + + Bundle + 18549 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-01-03T08:00:04.61 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 3750 + 0 + This bundle includes a Bonestormer Egg, Boneknapper Egg, Stormcutter Egg, and 3X Adult Age Up + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18746 + Bonestormer Family Bundle + + false + + 0 + + Bundle + 18549 + 0 + 1 + 0 + 0 + + + Bundle + 9782 + 0 + 1 + 0 + 0 + + + Bundle + 10403 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 3 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-01-03T08:00:36.683 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScauldronAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Scauldron Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScauldronAdultAgeUpBundle + -1 + 18753 + Scauldron Adult Bundle + Scauldron Adult Bundles + false + + 0 + + Bundle + 9517 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-11-28T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScauldronTitanAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Scauldron Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScauldronTitanAgeUpBundle + -1 + 18754 + Scauldron Titan Bundle + Scauldron Titan Bundles + false + + 0 + + Bundle + 9517 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-11-28T08:00:57.867 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSlitherwingAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Slitherwing Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSlitherwingAdultAgeUpBundle + -1 + 18757 + Slitherwing Adult Bundle + false + + 0 + + Bundle + 18727 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2023-03-06T07:00:00 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSlitherwingTitanAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 2000 + 0 + This bundle includes a Slitherwing Egg, Instant Hatch Ticket, Adult Age Up, and Titan Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSlitherwingTitanAgeUpBundle + -1 + 18758 + Slitherwing Titan Bundle + false + + 0 + + Bundle + 18727 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2023-03-06T07:00:00 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGroncicleAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1250 + 0 + This bundle includes a Groncicle Egg, Instant Egg Hatch, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGroncicleAdultAgeUpBundle + -1 + 18762 + Groncicle Adult Bundle + + false + + 0 + + Bundle + 11194 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-03-14T07:00:38.6 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTyphoomerangAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Typhoomerang Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsTyphoomerangAdultAgeUpBundle + -1 + 18804 + Typhoomerang Adult Bundle + + false + + 0 + + Bundle + 9683 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-07-25T07:00:17 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsThunderpedeAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Thunderpede Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsThunderpedeAdultAgeUpBundle + -1 + 18838 + Thunderpede Adult Bundle + + false + + 0 + + Bundle + 12368 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-11-07T08:00:41 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Singetail Egg, Instant Hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18847 + Singetail Adult Bundle + + false + + 0 + + Bundle + 13027 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-05-15T07:01:59.377 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGrimGnasherAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Grim Gnasher Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGrimGnasherAdultAgeUpBundle + -1 + 18860 + Grim Gnasher Adult Bundle + + false + + 0 + + Bundle + 13662 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-14T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGrimGnasherTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Grim Gnasher Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGrimGnasherTitanAgeUpBundle + -1 + 18861 + Grim Gnasher Titan Bundle + + false + + 0 + + Bundle + 13662 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-14T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRaincutterAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Raincutter Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRaincutterAdultAgeUpBundle + -1 + 18885 + Raincutter Adult Bundle + + false + + 0 + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 9779 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-25T19:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + 0 + 1900 + 0 + In Celebration of Mother's Day, this bundle contains Valka's Dragon Armor, Staff, and Shield + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18907 + First Mom of Berk Bundle + false + + 0 + + Bundle + 18091 + 10 + 1 + 0 + 0 + + + Bundle + 18905 + 10 + 1 + 0 + 0 + + + Bundle + 20857 + 10 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + 0 + 1900 + 0 + In Celebration of Mother's Day, this bundle contains Valka's Dragon Armor, Staff, and Shield + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18909 + First Mom of Berk Bundle + false + + 0 + + Bundle + 18092 + 10 + 1 + 0 + 0 + + + Bundle + 18905 + 10 + 1 + 0 + 0 + + + Bundle + 20857 + 10 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSkrillAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Skrill Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSkrillAdultAgeUpBundle + -1 + 18910 + Skrill Adult Bundle + + false + + 0 + + Bundle + 9468 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-04-24T07:01:55.207 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSkrillTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Skrill Egg, Instant Hatch Ticket, Adult Age Up, and Titan Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSkrillTitanAgeUpBundle + -1 + 18911 + Skrill Titan Bundle + + false + + 0 + + Bundle + 9468 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-04-24T07:00:40.033 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSnaptrapperAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Skrill Egg, Instant Egg Hatch, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSnaptrapperAdultAgeUpBundle + -1 + 18922 + Snaptrapper Adult Bundle + + false + + 0 + + Bundle + 12255 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-06-09T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHobblegruntAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Hobblegrunt Egg, Instant Egg Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsHobblegruntAdultAgeUpBundle + -1 + 18923 + Hobblegrunt Adult Bundle + + false + + 0 + + Bundle + 9616 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-16T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Fire Terror Egg, Instant Hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18924 + Fire Terror Adult Bundle + + false + + 0 + + Bundle + 15133 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-10-10T07:00:55.053 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlue + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Windwalker Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlue + -1 + 18927 + Windwalker Adult Bundle + + false + + 0 + + Bundle + 12945 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-06-23T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsPrickleboggleAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Prickleboggle Egg, Instant Egg Hatch, and an Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsPrickleboggleAdultAgeUpBundle + -1 + 18945 + Prickleboggle Adult Bundle + + false + + 0 + + Bundle + 12135 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-07-04T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsZipplebackAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 750 + 0 + This bundle includes a Zippleback Egg, Instant Hatch, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsZipplebackAdultAgeUpBundle + -1 + 18966 + Zippleback Adult Bundle + + false + + 0 + + Bundle + 8976 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-27T07:00:12.3 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsZipplebackTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1250 + 0 + This bundle includes a Zippleback Egg, Instant Hatch, Adult Age Up, and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsZipplebackTitanAgeUpBundle + -1 + 18967 + Zippleback Titan Bundle + + false + + 0 + + Bundle + 8976 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-27T07:00:14.993 + 2023-07-01T07:00:00 + + + + RS_DATA/PfDefendersHWChestRare.unity3d/PfDefendersHWChestRare + + New + True + 0 + + + 462 + Dragons Mystery Box Tickets + + 0 + + 0 + 0 + 0 + Summarhildr Mystery Item Chest + RS_DATA/collectdwicons/IcoDefendersHWChestRare + -1 + 18983 + Summarhildr Mystery Item Chest + false + + 0 + + Prize + 16249 + 60 + 1 + 0 + 0 + + + Prize + 16669 + 70 + 1 + 0 + 0 + + + Prize + 16762 + 120 + 1 + 0 + 0 + + + Prize + 16764 + 120 + 1 + 0 + 0 + + + Prize + 16767 + 120 + 1 + 0 + 0 + + + Prize + 16769 + 120 + 1 + 0 + 0 + + + Prize + 16804 + 20 + 1 + 0 + 0 + + + Prize + 16805 + 20 + 1 + 0 + 0 + + + Prize + 18892 + 80 + 1 + 0 + 0 + + + Prize + 18893 + 80 + 1 + 0 + 0 + + + Prize + 18894 + 80 + 1 + 0 + 0 + + + Prize + 18895 + 80 + 1 + 0 + 0 + + + Prize + 18896 + 95 + 1 + 0 + 0 + + + Prize + 18897 + 95 + 1 + 0 + 0 + + + Prize + 18898 + 95 + 1 + 0 + 0 + + + Prize + 18899 + 95 + 1 + 0 + 0 + + + Prize + 18900 + 50 + 1 + 0 + 0 + + + Prize + 18901 + 50 + 1 + 0 + 0 + + + Prize + 18902 + 80 + 1 + 0 + 0 + + + Prize + 18903 + 95 + 1 + 0 + 0 + + + Prize + 18904 + 95 + 1 + 0 + 0 + + + Prize + 18925 + 120 + 1 + 0 + 0 + + + Prize + 18926 + 100 + 1 + 0 + 0 + + + Prize + 18928 + 20 + 1 + 0 + 0 + + + Prize + 18929 + 60 + 1 + 0 + 0 + + + Prize + 18933 + 50 + 1 + 0 + 0 + + + Prize + 18934 + 50 + 1 + 0 + 0 + + + Prize + 18935 + 50 + 1 + 0 + 0 + + + Prize + 18936 + 120 + 1 + 0 + 0 + + + Prize + 18937 + 120 + 1 + 0 + 0 + + + Prize + 18938 + 120 + 1 + 0 + 0 + + + Prize + 18939 + 50 + 1 + 0 + 0 + + + Prize + 18940 + 50 + 1 + 0 + 0 + + + Prize + 18946 + 20 + 1 + 0 + 0 + + + Prize + 18951 + 20 + 1 + 0 + 0 + + + Prize + 18952 + 20 + 1 + 0 + 0 + + + Prize + 18953 + 20 + 1 + 0 + 0 + + + Prize + 18958 + 20 + 1 + 0 + 0 + + + Prize + 18959 + 20 + 1 + 0 + 0 + + + Prize + 18964 + 120 + 1 + 0 + 0 + + + Prize + 18965 + 120 + 1 + 0 + 0 + + + Prize + 18968 + 120 + 1 + 0 + 0 + + + Prize + 18970 + 115 + 1 + 0 + 0 + + + Prize + 18971 + 115 + 1 + 0 + 0 + + + Prize + 18972 + 115 + 1 + 0 + 0 + + + Prize + 18973 + 115 + 1 + 0 + 0 + + + Prize + 18974 + 115 + 1 + 0 + 0 + + + Prize + 18975 + 115 + 1 + 0 + 0 + + + Prize + 18976 + 115 + 1 + 0 + 0 + + + Prize + 18977 + 115 + 1 + 0 + 0 + + + Prize + 18978 + 115 + 1 + 0 + 0 + + + Prize + 18979 + 115 + 1 + 0 + 0 + + + Prize + 18984 + 60 + 1 + 0 + 0 + + + Prize + 18986 + 80 + 1 + 0 + 0 + + + Prize + 18987 + 80 + 1 + 0 + 0 + + + Prize + 18988 + 80 + 1 + 0 + 0 + + + Prize + 18989 + 80 + 1 + 0 + 0 + + + Prize + 18990 + 120 + 1 + 0 + 0 + + + Prize + 18991 + 120 + 1 + 0 + 0 + + + Prize + 18992 + 95 + 1 + 0 + 0 + + + Prize + 18993 + 95 + 1 + 0 + 0 + + + Prize + 18994 + 40 + 1 + 0 + 0 + + + Prize + 18995 + 70 + 1 + 0 + 0 + + + Prize + 18996 + 70 + 1 + 0 + 0 + + + Prize + 18997 + 95 + 1 + 0 + 0 + + + Prize + 18998 + 95 + 1 + 0 + 0 + + + Prize + 19002 + 50 + 1 + 0 + 0 + + + Prize + 19004 + 100 + 1 + 0 + 0 + + + Prize + 19005 + 100 + 1 + 0 + 0 + + + Prize + 19006 + 100 + 1 + 0 + 0 + + + Prize + 19007 + 100 + 1 + 0 + 0 + + + Prize + 19008 + 100 + 1 + 0 + 0 + + + Prize + 19009 + 100 + 1 + 0 + 0 + + + Prize + 19010 + 100 + 1 + 0 + 0 + + + Prize + 19019 + 100 + 1 + 0 + 0 + + + Prize + 19020 + 100 + 1 + 0 + 0 + + + Prize + 19032 + 125 + 1 + 0 + 0 + + + Prize + 19033 + 125 + 1 + 0 + 0 + + + Prize + 20239 + 50 + 1 + 0 + 0 + + + Prize + 20319 + 60 + 1 + 0 + 0 + + + Prize + 20323 + 60 + 1 + 0 + 0 + + + Prize + 20327 + 60 + 1 + 0 + 0 + + + Prize + 20331 + 60 + 1 + 0 + 0 + + + Prize + 20352 + 105 + 1 + 0 + 0 + + + Prize + 20353 + 105 + 1 + 0 + 0 + + + Prize + 20354 + 105 + 1 + 0 + 0 + + + Prize + 20355 + 105 + 1 + 0 + 0 + + + Prize + 20356 + 100 + 1 + 0 + 0 + + + Prize + 20357 + 100 + 1 + 0 + 0 + + + Prize + 20358 + 120 + 1 + 0 + 0 + + + Prize + 20359 + 120 + 1 + 0 + 0 + + + Prize + 20360 + 120 + 1 + 0 + 0 + + + Prize + 20361 + 120 + 1 + 0 + 0 + + + Prize + 20362 + 120 + 1 + 0 + 0 + + + Prize + 20363 + 120 + 1 + 0 + 0 + + + Prize + 20374 + 120 + 1 + 0 + 0 + + + Prize + 20375 + 120 + 1 + 0 + 0 + + + Prize + 20376 + 120 + 1 + 0 + 0 + + + Prize + 20385 + 50 + 1 + 0 + 0 + + + Prize + 20393 + 50 + 1 + 0 + 0 + + + Prize + 20401 + 50 + 1 + 0 + 0 + + + Prize + 20408 + 100 + 1 + 0 + 0 + + + Prize + 20409 + 50 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSlithersongAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Slithersong Egg, Instant Egg Hatch, and an Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSlithersongAdultAgeUpBundle + -1 + 18985 + Slithersong Adult Bundle + + false + + 0 + + Bundle + 12788 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-08-29T07:00:13.363 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScuttleclawAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Scuttleclaw Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScuttleclawAdultAgeUpBundle + -1 + 19012 + Scuttleclaw Adult Bundle + + false + + 0 + + Bundle + 10928 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-06T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScuttleclawTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Scuttleclaw Egg, Instant Hatch, Adult Age Up, and Titan Age Up + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsScuttleclawTitanAgeUpBundle + -1 + 19013 + Scuttleclaw Titan Bundle + + false + + 0 + + Bundle + 10928 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-05T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Chimeragon Egg, Instant Hatch Ticket, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 19031 + Chimeragon Adult Bundle + + false + + 0 + + Bundle + 18589 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-11-24T20:00:24 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGrappleGrounderAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Grapple Grounder Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGrappleGrounderAdultAgeUpBundle + -1 + 19034 + Grapple Grounder Adult Bundle + + false + + 0 + + Bundle + 11980 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-06T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSliquifierAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Sliquifier Egg, Instant Egg Hatch, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSliquifierAdultAgeUpBundle + -1 + 19035 + Sliquifier Adult Bundle + + false + + 0 + + Bundle + 12137 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-02-14T08:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShovelhelmAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Shovelhelm Egg, Instant Egg Hatch, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsShovelhelmAdultAgeUpBundle + -1 + 19036 + Shovelhelm Adult Bundle + + false + + 0 + + Bundle + 12848 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-02-07T08:00:34.873 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSnafflefangAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Snafflefang Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSnafflefangAdultAgeUpBundle + -1 + 19037 + Snafflefang Adult Bundle + + false + + 0 + + Bundle + 10401 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-01-23T08:00:35.897 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSpeedStingerAdultAgeUpBundle + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + This bundle includes a Speed Stinger Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSpeedStingerAdultAgeUpBundle + -1 + 19038 + Speed Stinger Adult Bundle + + false + + 0 + + Bundle + 11347 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-18T19:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSpeedStingerTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Speed Stinger Egg, Instant Hatch Ticket, Adult Age Up, and Titan Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSpeedStingerTitanAgeUpBundle + -1 + 19039 + Speed Stinger Titan Bundle + + false + + 0 + + Bundle + 11347 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-18T19:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSandWraithAdultAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 750 + 0 + This bundle includes a Sand Wraith Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSandWraithAdultAgeUpBundle + -1 + 19042 + Sand Wraith Adult Bundle + + false + + 0 + + Bundle + 10933 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-14T07:00:05.89 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSandWraithTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Sand Wraith Egg, Instant Hatch Ticket, Adult Age Up, and Titan Age Up! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSandWraithTitanAgeUpBundle + -1 + 19043 + Sand Wraith Titan Bundle + + false + + 0 + + Bundle + 10933 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-04-14T07:00:40.82 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1000 + 0 + This bundle includes a Cavern Crasher Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 19067 + Cavern Crasher Adult Bundle + + false + + 0 + + Bundle + 18886 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + 2022-02-28T08:00:42.46 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestRed + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Cavern Crasher Egg, Instant Hatch Ticket, Adult Age Up, and Titan Age Up! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestRed + -1 + 19068 + Cavern Crasher Titan Bundle + + false + + 0 + + Bundle + 18886 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + 2022-02-28T08:00:47.227 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlue + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Seastormer Egg, Instant Hatch Ticket and Adult Age Up! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlue + -1 + 19097 + Seastormer Adult Bundle + + false + + 0 + + Bundle + 18806 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-01-17T08:00:44.247 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoDWDragonsNightLightBundle + + 436 + Dragons Bundle + + 0 + + 0 + 3500 + 0 + Includes all 3 Night Lights and Adult Age Up Tokens. + RS_DATA/DragonStoreIconsDO.unity3d/IcoDWDragonsNightLightBundle + -1 + 19167 + Age of the Night Lights Dragons Bundles + + false + + 0 + + Bundle + 17888 + 0 + 1 + 0 + 0 + + + Bundle + 17890 + 0 + 1 + 0 + 0 + + + Bundle + 17889 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 3 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2021-12-20T08:00:54.847 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestRed + + 436 + Dragons Bundle + + 0 + + 0 + 850 + 0 + Bring the heat with these new Molten Lava looks for your Dragons! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestRed + 1 + 19172 + Molten Skins Bundle + + false + + 0 + + Bundle + 18666 + 0 + 1 + 0 + 0 + + + Bundle + 18667 + 0 + 1 + 0 + 0 + + + Bundle + 18668 + 0 + 1 + 0 + 0 + + + Bundle + 18763 + 0 + 1 + 0 + 0 + + + Bundle + 18764 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 435 + Dragons AgeUp + + 0 + + 0 + 1000 + 0 + In this bundle you will receive 3 Adult Age Up Tokens for the price of 2! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 19175 + Adult Age Up Bundle + + false + + 0 + + Bundle + 10996 + 0 + 3 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Humbanger Egg, Instant Egg hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 19212 + Humbanger Adult Bundle + + false + + 0 + + Bundle + 19056 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-10-17T07:00:39.647 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 2000 + 0 + This bundle includes a Humbanger Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up Token. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 19213 + Humbanger Titan Bundle + + false + + 0 + + Bundle + 19056 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-10-17T07:00:20.247 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestGreen + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Golden Dragon Egg, Instant Hatch Ticket, and Adult Age Up! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestGreen + -1 + 20351 + Golden Dragon Adult Bundle + + false + + 0 + + Bundle + 19150 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-05T08:00:03.687 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSilverPhantomTitanAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1500 + 0 + This bundle includes a Silver Phantom Egg, Instant Egg Hatch, Adult Age Up and Titan Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsSilverPhantomTitanAgeUpBundle + -1 + 20454 + Silver Phantom Titan Bundle + + false + + 0 + + Bundle + 13153 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-02-20T08:00:08.16 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + Get your Zipplewraith ready in no time! This bundle includes a Flightmare Egg, Instant Hatch, and an Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 20481 + Zipplewraith Adult Bundle + + false + + 0 + + Bundle + 20232 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-05T08:00:43.973 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 2000 + 0 + This bundle includes a Zipplewraith Egg, Instant Egg Hatch, Adult Age Up, and Titan Age Up! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 20482 + Zipplewraith Titan Bundle + + false + + 0 + + Bundle + 20232 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-12-05T08:00:33.887 + 2023-07-01T07:00:00 + + + + http://media.schoolofdragons.com/Content/DOJILZ/Dragons/IcoCollectDWNightlightBlackBlue.png + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 454 + Dragons Dragon Ticket + + 0 + + 0 + 1700 + 0 + This bundle includes Dart and Adult Age Up! + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWNightlightBlackBlue + -1 + 20693 + Dart Night Light Bundle + + false + + 0 + + Bundle + 17888 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + 2023-01-02T08:00:56.88 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRuffrunnerAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 454 + Dragons Dragon Ticket + + 0 + + 0 + 1700 + 0 + This bundle includes Ruffrunner and Adult Age Up token! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsRuffrunnerAgeUpBundle + -1 + 20790 + Ruffrunner Night Light Bundle + Ruffrunner Night Light Bundles + false + + 0 + + Bundle + 17890 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + + + 2023-03-10T08:00:22.747 + 2023-07-01T07:00:00 + +
+ + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGraveknapperAdultAgeUpBundle + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 1500 + 0 + This bundle includes a Graveknapper Egg, Instant Hatch ticket, and Adult Age Up. + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsGraveknapperAdultAgeUpBundle + -1 + 20791 + Graveknapper Adult Bundle + Graveknapper Adult Bundles + false + + 0 + + Bundle + 20463 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-03-17T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsPouncerAgeUpBundle + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 454 + Dragons Dragon Ticket + + 0 + + 0 + 1700 + 0 + This bundle includes Pouncer and Adult Age Up token! + RS_DATA/DWDragonBundleIconsDO.unity3d/IcoDWDragonsPouncerAgeUpBundle + -1 + 20886 + Pouncer Night Light Bundle + Pouncer Night Light Bundles + false + + 0 + + Bundle + 17889 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2023-05-18T19:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + CoinRedemptionValue + 800 + 0 + + + 425 + Dragons Treasure + + 0 + + 0 + 100 + 0 + Exchange 100 gems for 800 gold. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + -1 + 8204 + 800 Gold + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + CoinRedemptionValue + 2800 + 0 + + + 425 + Dragons Treasure + + 0 + + 0 + 300 + 0 + Exchange 300 gems for 2800 gold. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + -1 + 13185 + 2800 Gold + false + + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1250 + 0 + This bundle includes a Crimson Goregutter Egg, Instant Hatch, and Adult Age Up. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18723 + Crimson Goregutter Adult Bundle + + false + + 0 + + Bundle + 16058 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-08-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + + New + True + 0 + + + 436 + Dragons Bundle + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1750 + 0 + This bundle includes a Crimson Goregutter Egg, Instant Hatch, Adult Age Up, and Titan Age Up + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 18724 + Crimson Goregutter Titan Bundle + + false + + 0 + + Bundle + 16058 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 13184 + 0 + 1 + 0 + 0 + + + Bundle + 18601 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + 2022-08-08T07:00:00 + 2023-07-01T07:00:00 + + + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapNightlight + + 2D + 1 + 0 + + + Parent + 1 + 0 + + + 2D Size + 310,310 + 0 + + + ExpansionMissionID + 2986 + 0 + + + Preview + RS_DATA/DragonStoreIconsDO.unity3d/AniDWDragonsStoreNightlightPreview + 0 + + + 514 + Dragons Expansions + + 0 + + + 381 + Quest Items + + 0 + + 0 + 0 + 0 + Purchase direct access to the expansion so you can enjoy it without an active membership. + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapNightlight + 1 + 19119 + Age of the Night Lights Expansion + false + + 0 + + Override + 19118 + 0 + 1 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

0

+ + + + +
+ + RS_SHARED/DragonPetPlay.unity3d/PfLeatherBall + + Type + BALL + 0 + + + 327 + Pet Play + + 0 + + 0 + -1 + 0 + + RS_SHARED/DragonPetPlay.unity3d/IcoPetPlayLeatherBall + 1 + 8114 + Leather Ball + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + 0 + 0 + 0 + Redeem your social box for awesome rewards! + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + -1 + 8774 + Social Box + Social Box + false + + 1 + + Bundle + 8232 + 0 + 0 + 0 + 0 + + + Bundle + 8238 + 0 + 0 + 0 + 0 + + + Bundle + 8245 + 0 + 0 + 0 + 0 + + + Bundle + 8381 + 0 + 0 + 0 + 0 + + + Bundle + 8249 + 0 + 0 + 0 + 0 + + + Bundle + 8218 + 0 + 0 + 0 + 0 + + + Bundle + 8217 + 0 + 0 + 0 + 0 + + + Bundle + 7231 + 0 + 0 + 0 + 0 + + + Bundle + 8250 + 0 + 0 + 0 + 0 + + + Bundle + 8230 + 0 + 0 + 0 + 0 + + + Bundle + 8041 + 0 + 0 + 0 + 0 + + false + false + 0 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestGreen + + 2D + 1 + 0 + + + 2D Size + 300,500 + 0 + + + 458 + Consumables + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 100 + 0 + Contains the following5x Speed Boosters5x Smart Bombs5x Yaknogs5x Health Potions5x Double Shots + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestGreen + -1 + 9425 + Crate of Consumables + false + + 0 + + Bundle + 9142 + 0 + 5 + 0 + 0 + + + Bundle + 9144 + 0 + 5 + 0 + 0 + + + Bundle + 9145 + 0 + 5 + 0 + 0 + + + Bundle + 11865 + 0 + 5 + 0 + 0 + + + Bundle + 12179 + 0 + 5 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 10000 + 0 + Get the bundle of 10 Dragon Eggs all of which can go to the Titan stage (including the Terrible Terror and the Skrill), 10 Baby to Titan Tickets and 2 Dream stables. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 13158 + Titan Dragon Bundle + false + + + + Bundle + 13058 + 0 + 1 + 0 + 0 + + + Bundle + 8971 + 0 + 1 + 0 + 0 + + + Bundle + 8972 + 0 + 1 + 0 + 0 + + + Bundle + 8973 + 0 + 1 + 0 + 0 + + + Bundle + 8976 + 0 + 1 + 0 + 0 + + + Bundle + 8975 + 0 + 1 + 0 + 0 + + + Bundle + 9468 + 0 + 1 + 0 + 0 + + + Bundle + 9591 + 0 + 1 + 0 + 0 + + + Bundle + 10403 + 0 + 1 + 0 + 0 + + + Bundle + 11963 + 0 + 1 + 0 + 0 + + + Bundle + 12366 + 0 + 2 + 0 + 0 + + + Bundle + 13184 + 0 + 10 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + + 436 + Dragons Bundle + + 0 + + 0 + 2000 + 0 + Eggs of the Deadly Nadder, Monstrous Nightmare, Hotburple, Gronckle, Zippleback and Stormcutter with 2 Stables. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 13165 + Berk Dragon Bundle + false + + + + Bundle + 8976 + 0 + 1 + 0 + 0 + + + Bundle + 8973 + 0 + 1 + 0 + 0 + + + Bundle + 8971 + 0 + 1 + 0 + 0 + + + Bundle + 8972 + 0 + 1 + 0 + 0 + + + Bundle + 9969 + 0 + 1 + 0 + 0 + + + Bundle + 10403 + 0 + 1 + 0 + 0 + + + Bundle + 8978 + 0 + 1 + 0 + 0 + + + Bundle + 8980 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 436 + Dragons Bundle + + 0 + + + 456 + Dragons Dragon Egg + + 0 + + + 552 + Hot Deals Eggs + + 0 + + 0 + 1340 + 0 + Changewing egg with an adult age up ticket and 4 wonderful skins. + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryChestBlack + -1 + 13195 + Changewing Bundle + false + + + + Bundle + 10787 + 0 + 1 + 0 + 0 + + + Bundle + 10996 + 0 + 1 + 0 + 0 + + + Bundle + 10821 + 0 + 1 + 0 + 0 + + + Bundle + 10822 + 0 + 1 + 0 + 0 + + + Bundle + 10823 + 0 + 1 + 0 + 0 + + + Bundle + 10820 + 0 + 1 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 2D + 1 + 0 + + + PetStage + BABY + 0 + + + 2D Size + 378,446 + 0 + + + NewPetStage + ADULT + 0 + + + 435 + Dragons AgeUp + + 0 + + 0 + 500 + 0 + Age your Dragon to Adult Stage + RS_DATA/DragonStoreIconsDO.unity3d/IcoDWDragonsAgeUpStoneLg + -1 + 8661 + Baby To Adult + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfComposterDO.unity3d/PfComposterDO + + 575 + SoD New User Packs + + 0 + + 0 + 497 + 0 + A Composter, Sheep Pen, Chicken Pen, Fancy Barn, Garden Viking and three Chalice Fire Pits. + RS_DATA/FarmDWIcons.unity3d/IcoFarmDWComposter + 1 + 8697 + Farm Starter Pack + Farm Starter Pack + false + + 2 + + Bundle + 8587 + 1 + 1 + 0 + 0 + + + Bundle + 7233 + 1 + 1 + 0 + 0 + + + Bundle + 8043 + 1 + 1 + 0 + 0 + + + Bundle + 8253 + 1 + 1 + 0 + 0 + + + Bundle + 8230 + 1 + 1 + 0 + 0 + + + Bundle + 8233 + 1 + 3 + 0 + 0 + + false + false + 10 + 1 + + 0 + 9 +

+ + + + + + + RS_DATA/PfIronMysteryChestOrange.unity3d/PfIronMysteryChestOrange + + 436 + Dragons Bundle + + 0 + + 0 + 150 + 0 + + 5x Perch + 3x Herring + 3x Brown Trout + 3x Halibut + 2x Salmon + 2x Eel + + RS_DATA/DragonStoreIconsDO.unity3d/IcoStoreDWMysteryBox + -1 + 8698 + Bulk Box of Fish + Bulk Box of Fish + false + + 2 + + Bundle + 7143 + 1 + 5 + 0 + 0 + + + Bundle + 7142 + 1 + 3 + 0 + 0 + + + Bundle + 7139 + 1 + 3 + 0 + 0 + + + Bundle + 7141 + 1 + 3 + 0 + 0 + + + Bundle + 7144 + 1 + 2 + 0 + 0 + + + Bundle + 7140 + 1 + 2 + 0 + 0 + + false + false + 10 + -1 + + 0 + 10 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + 575 + SoD New User Packs + + 0 + + 0 + 220 + 0 + + 1x Blue Dragon Top + 1x Blue Fur Skirt + 1x Blue Boots + 1x Sea War Helm + 1x Blue War Bracers + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + 1 + 8699 + Shieldmaiden Pack 1 + Shieldmaiden Pack 1 + false + + 1 + + Bundle + 8155 + 0 + 0 + 0 + 0 + + + Bundle + 8064 + 0 + 0 + 0 + 0 + + + Bundle + 8055 + 0 + 0 + 0 + 0 + + + Bundle + 8306 + 0 + 0 + 0 + 0 + + + Bundle + 8159 + 0 + 0 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + 575 + SoD New User Packs + + 0 + + 0 + 237 + 0 + + 1x Dark Fur Top + 1x Dark Skirt + 1x Studded Tall Boots + 1x Dark Battle Helm + 1x Night War Bracers + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + 1 + 8700 + Shieldmaiden Pack 2 + Shieldmaiden Pack 2 + false + + 1 + + Bundle + 8129 + 0 + 0 + 0 + 0 + + + Bundle + 8062 + 0 + 0 + 0 + 0 + + + Bundle + 8078 + 0 + 0 + 0 + 0 + + + Bundle + 8137 + 0 + 0 + 0 + 0 + + + Bundle + 8221 + 0 + 0 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + 575 + SoD New User Packs + + 0 + + 0 + 297 + 0 + + 1x Nature Top + 1x Classic Crude Skirt + 1x Green Boots + 1x The Asterisk Helm + 1x Ornate War Bracers + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + 1 + 8701 + Shieldmaiden Pack 3 + Shieldmaiden Pack 3 + false + + 1 + + Bundle + 8446 + 0 + 0 + 0 + 0 + + + Bundle + 8364 + 0 + 0 + 0 + 0 + + + Bundle + 8054 + 0 + 0 + 0 + 0 + + + Bundle + 8352 + 0 + 0 + 0 + 0 + + + Bundle + 8158 + 0 + 0 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + 575 + SoD New User Packs + + 0 + + 0 + 235 + 0 + + 1x Sky Riding Tunic + 1x Blue Pants + 1x Cool Boots + 1x War Helmet + 1x Gray Wrist Armor + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + 1 + 8702 + Viking Pack 1 + Viking Pack 1 + false + + 1 + + Bundle + 8498 + 0 + 0 + 0 + 0 + + + Bundle + 8071 + 0 + 0 + 0 + 0 + + + Bundle + 8081 + 0 + 0 + 0 + 0 + + + Bundle + 8320 + 0 + 0 + 0 + 0 + + + Bundle + 8372 + 0 + 0 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + 575 + SoD New User Packs + + 0 + + 0 + 197 + 0 + + 1x Black Vested Tunic + 1x Green Trousers + 1x Charcoal Boots + 1x Black V Helmet + 1x Defense Wristbands + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + 1 + 8703 + Viking Pack 2 + Viking Pack 2 + false + + 1 + + Bundle + 8056 + 0 + 0 + 0 + 0 + + + Bundle + 8067 + 0 + 0 + 0 + 0 + + + Bundle + 8080 + 0 + 0 + 0 + 0 + + + Bundle + 8484 + 0 + 0 + 0 + 0 + + + Bundle + 8373 + 0 + 0 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + + 575 + SoD New User Packs + + 0 + + 0 + 225 + 0 + + 1x Brown Vested Tunic + 1x Brown Pants + 1x Worn Leather Boots + 1x Brown Fur Helmet + 1x Bronze Bracers + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + 1 + 8704 + Viking Pack 3 + Viking Pack 3 + false + + 1 + + Bundle + 8092 + 0 + 0 + 0 + 0 + + + Bundle + 8070 + 0 + 0 + 0 + 0 + + + Bundle + 8085 + 0 + 0 + 0 + 0 + + + Bundle + 8358 + 0 + 0 + 0 + 0 + + + Bundle + 8167 + 0 + 0 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfFishingPole02.unity3d/PfFishingPole02 + + 575 + SoD New User Packs + + 0 + + 0 + 89 + 0 + + 1x Improved Rod + 10x Lug Worm Bait + + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWFishingPole02 + 1 + 8705 + Fishing Starter Pack + Fishing Starter Pack + false + + 2 + + Bundle + 7584 + 1 + 1 + 0 + 0 + + + Bundle + 7249 + 1 + 10 + 0 + 0 + + false + false + 10 + 1 + + 0 + 10 +

+ + + + + + + RS_DATA/DragonsPackagesDO.unity3d/AniDWDragonsNewUserPkg + 0 + 495 + 10 + + A package designed for new users! Contains: + 1x Wild Saddle + 1x Premium Dragon Skin + 1x Fishing Starter Pack + 1x Bulk Box of Fish + 1x Farm Starter Pack + 1x Viking or Shield Maiden Pack + 800 Gold + + RS_DATA/DragonsPackagesDO.unity3d/AniDWDragonsNewUserPkg + 1 + 8710 + SoD Starter Pack + SoD Starter Pack + false + + 0 + + Bundle + 8654 + 1 + 1 + 0 + 0 + + + Bundle + 8655 + 1 + 1 + 0 + 0 + + + Bundle + 8656 + 1 + 1 + 0 + 0 + + + Bundle + 8657 + 1 + 1 + 0 + 0 + + + Bundle + 8658 + 1 + 1 + 0 + 0 + + + Bundle + 8659 + 1 + 1 + 0 + 0 + + + Bundle + 8460 + 1 + 1 + 0 + 0 + + + Bundle + 8462 + 1 + 1 + 0 + 0 + + + Bundle + 8464 + 1 + 1 + 0 + 0 + + + Bundle + 8466 + 1 + 1 + 0 + 0 + + + Bundle + 8468 + 1 + 1 + 0 + 0 + + + Bundle + 8470 + 1 + 1 + 0 + 0 + + + Bundle + 8204 + 1 + 1 + 0 + 0 + + + Bundle + 8498 + 1 + 1 + 0 + 0 + + + Bundle + 8071 + 1 + 1 + 0 + 0 + + + Bundle + 8081 + 1 + 1 + 0 + 0 + + + Bundle + 8320 + 1 + 1 + 0 + 0 + + + Bundle + 8372 + 1 + 1 + 0 + 0 + + + Bundle + 8155 + 1 + 1 + 0 + 0 + + + Bundle + 8064 + 1 + 1 + 0 + 0 + + + Bundle + 8055 + 1 + 1 + 0 + 0 + + + Bundle + 8306 + 1 + 1 + 0 + 0 + + + Bundle + 8159 + 1 + 1 + 0 + 0 + + + Bundle + 7143 + 1 + 5 + 0 + 0 + + + Bundle + 7142 + 1 + 3 + 0 + 0 + + + Bundle + 7139 + 1 + 3 + 0 + 0 + + + Bundle + 7141 + 1 + 3 + 0 + 0 + + + Bundle + 7144 + 1 + 2 + 0 + 0 + + + Bundle + 7140 + 1 + 2 + 0 + 0 + + + Bundle + 8587 + 1 + 1 + 0 + 0 + + + Bundle + 8253 + 1 + 1 + 0 + 0 + + + Bundle + 8230 + 1 + 1 + 0 + 0 + + + Bundle + 8233 + 1 + 3 + 0 + 0 + + + Bundle + 7584 + 1 + 1 + 0 + 0 + + + Bundle + 7249 + 1 + 10 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + RS_DATA/PfCollectDWGoldChest.unity3d/PfCollectDWGoldChest + 0 + -1 + 0 + Membership placeholder graphic + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWGoldChest + -1 + 8818 + Get Membership Now! + false + + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsThunderdrumDO.unity3d/PfDWThunderdrumWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 600 + 0 + Contains 1x Thuderdrum Egg, 1x Thuderdrum Warpaint, 1x Thuderdrum Jacket and 1x Thuderdrum Totem at a discount! + RS_SHARED/DWDragonsSkinsThunderdrumDO.unity3d/IcoDWThunderdrumWarpaintSkin + 1 + 10767 + Thunderdrum Bundle + false + + + + Bundle + 10759 + 0 + 0 + 0 + 0 + + + Bundle + 10760 + 0 + 0 + 0 + 0 + + + Bundle + 10761 + 0 + 0 + 0 + 0 + + + Bundle + 8974 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsThunderdrumDO.unity3d/PfDWThunderdrumWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 600 + 0 + Contains 1x Thuderdrum Egg, 1x Thuderdrum Warpaint, 1x Thuderdrum Jacket and 1x Thuderdrum Totem at a discount + RS_SHARED/DWDragonsSkinsThunderdrumDO.unity3d/IcoDWThunderdrumWarpaintSkin + -1 + 10768 + Thunderdrum Bundle + false + + + + Bundle + 10759 + 0 + 0 + 0 + 0 + + + Bundle + 10760 + 0 + 0 + 0 + 0 + + + Bundle + 10762 + 0 + 0 + 0 + 0 + + + Bundle + 8974 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsFlightmareDO.unity3d/PfDWFlightmareWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1050 + 0 + Contains 1x Flightmare Egg, 1x Flightmare Warpaint, 1x Flightmare Jacket and 1x Flightmare Totem at a discount! + RS_SHARED/DWDragonsSkinsFlightmareDO.unity3d/IcoDWFlightmareWarpaintSkin + -1 + 10769 + Flightmare Bundle + false + + + + Bundle + 9591 + 0 + 0 + 0 + 0 + + + Bundle + 10763 + 0 + 0 + 0 + 0 + + + Bundle + 10765 + 0 + 0 + 0 + 0 + + + Bundle + 10764 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsFlightmareDO.unity3d/PfDWFlightmareWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1050 + 0 + Contains 1x Flightmare Egg, 1x Flightmare Warpaint, 1x Flightmare Jacket and 1x Flightmare Totem at a discount! + RS_SHARED/DWDragonsSkinsFlightmareDO.unity3d/IcoDWFlightmareWarpaintSkin + -1 + 10770 + Flightmare Bundle + false + + + + Bundle + 9591 + 0 + 0 + 0 + 0 + + + Bundle + 10763 + 0 + 0 + 0 + 0 + + + Bundle + 10766 + 0 + 0 + 0 + 0 + + + Bundle + 10764 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsRaincutterDO.unity3d/PfDWRaincutterWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1050 + 0 + Contains 1x Raincutter Egg, 1x Raincutter Warpaint, 1x Raincutter Jacket and 1x Raincutter Totem at a discount! + RS_SHARED/DWDragonsSkinsRaincutterDO.unity3d/IcoDWRainCutterWarpaintSkin + -1 + 10918 + Raincutter Dragon Bundle + false + + + + Bundle + 9779 + 0 + 0 + 0 + 0 + + + Bundle + 10917 + 0 + 0 + 0 + 0 + + + Bundle + 10916 + 0 + 0 + 0 + 0 + + + Bundle + 10911 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsRaincutterDO.unity3d/PfDWRaincutterWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1050 + 0 + Contains 1x Raincutter Egg, 1x Raincutter Warpaint, 1x Raincutter Jacket and 1x Raincutter Totem at a discount! + RS_SHARED/DWDragonsSkinsRaincutterDO.unity3d/IcoDWRainCutterWarpaintSkin + -1 + 10919 + Raincutter Dragon Bundle + false + + + + Bundle + 9779 + 0 + 0 + 0 + 0 + + + Bundle + 10917 + 0 + 0 + 0 + 0 + + + Bundle + 10916 + 0 + 0 + 0 + 0 + + + Bundle + 10912 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsWhisperingDeathDO.unity3d/PfDWWhisperDeathWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 570 + 0 + Contains 1x Whispering Death Egg, 1x Whispering Death Warpaint, 1x W. Death Jacket and 1x W. Death Totem at a discount! + RS_SHARED/DWDragonsSkinsWhisperingDeathDO.unity3d/IcoDWWhisperingDeathWarpaintSkin + -1 + 10941 + Whispering Death Bundle + false + + + + Bundle + 8975 + 0 + 0 + 0 + 0 + + + Bundle + 10937 + 0 + 0 + 0 + 0 + + + Bundle + 10938 + 0 + 0 + 0 + 0 + + + Bundle + 10939 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsWhisperingDeathDO.unity3d/PfDWWhisperDeathWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 570 + 0 + Contains 1x Whispering Death Egg, 1x Whispering Death Warpaint, 1x W. Death Jacket and 1x W. Death Totem at a discount! + RS_SHARED/DWDragonsSkinsWhisperingDeathDO.unity3d/IcoDWWhisperingDeathWarpaintSkin + -1 + 10942 + Whispering Death Bundle + false + + + + Bundle + 8975 + 0 + 0 + 0 + 0 + + + Bundle + 10937 + 0 + 0 + 0 + 0 + + + Bundle + 10938 + 0 + 0 + 0 + 0 + + + Bundle + 10940 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsNightmareDO.unity3d/PfDWNightmareWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 525 + 0 + Contains 1x M. Nightmare Egg, 1x M. Nightmare Warpaint, 1x M. Nightmare Jacket and 1x M. Nightmare Totem at a discount! + RS_SHARED/DWDragonsSkinsNightmareDO.unity3d/IcoDWNightmareWarpaintSkin + -1 + 10990 + Monstrous Nightmare Bundle + false + + + + Bundle + 10986 + 0 + 0 + 0 + 0 + + + Bundle + 10988 + 0 + 0 + 0 + 0 + + + Bundle + 10989 + 0 + 0 + 0 + 0 + + + Bundle + 8973 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsNightmareDO.unity3d/PfDWNightmareWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 525 + 0 + Contains 1x M. Nightmare Egg, 1x M. Nightmare Warpaint, 1x M. Nightmare Jacket and 1x M. Nightmare Totem at a discount! + RS_SHARED/DWDragonsSkinsNightmareDO.unity3d/IcoDWNightmareWarpaintSkin + -1 + 10991 + Monstrous Nightmare Bundle + false + + + + Bundle + 10987 + 0 + 0 + 0 + 0 + + + Bundle + 10988 + 0 + 0 + 0 + 0 + + + Bundle + 10989 + 0 + 0 + 0 + 0 + + + Bundle + 8973 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsZipplebackDO.unity3d/PfDWZipplebackWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 425 + 0 + Contains 1x H. Zippleback Egg, 1x H. Zippleback Warpaint, 1x H. Zippleback Jacket and 1x H. Zippleback Totem at a discount! + RS_SHARED/DWDragonsSkinsZipplebackDO.unity3d/IcoDWZipplebackWarpaintSkin + -1 + 11656 + Hideous Zippleback Bundle + false + + + + Bundle + 8976 + 0 + 0 + 0 + 0 + + + Bundle + 11652 + 0 + 0 + 0 + 0 + + + Bundle + 11654 + 0 + 0 + 0 + 0 + + + Bundle + 11655 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsZipplebackDO.unity3d/PfDWZipplebackWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 425 + 0 + Contains 1x H. Zippleback Egg, 1x H. Zippleback Warpaint, 1x H. Zippleback Jacket and 1x H. Zippleback Totem at a discount! + RS_SHARED/DWDragonsSkinsZipplebackDO.unity3d/IcoDWZipplebackWarpaintSkin + -1 + 11657 + Hideous Zippleback Bundle + false + + + + Bundle + 8976 + 0 + 0 + 0 + 0 + + + Bundle + 11653 + 0 + 0 + 0 + 0 + + + Bundle + 11654 + 0 + 0 + 0 + 0 + + + Bundle + 11655 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsSkrillDO.unity3d/PfDWSkrillWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + Contains 1x Skrill Egg, 1x Skrill Warpaint, 1x Skrill Jacket and 1x Skrill Totem at a discount! + RS_SHARED/DWDragonsSkinsSkrillDO.unity3d/IcoDWSkrillWarpaintSkin + -1 + 11678 + Skrill Bundle + false + + + + Bundle + 9468 + 0 + 0 + 0 + 0 + + + Bundle + 11672 + 0 + 0 + 0 + 0 + + + Bundle + 11674 + 0 + 0 + 0 + 0 + + + Bundle + 11677 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsSkrillDO.unity3d/PfDWSkrillWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + Contains 1x Skrill Egg, 1x Skrill Warpaint, 1x Skrill Jacket and 1x Skrill Totem at a discount! + RS_SHARED/DWDragonsSkinsSkrillDO.unity3d/IcoDWSkrillWarpaintSkin + -1 + 11679 + Skrill Bundle + false + + + + Bundle + 9468 + 0 + 0 + 0 + 0 + + + Bundle + 11673 + 0 + 0 + 0 + 0 + + + Bundle + 11674 + 0 + 0 + 0 + 0 + + + Bundle + 11677 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsTyphoomerangDO.unity3d/PfDWTyphoomerangWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + Contains 1x Typhoomerang Egg, 1x Typhoomerang Warpaint, 1x Typhoomerang Jacket and 1x Typhoomerang Totem at a discount. + RS_SHARED/DWDragonsSkinsTyphoomerangDO.unity3d/IcoDWTyphoomerangWarpaintSkin + -1 + 11707 + Typhoomerang Bundle + false + + + + Bundle + 11703 + 0 + 0 + 0 + 0 + + + Bundle + 11705 + 0 + 0 + 0 + 0 + + + Bundle + 11706 + 0 + 0 + 0 + 0 + + + Bundle + 9683 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsTyphoomerangDO.unity3d/PfDWTyphoomerangWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1000 + 0 + Contains 1x Typhoomerang Egg, 1x Typhoomerang Warpaint, 1x Typhoomerang Jacket and 1x Typhoomerang Totem at a discount. + RS_SHARED/DWDragonsSkinsTyphoomerangDO.unity3d/IcoDWTyphoomerangWarpaintSkin + -1 + 11708 + Typhoomerang Bundle + false + + + + Bundle + 11704 + 0 + 0 + 0 + 0 + + + Bundle + 11705 + 0 + 0 + 0 + 0 + + + Bundle + 11706 + 0 + 0 + 0 + 0 + + + Bundle + 9683 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsGronckleDO.unity3d/PfDWGronckleWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 405 + 0 + Contains 1x Gronckle Egg, 1x Gronckle Warpaint, 1x Gronckle Jacket and 1x Gronckle Totem at a discount! + RS_SHARED/DWDragonsSkinsGronckleDO.unity3d/IcoDWGronckleWarpaintSkin + -1 + 11740 + Gronckle Bundle + false + + + + Bundle + 8971 + 0 + 0 + 0 + 0 + + + Bundle + 11726 + 0 + 0 + 0 + 0 + + + Bundle + 11727 + 0 + 0 + 0 + 0 + + + Bundle + 11728 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsGronckleDO.unity3d/PfDWGronckleWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 405 + 0 + Contains 1x Gronckle Egg, 1x Gronckle Warpaint, 1x Gronckle Jacket and 1x Gronckle Totem at a discount! + RS_SHARED/DWDragonsSkinsGronckleDO.unity3d/IcoDWGronckleWarpaintSkin + -1 + 11741 + Gronckle Bundle + false + + + + Bundle + 8971 + 0 + 0 + 0 + 0 + + + Bundle + 11726 + 0 + 0 + 0 + 0 + + + Bundle + 11727 + 0 + 0 + 0 + 0 + + + Bundle + 11729 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsDeadlyNadderDO.unity3d/PfDWDeadlyNadderWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 410 + 0 + Contains 1x Nadder Egg, 1x Nadder Warpaint, 1x Nadder Jacket and 1x Nadder Totem at a discount! + RS_SHARED/DWDragonsSkinsDeadlyNadderDO.unity3d/IcoDWDeadlyNadderWarpaintSkin + -1 + 11774 + Deadly Nadder Bundle + false + + + + Bundle + 8972 + 0 + 0 + 0 + 0 + + + Bundle + 11770 + 0 + 0 + 0 + 0 + + + Bundle + 11771 + 0 + 0 + 0 + 0 + + + Bundle + 11773 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsDeadlyNadderDO.unity3d/PfDWDeadlyNadderWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 410 + 0 + Contains 1x Nadder Egg, 1x Nadder Warpaint, 1x Nadder Jacket and 1x Nadder Totem at a discount! + RS_SHARED/DWDragonsSkinsDeadlyNadderDO.unity3d/IcoDWDeadlyNadderWarpaintSkin + -1 + 11775 + Deadly Nadder Bundle + false + + + + Bundle + 8972 + 0 + 0 + 0 + 0 + + + Bundle + 11770 + 0 + 0 + 0 + 0 + + + Bundle + 11772 + 0 + 0 + 0 + 0 + + + Bundle + 11773 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsStormcutterDO.unity3d/PfDWStormcutterWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1200 + 0 + Contains 1x Stormcutter Egg, 1x Stormcutter Warpaint, 1x Stormcutter Jacket and 1x Stormcutter Totem at a discount! + RS_SHARED/DWDragonsSkinsStormcutterDO.unity3d/IcoDWStormcutterWarpaintSkin + -1 + 11795 + Stormcutter Bundle + false + + + + Bundle + 10403 + 0 + 0 + 0 + 0 + + + Bundle + 11791 + 0 + 0 + 0 + 0 + + + Bundle + 11792 + 0 + 0 + 0 + 0 + + + Bundle + 11793 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsStormcutterDO.unity3d/PfDWStormcutterWarpaint + + 436 + Dragons Bundle + + 0 + + 0 + 1200 + 0 + Contains 1x Stormcutter Egg, 1x Stormcutter Warpaint, 1x Stormcutter Jacket and 1x Stormcutter Totem at a discount! + RS_SHARED/DWDragonsSkinsStormcutterDO.unity3d/IcoDWStormcutterWarpaintSkin + -1 + 11796 + Stormcutter Bundle + false + + + + Bundle + 10403 + 0 + 0 + 0 + 0 + + + Bundle + 11791 + 0 + 0 + 0 + 0 + + + Bundle + 11792 + 0 + 0 + 0 + 0 + + + Bundle + 11794 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsRumblehornDO.unity3d/PfDWRumbleHornWarpaintSkin + + 436 + Dragons Bundle + + 0 + + 0 + 900 + 0 + Get the Rumblehorn Egg, Jacket and Warpaint for a discount! + RS_SHARED/DWDragonsSkinsRumblehornDO.unity3d/IcoDWRumbleHornWarpaintSkin + -1 + 12129 + Rumblehorn Bundle + false + + + + Bundle + 12126 + 0 + 0 + 0 + 0 + + + Bundle + 12128 + 0 + 0 + 0 + 0 + + + Bundle + 9525 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsRumblehornDO.unity3d/PfDWRumbleHornWarpaintSkin + + 436 + Dragons Bundle + + 0 + + 0 + 900 + 0 + Get the Rumblehorn Egg, Jacket and Warpaint for a discount! + RS_SHARED/DWDragonsSkinsRumblehornDO.unity3d/IcoDWRumbleHornWarpaintSkin + -1 + 12130 + Rumblehorn Bundle + false + + + + Bundle + 12127 + 0 + 0 + 0 + 0 + + + Bundle + 12128 + 0 + 0 + 0 + 0 + + + Bundle + 9525 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsScauldronDO.unity3d/PfDWScauldronWarPaintSkin + + 436 + Dragons Bundle + + 0 + + 0 + 950 + 0 + Contains 1x Scauldron Egg, 1x Scauldron Warpaint, 1x Scauldron Jacket and 1x Scauldron Totem at a discount! + RS_SHARED/DWDragonsSkinsScauldronDO.unity3d/IcoDWScauldronWarPaintSkin + -1 + 12182 + Scauldron Bundle + false + + + + Bundle + 9517 + 0 + 0 + 0 + 0 + + + Bundle + 11845 + 0 + 0 + 0 + 0 + + + Bundle + 12134 + 0 + 0 + 0 + 0 + + + Bundle + 12180 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsScauldronDO.unity3d/PfDWScauldronWarPaintSkin + + 436 + Dragons Bundle + + 0 + + 0 + 950 + 0 + Contains 1x Scauldron Egg, 1x Scauldron Warpaint, 1x Scauldron Jacket and 1x Scauldron Totem at a discount! + RS_SHARED/DWDragonsSkinsScauldronDO.unity3d/IcoDWScauldronWarPaintSkin + -1 + 12183 + Scauldron Bundle + false + + + + Bundle + 9517 + 0 + 0 + 0 + 0 + + + Bundle + 11846 + 0 + 0 + 0 + 0 + + + Bundle + 12134 + 0 + 0 + 0 + 0 + + + Bundle + 12180 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsHotburpleDO.unity3d/PfDWHotburpleWarpaintSkin + + 436 + Dragons Bundle + + 0 + + 0 + 525 + 0 + Purchase 1x Hotburple Egg, 1x Hotburple Warpaint, 1x Hotburple Jacket and 1x Hotburple totem at a discount! + RS_SHARED/DWDragonsSkinsHotburpleDO.unity3d/IcoDWHotburpleWarpaintSkin + -1 + 12216 + Hotburple Bundle + false + + + + Bundle + 9969 + 0 + 0 + 0 + 0 + + + Bundle + 12212 + 0 + 0 + 0 + 0 + + + Bundle + 12213 + 0 + 0 + 0 + 0 + + + Bundle + 12214 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_SHARED/DWDragonsSkinsHotburpleDO.unity3d/PfDWHotburpleWarpaintSkin + + 436 + Dragons Bundle + + 0 + + 0 + 525 + 0 + Purchase 1x Hotburple Egg, 1x Hotburple Warpaint, 1x Hotburple Jacket and 1x Hotburple totem at a discount! + RS_SHARED/DWDragonsSkinsHotburpleDO.unity3d/IcoDWHotburpleWarpaintSkin + -1 + 12217 + Hotburple Bundle + false + + + + Bundle + 9969 + 0 + 0 + 0 + 0 + + + Bundle + 12212 + 0 + 0 + 0 + 0 + + + Bundle + 12213 + 0 + 0 + 0 + 0 + + + Bundle + 12215 + 0 + 0 + 0 + 0 + + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + + + 2D + 1 + 0 + + + 2D Size + 378,446 + 0 + + + PetStage + ADULT + 0 + + + NewPetStage + TITAN + 0 + + + 435 + Dragons AgeUp + + 0 + + 0 + 500 + 0 + Age your Dragon to Titan Stage + RS_DATA/DragonStoreIconsDO.unity3d/IcoDWDragonsTitanAgeStoneLg + -1 + 12823 + Adult To Titan + false + + 0 + false + false + 10 + -1 + + 0 + 0 +

+ + + + + + + RS_DATA/DragonsPackagesDO.unity3d/AniDWDragonsTacticsPkg + 0 + 295 + 10 + A package designed for new dragon tactics players! + RS_DATA/DragonsPackagesDO.unity3d/AniDWDragonsTacticsPkg + 1 + 15829 + Dragon Tactics Starter Pack + false + + 0 + + Bundle + 8460 + 1 + 1 + 0 + 0 + + + Bundle + 8462 + 1 + 1 + 0 + 0 + + + Bundle + 8464 + 1 + 1 + 0 + 0 + + + Bundle + 8466 + 1 + 1 + 0 + 0 + + + Bundle + 8468 + 1 + 1 + 0 + 0 + + + Bundle + 8470 + 1 + 1 + 0 + 0 + + + Bundle + 8204 + 1 + 1 + 0 + 0 + + + Bundle + 7143 + 1 + 5 + 0 + 0 + + + Bundle + 7142 + 1 + 5 + 0 + 0 + + + Bundle + 7139 + 1 + 5 + 0 + 0 + + + Bundle + 7141 + 1 + 5 + 0 + 0 + + + Bundle + 7144 + 1 + 2 + 0 + 0 + + + Bundle + 7140 + 1 + 2 + 0 + 0 + + + Bundle + 7249 + 1 + 10 + 0 + 0 + + + Bundle + 10984 + 1 + 2 + 0 + 0 + + + Bundle + 8722 + 1 + 5 + 0 + 0 + + + Bundle + 10985 + 1 + 2 + 0 + 0 + + + Bundle + 9544 + 1 + 10 + 0 + 0 + + + Bundle + 13717 + 1 + 12 + 0 + 0 + + + Bundle + 13711 + 1 + 50 + 0 + 0 + + + Bundle + 13749 + 1 + 1 + 0 + 0 + + + Bundle + 13748 + 1 + 1 + 0 + 0 + + + Bundle + 13747 + 1 + 1 + 0 + 0 + + + Bundle + 14901 + 1 + 1 + 0 + 0 + + + Bundle + 14902 + 1 + 1 + 0 + 0 + + + Bundle + 14899 + 1 + 1 + 0 + 0 + + + Bundle + 14900 + 1 + 1 + 0 + 0 + + + Bundle + 14897 + 1 + 1 + 0 + 0 + + + Bundle + 14898 + 1 + 1 + 0 + 0 + + + Bundle + 16240 + 0 + 1 + 0 + 0 + + + Bundle + 16241 + 0 + 1 + 0 + 0 + + + Bundle + 16245 + 0 + 1 + 0 + 0 + + + Bundle + 16246 + 0 + 1 + 0 + 0 + + + Bundle + 16243 + 0 + 1 + 0 + 0 + + + Bundle + 16244 + 0 + 1 + 0 + 0 + + + Bundle + 16237 + 0 + 1 + 0 + 0 + + + Bundle + 16236 + 0 + 1 + 0 + 0 + + + Bundle + 16238 + 0 + 1 + 0 + 0 + + + Bundle + 16239 + 0 + 1 + 0 + 0 + + + Bundle + 16242 + 0 + 1 + 0 + 0 + + false + false + 10 + 1 + + 0 + 0 +

+ + + + + + + 3 + 0.2 + + 425 + 436 + 462 + 514 + 552 + 575 + 576 + true + 2013-01-01T00:00:00 + 2030-12-31T00:00:00 + + + 157 + 0.27 + + 13699 + false + 2018-12-12T00:00:00 + 2019-01-10T00:00:00 + + + 166 + 0.36 + + 13625 + false + 2020-02-05T00:00:00 + 2020-02-12T23:59:59 + + + 167 + 0.2 + + + 17982 + 17983 + 17984 + 18003 + 18004 + 18006 + 18007 + 18008 + 18009 + 18048 + 18061 + 18062 + 18078 + 18079 + 18104 + 18108 + 18115 + 18119 + 18121 + 18122 + 18237 + 18239 + 18270 + 18279 + 18280 + 18281 + 18287 + 18293 + 18294 + 18348 + 18401 + 18402 + 18429 + 18434 + 18435 + 18436 + 18437 + 18439 + 18450 + 18452 + 18470 + 18475 + 18481 + 18484 + 18485 + 18486 + 18487 + 18488 + 18528 + 18529 + 18539 + 18540 + 18547 + 18561 + 18563 + 18566 + 18573 + 18574 + 18575 + 18576 + 18577 + 18578 + 18579 + 18580 + 18581 + 18587 + 18599 + 18600 + 18610 + 18615 + 18647 + 18648 + 18649 + 18658 + 18659 + 18660 + 18662 + 18663 + 18664 + 18665 + 18723 + 18740 + 18742 + 18745 + 18753 + 18757 + 18759 + 18760 + 18761 + 18762 + 18804 + 18838 + 18847 + 18860 + 18885 + 18907 + 18909 + 18910 + 18911 + 18922 + 18923 + 18924 + 18927 + 18945 + 18966 + 18967 + 18985 + 19012 + 19034 + 19035 + 19036 + 19037 + 19038 + 19042 + 19043 + 19067 + 19068 + 19069 + 19070 + 19071 + 19097 + 19172 + 19212 + 19213 + 20351 + 20454 + 20481 + 20665 + 20693 + 20790 + 20791 + 20886 + 20894 + false + 2020-02-19T04:33:55.04 + 2035-02-26T04:33:55 + + + 168 + 0.3 + + + 17985 + 18049 + 18096 + 18109 + 18116 + 18238 + 18271 + 18349 + 18365 + 18366 + 18471 + 18476 + 18562 + 18567 + 18588 + 18616 + 18650 + 18724 + 18741 + 18743 + 18754 + 18758 + 18861 + 19013 + 19039 + 19168 + 19169 + 20482 + 20804 + 20805 + 20806 + 20807 + 20808 + 20809 + 20810 + false + 2020-02-19T04:35:51.26 + 2035-02-26T04:35:51 + + + 169 + 0.25 + + + 18000 + 18001 + 18002 + 18105 + 18120 + false + 2020-02-28T03:56:01.147 + 2035-03-12T06:59:01 + + + 172 + 0.24 + + + 18005 + false + 2020-03-11T01:38:45.567 + 2035-02-26T04:33:55 + + + 174 + 0.4 + + + 13698 + 18240 + 18548 + 18746 + false + 2020-04-10T22:35:34.26 + 2035-04-01T22:35:34 + + + 177 + 0.1 + + 571 + false + 2020-05-13T00:00:00 + 2020-05-20T23:59:59 + + + 179 + 0.15 + + + 18117 + false + 2020-05-18T20:28:36.75 + 2035-07-11T06:59:36 + + + 188 + 0.2 + + + 16623 + false + 2020-07-27T19:50:19.613 + 2020-08-06T06:59:19.613 + + + 192 + 0.2 + + + 13403 + false + 2020-08-18T18:07:18.037 + 2020-08-27T06:59:18.037 + + + 195 + 0.2 + + 11862 + false + 2023-04-21T00:00:00 + 2023-05-04T18:59:00 + + + 209 + 0.95 + + 425 + 435 + 436 + 514 + 552 + 575 + 576 + false + 2022-11-24T08:00:00 + 2023-07-01T07:00:00 + + + 259 + 0.14 + + 425 + 436 + 514 + 575 + 576 + false + 2022-11-27T08:00:00 + 2022-11-28T07:59:00 + + + 263 + 0.2 + + 18657 + false + 2021-12-23T08:00:00 + 2021-12-30T07:59:00 + + + 1274 + 0.2 + + 10995 + 11862 + 12437 + 12487 + 13026 + 13205 + 13403 + 13625 + 15871 + 16623 + 19118 + 19119 + + 2022-08-29T07:00:00 + 2022-09-08T18:59:00 + + + 1281 + 0.2 + + 19119 + + 2023-03-23T07:00:00 + 2023-04-06T18:59:00 + + + 1285 + 0.25 + RS_DATA/CollectDWIcons.unity3d/IcoCollectDWMapJungle + + 13205 + false + 2023-05-25T19:00:00 + 2023-06-01T11:59:00 + + + 8661 + 2101661 + + + 9429 + 232299 + + + 8714 + 154559 + + + 9425 + 107808 + + + 8721 + 93571 + + + 8715 + 84448 + + + 8381 + 68496 + + + 8204 + 43265 + + + 8698 + 30340 + + + 9430 + 20145 + + + 10824 + 12007 + + + 11796 + 1312 + + + 12130 + 1172 + + + 12182 + 1083 + + + 12216 + 1074 + + + 11775 + 1063 + + + 8773 + 553 + + + 10919 + 367 + + + 11862 + 244 + + + 11795 + 243 + + + 8774 + 199 + + + 11707 + 171 + + + 11679 + 139 + + + 12183 + 139 + + + 11678 + 82 + + + 10942 + 80 + + + 10991 + 64 + + + 10770 + 62 + + + 10768 + 59 + + + 11656 + 59 + + + 11708 + 59 + + + 11741 + 57 + + + 11774 + 54 + + + 10769 + 52 + + + 10918 + 44 + + + 10941 + 37 + + + 12129 + 36 + + + 10990 + 23 + + + 11657 + 19 + + + 11740 + 18 + + \ No newline at end of file diff --git a/src/Resources/tutorialmission.xml b/src/Resources/tutorialmission.xml deleted file mode 100644 index 9dae3aa..0000000 --- a/src/Resources/tutorialmission.xml +++ /dev/null @@ -1,479 +0,0 @@ - - - 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 diff --git a/src/Schema/Mission.cs b/src/Schema/Mission.cs index 66c5969..43ecb21 100644 --- a/src/Schema/Mission.cs +++ b/src/Schema/Mission.cs @@ -3,6 +3,7 @@ namespace sodoff.Schema; [XmlRoot(ElementName = "Mission", Namespace = "")] +[Serializable] // FIXME: Remove serializable once we have a different way of deep copying than BinaryFormatter public class Mission { [XmlElement(ElementName = "I")] public int MissionID; diff --git a/src/Schema/ServerMissionArray.cs b/src/Schema/ServerMissionArray.cs new file mode 100644 index 0000000..8f24451 --- /dev/null +++ b/src/Schema/ServerMissionArray.cs @@ -0,0 +1,12 @@ +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 = "Missions", Namespace = "")] +public class ServerMissionArray { + + [XmlElement(ElementName = "Mission", IsNullable = true)] + public Mission[] MissionDataArray; +} diff --git a/src/Schema/SetTaskStateResult.cs b/src/Schema/SetTaskStateResult.cs index df7e993..1553c89 100644 --- a/src/Schema/SetTaskStateResult.cs +++ b/src/Schema/SetTaskStateResult.cs @@ -17,7 +17,6 @@ public class SetTaskStateResult { [XmlElement(ElementName = "R")] public MissionCompletedResult[] MissionsCompleted; - // TODO: Not needed now (requires many additional schemas) - // [XmlElement(ElementName = "C")] - // public CommonInventoryResponse CommonInvRes; + [XmlElement(ElementName = "C")] + public CommonInventoryResponse CommonInvRes; } diff --git a/src/Services/MissionService.cs b/src/Services/MissionService.cs new file mode 100644 index 0000000..d212440 --- /dev/null +++ b/src/Services/MissionService.cs @@ -0,0 +1,104 @@ +using sodoff.Model; +using sodoff.Schema; +using System.Runtime.Serialization.Formatters.Binary; +using System.Threading.Tasks; + +namespace sodoff.Services; +public class MissionService { + + private readonly DBContext ctx; + private MissionStoreSingleton missionStore; + + public MissionService(DBContext ctx, MissionStoreSingleton missionStore) { + this.ctx = ctx; + this.missionStore = missionStore; + } + + public Mission GetMissionWithProgress(int missionId, string userId) { + Mission mission = missionStore.GetMission(missionId); + UpdateMissionRecursive(mission, userId); + return mission; + } + + public List UpdateTaskProgress(int missionId, int taskId, string userId, bool completed, string xmlPayload) { + SetTaskProgressDB(missionId, taskId, userId, completed, xmlPayload); + + // NOTE: This won't work if a mission can be completed by completing an inner mission + // Let's have a mission with ID = 1 + // The mission has an inner inner mission with ID = 2 + // All tasks in mission 1 are completed + // When the last task of mission 2 is completed the client sends SetTaskState with missionId = 2 + // Mission 2 gets completed which should also complete mission 1 because all tasks and missions are now completed + // But there's no way of knowing that with the current data structures + // At the moment, I don't know if a mission can be completed this way + // I do know that outer missions have inner missions as RuleItems, and if the RuleItem is supposed to be "complete" and it isn't, the quest breaks when the player quits the game and loads the quest again + List result = new(); + if (completed) { + Mission mission = GetMissionWithProgress(missionId, userId); + if (AllMissionsCompleted(mission) && AllTasksCompleted(mission)) { + result.Add(new MissionCompletedResult { + MissionID = missionId, + Rewards = mission.Rewards.ToArray() + }); + } + } + return result; + } + + private void UpdateMissionRecursive(Mission mission, string userId) { + List taskStatuses = ctx.TaskStatuses.Where(e => e.VikingId == userId && e.MissionId == mission.MissionID).ToList(); + + // Update mission rules and tasks + foreach (var task in taskStatuses) { + // Rules have two types - task and mission + RuleItem? rule = mission.MissionRule.Criteria.RuleItems.Find(x => x.ID == task.Id && x.Type == RuleItemType.Task); + if (rule != null && task.Completed) rule.Complete = 1; + + Schema.Task? t = mission.Tasks.Find(x => x.TaskID == task.Id); + if (t != null) { + if (task.Completed) t.Completed = 1; + t.Payload = task.Payload; + } + } + + if (taskStatuses.Count == mission.Tasks.Count && AllMissionsCompleted(mission)) + mission.Completed = 1; + + // Update all inner missions + // Update rules with missions + foreach (var innerMission in mission.Missions) { + UpdateMissionRecursive(innerMission, userId); + if (innerMission.Completed == 1) { + RuleItem? rule = mission.MissionRule.Criteria.RuleItems.Find(x => x.ID == innerMission.MissionID && x.Type == RuleItemType.Mission); + if (rule != null) rule.Complete = 1; + } + } + } + + 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); + + if (status is null) { + status = new Model.TaskStatus { + Id = taskId, + MissionId = missionId, + VikingId = userId, + Payload = xmlPayload, + Completed = completed + }; + ctx.TaskStatuses.Add(status); + } else { + status.Payload = xmlPayload; + status.Completed = completed; + } + ctx.SaveChanges(); + } + + private bool AllMissionsCompleted(Mission mission) { + return mission.Missions.FindAll(x => x.Completed == 1).Count == mission.Missions.Count; + } + + private bool AllTasksCompleted(Mission mission) { + return mission.Tasks.FindAll(x => x.Completed == 1).Count == mission.Tasks.Count; + } +} diff --git a/src/Services/MissionStoreSingleton.cs b/src/Services/MissionStoreSingleton.cs new file mode 100644 index 0000000..527ab7f --- /dev/null +++ b/src/Services/MissionStoreSingleton.cs @@ -0,0 +1,44 @@ +using sodoff.Schema; +using sodoff.Util; +using System.Runtime.Serialization.Formatters.Binary; + +namespace sodoff.Services; +public class MissionStoreSingleton { + + private Dictionary missions = new(); + + public MissionStoreSingleton() { + ServerMissionArray missionArray = XmlUtil.DeserializeXml(XmlUtil.ReadResourceXmlString("missions")); + foreach (var mission in missionArray.MissionDataArray) { + SetUpRecursive(mission); + } + } + + public Mission GetMission(int missionID) { + return DeepCopy(missions[missionID]); + } + + private void SetUpRecursive(Mission mission) { + missions.Add(mission.MissionID, mission); + foreach (var innerMission in mission.Missions) { + SetUpRecursive(innerMission); + } + } + + // FIXME: Don't use BinaryFormatter for deep copying + // FIXME: Remove flag from the project file once we have a different way of deep copying + public static Mission DeepCopy(Mission original) { + using (MemoryStream memoryStream = new MemoryStream()) { + BinaryFormatter formatter = new BinaryFormatter(); + + formatter.Serialize(memoryStream, original); + + memoryStream.Position = 0; + + Mission clone = (Mission)formatter.Deserialize(memoryStream); + + return clone; + } + } + +} diff --git a/src/sodoff.csproj b/src/sodoff.csproj index 97e4dd4..087dcf4 100644 --- a/src/sodoff.csproj +++ b/src/sodoff.csproj @@ -4,6 +4,7 @@ net6.0 enable enable + true @@ -13,9 +14,9 @@ + - @@ -41,7 +42,7 @@ PreserveNewest - + PreserveNewest